@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg: #050606;
  --surface: #0e1011;
  --surface-high: #15181a;
  --surface-highest: #1f2326;
  --line: rgba(255, 255, 255, 0.06);
  --line-active: rgba(64, 214, 176, 0.25);
  --text: #eef2ef;
  --muted: #a6b0ac;
  --dim: #6d7572;
  --warm: #cbd2c0;
  --accent: #40d6b0;
  --accent-rgb: 64, 214, 176;
  --accent-glow: rgba(64, 214, 176, 0.12);
  --radius: 12px;
  --radius-lg: 24px;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text);
}

body {
  margin: 0;
  background: 
    radial-gradient(circle at 80% 10%, rgba(64, 214, 176, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 20% 60%, rgba(203, 210, 192, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, #070809 0%, var(--bg) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 6, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 2.5px;
  transition: transform 0.25s ease;
}

.back-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--muted);
}

.back-link:hover svg {
  transform: translateX(-3px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark::after {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.5s infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  color: var(--text) !important;
  font-weight: 700 !important;
}

.site-nav-button:hover {
  background: rgba(64, 214, 176, 0.1);
  border-color: var(--accent);
}

/* Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 8px rgba(64, 214, 176, 0.6); }
  100% { transform: scale(0.95); opacity: 0.4; }
}

@keyframes signal-sweep {
  0% { transform: scale(0.95); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Main Layout */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(64, 214, 176, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(64, 214, 176, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.5s infinite;
}

h1 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, #fff 40%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  color: #050606;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(64, 214, 176, 0.2);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(64, 214, 176, 0.35);
  background: #5efccf;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--muted);
  transform: translateY(-2px);
}

/* Interactive Device Scene */
.product-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product-scene::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(64, 214, 176, 0.06) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.phone-shell {
  width: min(100%, 360px);
  height: 680px;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  background: linear-gradient(155deg, #15181a 0%, #060707 100%);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.7),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 3px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Phone Status Bar */
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--dim);
  font-weight: 600;
}

.phone-status .network-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(64, 214, 176, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(64, 214, 176, 0.15);
  color: var(--accent);
}

.phone-status .status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s infinite;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

/* Simulator Screen Modules */
.phone-screen-content {
  flex: 1;
  padding: 1.1rem;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.phone-screen-content.active {
  display: flex;
  opacity: 1;
}

.screen-heading {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.screen-heading span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.screen-heading h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.1rem;
}

/* Phone Tabs Navigation */
.phone-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(14, 16, 17, 0.95);
  padding: 0.55rem 0.2rem 0.7rem;
}

.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--dim);
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.phone-tab svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.2px;
  fill: none;
  transition: transform 0.2s ease;
}

.phone-tab:hover {
  color: var(--muted);
}

.phone-tab.active {
  color: var(--accent);
}

.phone-tab.active svg {
  transform: translateY(-1px);
}

/* SCREEN: Vault */
.search-container {
  position: relative;
  margin-bottom: 0.85rem;
}

.search-container input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: all 0.2s ease;
}

.search-container input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.search-container svg {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--dim);
}

.vault-category-pill {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.7rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
}

.vault-category-pill::-webkit-scrollbar {
  display: none;
}

.category-pill {
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.category-pill.active {
  background: rgba(64, 214, 176, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.vault-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vault-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--surface-high);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vault-item:hover {
  background: var(--surface-highest);
  border-color: rgba(255, 255, 255, 0.12);
}

.vault-item-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.vault-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.vault-item-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
}

.vault-item-sub span {
  color: var(--warm);
}

.vault-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(64, 214, 176, 0.08);
  border: 1px solid rgba(64, 214, 176, 0.15);
  color: var(--accent);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.vault-badge.encrypted {
  background: rgba(203, 210, 192, 0.06);
  border-color: rgba(203, 210, 192, 0.15);
  color: var(--warm);
}

/* SCREEN: Notes */
.notes-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.note-card {
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--surface-high);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.note-card:hover {
  background: var(--surface-highest);
  border-color: rgba(255, 255, 255, 0.1);
}

.note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.note-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.note-pin {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--accent);
}

.note-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
}

.note-body {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.sim-segment,
.sim-pill-row,
.sim-action-row {
  display: flex;
  gap: 0.45rem;
}

.sim-segment {
  margin-bottom: 0.75rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-high);
}

.sim-segment span,
.sim-pill-row span,
.sim-action-row span,
.sim-card-button,
.sim-icon-action {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.sim-segment span {
  flex: 1;
  padding: 0.35rem 0.45rem;
  text-align: center;
}

.sim-segment .active,
.sim-pill-row .active {
  background: rgba(64, 214, 176, 0.12);
  border-color: rgba(64, 214, 176, 0.35);
  color: var(--accent);
}

.sim-info-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-high);
  color: var(--muted);
  font-size: 0.72rem;
}

.sim-info-strip b {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.sim-card-title {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.sim-card-body {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  margin: 0.25rem 0 0;
}

.sim-card-button {
  display: inline-flex;
  margin-top: 0.6rem;
  padding: 0.3rem 0.5rem;
  color: var(--accent);
  border-color: rgba(64, 214, 176, 0.25);
}

.sim-pill-row {
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.sim-pill-row span {
  padding: 0.25rem 0.45rem;
}

.sim-action-row {
  margin-top: 0.6rem;
}

.sim-action-row span {
  flex: 1;
  padding: 0.3rem 0.45rem;
  text-align: center;
}

.sim-icon-action {
  padding: 0.3rem 0.6rem;
  background: rgba(64, 214, 176, 0.1);
  border-color: rgba(64, 214, 176, 0.25);
  color: var(--accent);
  cursor: pointer;
}

.sim-mono {
  font-family: var(--font-mono);
  color: #fff;
}

.sim-meter {
  height: 5px;
  margin-top: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.sim-meter span {
  display: block;
  height: 100%;
  background: var(--accent);
}

/* SCREEN: Maps */
.map-widget-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.map-viewport {
  height: 180px;
  border: 1px solid var(--line);
  background: #090a0a;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.map-svg-mockup {
  width: 100%;
  height: 100%;
  display: block;
}

.map-svg-mockup .road {
  stroke: #1f2525;
  stroke-width: 3.5px;
  fill: none;
  transition: opacity 0.3s ease;
}

.map-svg-mockup .building {
  fill: #151919;
  stroke: #252e2e;
  stroke-width: 0.5px;
  transition: opacity 0.3s ease;
}

.map-svg-mockup .place {
  fill: var(--muted);
  transition: opacity 0.3s ease;
}

.map-svg-mockup .route-line {
  stroke: var(--accent);
  stroke-width: 2.5px;
  stroke-dasharray: 4;
  fill: none;
}

.map-user-location {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(64, 214, 176, 0.8);
}

.map-user-location::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(64, 214, 176, 0.4);
  border-radius: 50%;
  animation: signal-sweep 2s infinite linear;
}

.coordinates-card {
  padding: 0.6rem 0.75rem;
  background: var(--surface-high);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coord-meta {
  display: flex;
  flex-direction: column;
}

.coord-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
}

.coord-label {
  font-size: 0.6rem;
  color: var(--dim);
  text-transform: uppercase;
  font-weight: 700;
}

/* SCREEN: Utilities */
.utilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.utility-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 72px;
  background: var(--surface-high);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.utility-button:hover {
  background: var(--surface-highest);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.utility-button svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--accent);
  stroke-width: 2px;
  fill: none;
}

.utility-button span {
  font-size: 0.72rem;
  font-weight: 700;
}

/* Compass Interface Box */
.compass-section {
  grid-column: span 2;
  background: var(--surface-high);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}

.compass-container {
  position: relative;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-rose {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.1s linear;
}

.compass-label-cardinal {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--dim);
}

.compass-label-cardinal.n { top: 4px; left: 50%; transform: translateX(-50%); color: var(--accent); }
.compass-label-cardinal.e { right: 5px; top: 50%; transform: translateY(-50%); }
.compass-label-cardinal.s { bottom: 4px; left: 50%; transform: translateX(-50%); }
.compass-label-cardinal.w { left: 5px; top: 50%; transform: translateY(-50%); }

.compass-needle {
  position: absolute;
  width: 4px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent) 50%, var(--muted) 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(0deg);
  transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.compass-data {
  text-align: center;
  font-family: var(--font-mono);
}

.compass-deg {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.compass-mode {
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Flashlight simulator overlay */
.flashlight-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 1.5rem;
  text-align: center;
}

.flashlight-overlay svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: currentColor;
  stroke-width: 1.5px;
  fill: none;
  margin-bottom: 0.5rem;
}

.flashlight-overlay span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.flashlight-close {
  margin-top: 2rem;
  padding: 0.4rem 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

/* SOS simulator overlay */
.sos-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sos-flash-indicator {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(64, 214, 176, 0.05);
  border: 2px solid rgba(64, 214, 176, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.15s ease;
}

.sos-flash-indicator.active {
  background: var(--accent);
  box-shadow: 0 0 50px var(--accent);
  border-color: #fff;
}

.sos-overlay span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sos-text-display {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 900;
  margin: 0.5rem 0;
}

.sos-close {
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

/* SCREEN: Settings */
.settings-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.settings-box {
  background: var(--surface-high);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
}

.settings-label {
  font-size: 0.62rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.settings-row-interactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.settings-row-interactive span {
  font-size: 0.82rem;
  font-weight: 700;
}

.settings-dropdown {
  background: var(--surface-highest);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  outline: none;
}

.settings-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.settings-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--muted);
  cursor: pointer;
}

.settings-check-row input {
  accent-color: var(--accent);
  margin-top: 0.15rem;
  width: 0.8rem;
  height: 0.8rem;
}

.progress-container {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
}

.progress-bar-bg {
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.clear-data-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.55rem;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-data-btn:hover {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.2);
  color: #ff5e5e;
}

/* Features Grid */
.features-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 5vw, 4.5rem);
}

.section-heading .eyebrow {
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.2rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento-card {
  grid-column: span 6;
  border: 1px solid var(--line);
  background: rgba(14, 16, 17, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(64, 214, 176, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-active);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bento-card.wide {
  grid-column: span 8;
}

.bento-card.narrow {
  grid-column: span 4;
}

.bento-icon-box {
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(64, 214, 176, 0.05);
  border: 1px solid rgba(64, 214, 176, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  color: var(--accent);
}

.bento-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.bento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.75rem;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Privacy Posture Band */
.privacy-band-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.privacy-band {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(14, 16, 17, 0.8) 0%, rgba(6, 7, 7, 0.8) 100%);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.privacy-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 850;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.1rem;
}

.privacy-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1.8rem;
}

.privacy-shield-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.privacy-shield-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(64, 214, 176, 0.08);
  border: 1px solid rgba(64, 214, 176, 0.15);
  color: var(--accent);
  padding: 0.4rem 0.95rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-shield-badge svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  stroke-width: 2.2px;
  fill: none;
}

.privacy-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-card-item {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(5, 6, 6, 0.4);
  border-radius: var(--radius);
  display: flex;
  gap: 1.1rem;
  transition: border-color 0.3s ease;
}

.privacy-card-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.privacy-card-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.privacy-card-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.privacy-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.3rem;
}

.privacy-card-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Readiness Timeline Tracker */
.readiness-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.readiness-flow {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(14, 16, 17, 0.45);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.readiness-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.8rem;
  margin-bottom: 2.2rem;
}

.readiness-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.readiness-title-container h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.readiness-title-container p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tracker-score-box {
  background: var(--surface-high);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 1.1rem;
  text-align: right;
}

.tracker-score-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.tracker-score-label {
  font-size: 0.65rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.readiness-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}

.readiness-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line);
  z-index: 1;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.timeline-checkbox {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-checkbox svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--accent);
  stroke-width: 3px;
  fill: none;
  transform: scale(0.6);
  transition: transform 0.25s ease;
}

.timeline-step:hover .timeline-checkbox {
  border-color: var(--accent-rgb);
  background: rgba(64, 214, 176, 0.05);
}

.timeline-step.completed .timeline-checkbox {
  background: rgba(64, 214, 176, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.timeline-step.completed .timeline-checkbox svg {
  transform: scale(1);
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 750;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: color 0.25s ease;
}

.timeline-step.completed .timeline-content h4 {
  color: var(--accent);
  text-decoration: line-through;
  opacity: 0.75;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Site Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem clamp(1rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  background: #030404;
  font-size: 0.9rem;
  color: var(--dim);
}

.site-footer span {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-footer nav a {
  color: var(--dim);
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--text);
}

/* Privacy Policy Layout Specifics */
.policy-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 1rem;
}

.policy-page h1 {
  margin-bottom: 1.5rem;
}

.policy-page .hero-text {
  max-width: 100%;
  margin-bottom: 3.5rem;
}

.policy-section {
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(14, 16, 17, 0.45);
  backdrop-filter: blur(10px);
  margin-bottom: 1.8rem;
}

.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.policy-section p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.policy-section li {
  margin-bottom: 0.55rem;
}

.policy-section li:last-child {
  margin-bottom: 0;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
    padding-top: 2rem;
  }

  .eyebrow {
    align-self: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .bento-card {
    grid-column: span 6 !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.1rem 1.5rem;
  }

  .site-nav {
    display: none;
  }

  .bento-card {
    grid-column: span 12 !important;
    padding: 1.8rem;
  }

  .privacy-band {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .readiness-flow {
    padding: 1.8rem;
  }

  .readiness-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 1rem;
  }
}
