:root {
  --bg: #030712;
  --bg-2: #070b16;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);

  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;

  --mint: #a1e2b8;
  --aqua: #01c5c1;

  --green: #a1e2b8;
  --green-soft: #d8f6e2;
  --cyan: #01c5c1;
  --blue: #5ee7e3;
  --purple: #9ee8e1;

  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.2), #030712 35%),
    radial-gradient(circle at 18% 0%, rgba(161, 226, 184, 0.18), transparent 34%),
    radial-gradient(circle at 82% 6%, rgba(1, 197, 193, 0.18), transparent 32%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.page-blur {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.blur-one {
  top: 140px;
  left: -120px;
  background: rgba(161, 226, 184, 0.28);
}

.blur-two {
  top: 180px;
  right: -130px;
  background: rgba(1, 197, 193, 0.26);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-words {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.brand-tagline {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 35px rgba(1, 197, 193, 0.25);
}

.brand-mark span {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #05110b, transparent),
    rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

.brand-text { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-menu a {
  transition: 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-btn {
  padding: 11px 18px;
  border-radius: 999px;
  color: #03120b;
  font-size: 14px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 34px rgba(1, 197, 193, 0.22);
}

/* Mobile Menu Button */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 20px;
  right: 20px;
  z-index: 60;
  padding: 18px;
  border-radius: 24px;
  background: rgba(3, 7, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
}

.mobile-menu.active {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  transition: 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-btn {
  margin-top: 8px;
  color: #03120b !important;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

/* Hero */

.hero-section {
  position: relative;
  padding: 86px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(540px, 0.92fr) minmax(520px, 1fr);
  align-items: center;
  gap: 72px;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(161, 226, 184, 0.1);
  border: 1px solid rgba(161, 226, 184, 0.28);
  font-size: 14px;
  font-weight: 760;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(1, 197, 193, 0.16);
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  font-weight: 900;
}

.hero-copy h1 span {
  display: inline;
  background: linear-gradient(135deg, #a1e2b8, #01c5c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 18px;
  color: var(--green-soft);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-description {
  max-width: 620px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  transition: 0.22s ease;
}

.btn-primary {
  color: #04120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 20px 48px rgba(1, 197, 193, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(1, 197, 193, 0.34);
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

.trust-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.trust-row div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-row strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.6px;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

/* Dashboard */

.hero-visual {
  position: relative;
}

.dashboard-shell {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)),
    rgba(7, 11, 22, 0.86);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, rgba(161, 226, 184, 0.22), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(1, 197, 193, 0.16), transparent 34%);
  pointer-events: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  height: 64px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.window-controls span:nth-child(1) {
  background: #fb7185;
}

.window-controls span:nth-child(2) {
  background: #facc15;
}

.window-controls span:nth-child(3) {
  background: #22c55e;
}

.dashboard-title {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 800;
}

.sync-pill {
  justify-self: end;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(161, 226, 184, 0.12);
  border: 1px solid rgba(161, 226, 184, 0.25);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.overview-card,
.chart-card,
.ai-card,
.small-metric {
  background: rgba(3, 7, 18, 0.46);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(20px);
}

.main-score-card {
  min-height: 215px;
  padding: 22px;
  border-radius: 26px;
}

.card-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.score-row {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.score-row h2 {
  font-size: 58px;
  line-height: 1;
  letter-spacing: -2.4px;
}

.score-row span {
  display: block;
  margin-top: 7px;
  color: var(--green-soft);
  font-size: 14px;
  font-weight: 700;
}

.score-ring {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    conic-gradient(var(--cyan) 0 86%, rgba(255,255,255,0.12) 86% 100%);
  position: relative;
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  background: #07111f;
}

.score-ring div {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.score-progress {
  margin-top: 24px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.score-progress span {
  display: block;
  width: 86%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: inherit;
}

.metric-stack {
  display: grid;
  gap: 16px;
}

.small-metric {
  padding: 20px;
  border-radius: 24px;
}

.small-metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.small-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 25px;
  letter-spacing: -0.8px;
}

.small-metric small {
  display: block;
  margin-top: 5px;
  color: var(--green-soft);
  font-weight: 700;
}

.chart-card {
  grid-column: span 2;
  padding: 22px;
  border-radius: 28px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.chart-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.chart-header strong {
  display: block;
  margin-top: 3px;
}

.chart-header small {
  color: var(--green-soft);
  font-weight: 900;
}

.bar-chart {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 25px;
}

.bar-chart span {
  flex: 1;
  height: 0;
  min-height: 0;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  opacity: 0.9;
}

/* ── Runner track ── */
.runner-track {
  grid-column: span 2;
  position: relative;
  height: 40px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.runner-wrap {
  position: absolute;
  bottom: 2px;
  left: -28px;
  animation: runnerAcross 5s linear infinite;
}

.runner-girl { animation-delay: -2.6s; }

.run-svg {
  display: block;
  width: 18px;
  height: 28px;
}

/* Left-to-right travel */
@keyframes runnerAcross {
  0%   { left: -28px; }
  100% { left: calc(100% + 28px); }
}

/* Man limbs */
.ra-l { transform-origin: 12px 12px; animation: rArmL 0.42s ease-in-out infinite; }
.ra-r { transform-origin: 12px 12px; animation: rArmR 0.42s ease-in-out infinite; }
.rl-l { transform-origin: 12px 22px; animation: rLegL 0.42s ease-in-out infinite; }
.rl-r { transform-origin: 12px 22px; animation: rLegR 0.42s ease-in-out infinite; }

/* Girl limbs (slightly faster) */
.ga-l { transform-origin: 12px 11px; animation: rArmL 0.36s ease-in-out infinite; }
.ga-r { transform-origin: 12px 11px; animation: rArmR 0.36s ease-in-out infinite; }
.gl-l { transform-origin: 12px 20px; animation: rLegL 0.36s ease-in-out infinite; }
.gl-r { transform-origin: 12px 20px; animation: rLegR 0.36s ease-in-out infinite; }

@keyframes rArmL { 0%,100%{transform:rotate(-28deg)} 50%{transform:rotate(22deg)} }
@keyframes rArmR { 0%,100%{transform:rotate(22deg)}  50%{transform:rotate(-28deg)} }
@keyframes rLegL { 0%,100%{transform:rotate(-38deg)} 50%{transform:rotate(38deg)} }
@keyframes rLegR { 0%,100%{transform:rotate(38deg)}  50%{transform:rotate(-38deg)} }

.ai-card {
  grid-column: span 2;
  padding: 20px;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ai-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.ai-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.ai-card p {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

/* Dashboard animation keyframes */
@keyframes dashFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(1,197,193,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(1,197,193,0); }
}

@keyframes syncBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes scoreGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%       { text-shadow: 0 0 24px rgba(1,197,193,0.45); }
}

/* Score ring pulse after it fills */
.score-ring.animated {
  animation: ringPulse 2.5s ease-in-out infinite;
}

/* Score number glow once loaded */
.score-row h2.animated {
  animation: scoreGlow 3s ease-in-out infinite;
}

/* Sync pill blink */
.sync-pill {
  animation: syncBlink 2s ease-in-out infinite;
}

/* Floating cards */
.floating-card {
  position: absolute;
  padding: 15px 18px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.76);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  animation: dashFloat 4s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.floating-card strong {
  font-size: 15px;
}

.card-one {
  left: -42px;
  top: 82px;
}

.card-two {
  right: -35px;
  bottom: 115px;
  animation-delay: -2s;
}

/* Partner strip */

.partner-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.partner-row {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.partner-row span {
  color: #94a3b8;
  font-weight: 850;
  font-size: 14px;
}

/* Sections */

.section,
.insights-section,
.technology-section,
.security-section,
.waitlist-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--green-soft);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 14px;
}

.section-heading h2,
.insights-copy h2,
.security-card h2,
.waitlist-box h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -2px;
}

.section-heading p,
.insights-copy p,
.security-card p,
.waitlist-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 265px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  transition: 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(161, 226, 184, 0.32);
  background:
    linear-gradient(180deg, rgba(161, 226, 184, 0.11), rgba(255,255,255,0.045));
}

.featured-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(161, 226, 184, 0.23), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 24px;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Insights */

.insights-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.check-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.check-list div {
  display: flex;
  gap: 12px;
  color: #cbd5e1;
  line-height: 1.7;
}

.check-list span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
}

.insights-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 0%, rgba(1,197,193,0.16), transparent 40%),
    rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.insights-panel-header {
  margin-bottom: 24px;
}

.insights-panel-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.insights-panel-header strong {
  font-size: 24px;
  letter-spacing: -0.7px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(3,7,18,0.48);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.signal-item strong {
  display: block;
  margin-bottom: 4px;
}

.signal-item span {
  color: var(--muted);
  font-size: 14px;
}

.signal-item small {
  color: var(--green-soft);
  font-weight: 950;
}

/* Architecture */

.technology-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.architecture-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.architecture-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
}

.architecture-icon {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 35px rgba(1, 197, 193, 0.25);
  padding: 6px;
  object-fit: contain;
}

.architecture-card h3 {
  margin-top: 0;
  font-size: 21px;
  letter-spacing: -0.4px;
}

.architecture-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.architecture-arrow {
  align-self: center;
  color: var(--muted-2);
  font-size: 24px;
}

/* Security */

.security-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.security-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(161,226,184,0.20), transparent 42%),
    rgba(255,255,255,0.055);
  border: 1px solid var(--border);
}

.security-list {
  display: grid;
  gap: 16px;
}

.security-list div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.security-icon {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 35px rgba(1, 197, 193, 0.18);
  padding: 6px;
  object-fit: contain;
}

.security-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.security-list span {
  color: var(--muted);
  line-height: 1.7;
}

/* Waitlist */

.waitlist-box {
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(161,226,184,0.24), transparent 35%),
    radial-gradient(circle at 100% 30%, rgba(1,197,193,0.20), transparent 38%),
    rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 40px;
  align-items: center;
}

.waitlist-form {
  padding: 10px;
  border-radius: 24px;
  background: rgba(3, 7, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  padding-left: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: 0;
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input:focus {
  border-color: rgba(1, 197, 193, 0.65);
  box-shadow: 0 0 0 4px rgba(1, 197, 193, 0.12);
}

.waitlist-form input::placeholder {
  color: var(--muted-2);
}

.waitlist-form button {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.waitlist-form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(1, 197, 193, 0.22);
}

.waitlist-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(3, 18, 11, 0.35);
  border-top-color: #03120b;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.waitlist-form button.loading .btn-label {
  opacity: 0.6;
}

.waitlist-form button.loading .btn-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  min-height: 22px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 750;
}

.form-message.success {
  color: var(--green-soft);
}

.form-message.error {
  color: #fb7185;
}

/* Footer */

/* Footer */

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(161,226,184,0.10), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(1,197,193,0.10), transparent 34%),
    rgba(0,0,0,0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr 0.8fr;
  gap: 42px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h4 {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.footer-info {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.footer-info span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 750;
}

.footer-info a {
  color: var(--green-soft);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.footer-info a:hover {
  color: var(--cyan);
}

.footer-address {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 330px;
}

.footer-socials {
  display: grid;
  gap: 10px;
}

.footer-socials a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.footer-socials a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: var(--muted-2);
  font-size: 13px;
}

/* ===================== SURVEY ===================== */

.survey-section {
  padding: 112px 0;
}

.survey-header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.survey-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.survey-header p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.survey-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(161,226,184,0.14), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(1,197,193,0.12), transparent 36%),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow);
}

/* Progress bar */
.survey-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.prog-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.prog-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.prog-step.active {
  color: var(--green-soft);
}

.prog-step.active span {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-color: transparent;
  color: #03120b;
}

.prog-line {
  flex: 1;
  height: 2px;
  margin: 0 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
}

/* Steps */
.survey-step { animation: fadeIn 0.3s ease; }
.survey-step.hidden { display: none; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.survey-step h3 {
  font-size: 26px;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}

.category-card {
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.category-card input { display: none; }

.category-card:has(input:checked) {
  border-color: rgba(1,197,193,0.6);
  background: rgba(1,197,193,0.08);
}

.cat-content {
  padding: 22px 18px;
  text-align: center;
}

.cat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.cat-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.cat-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Questions */
.q-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.q-group:last-of-type { border-bottom: none; }

.q-label {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--text);
}

.q-label em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.q-options-wrap {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.q-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  user-select: none;
}

.q-option:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  background: rgba(255,255,255,0.055);
}

.q-option input[type="radio"],
.q-option input[type="checkbox"] {
  display: none;
}

.q-option:has(input:checked) {
  border-color: rgba(1,197,193,0.65);
  background: rgba(1,197,193,0.1);
  color: var(--text);
}

.q-options-wrap .q-option { flex: 0 0 auto; }

/* Textarea */
.survey-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.survey-input::placeholder { color: var(--muted-2); }

.survey-input:focus {
  border-color: rgba(1,197,193,0.6);
  box-shadow: 0 0 0 4px rgba(1,197,193,0.1);
}

.country-picker {
  position: relative;
}

.q-group label.q-label {
  margin-bottom: 8px;
  display: block;
}

.country-picker-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.country-picker-btn:hover {
  border-color: rgba(1,197,193,0.4);
}

.country-picker-placeholder {
  color: var(--muted-2, rgba(255,255,255,0.35));
}

.country-picker-arrow {
  color: var(--muted-2, rgba(255,255,255,0.35));
  font-size: 13px;
  flex-shrink: 0;
}

.country-picker-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 100;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.country-picker-panel.open {
  display: block;
}

.country-search {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.country-search::placeholder { color: var(--muted-2, rgba(255,255,255,0.35)); }

.country-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.country-list li {
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.country-list li:hover {
  background: rgba(1,197,193,0.12);
  color: #01c5c1;
}

.country-group-label {
  padding: 6px 16px 4px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2, rgba(255,255,255,0.35)) !important;
  cursor: default !important;
  background: none !important;
}

.survey-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  line-height: 1.7;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.survey-textarea::placeholder { color: var(--muted-2); }

.survey-textarea:focus {
  border-color: rgba(1,197,193,0.6);
  box-shadow: 0 0 0 4px rgba(1,197,193,0.1);
}

/* Navigation buttons */
.survey-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.survey-nav-right { justify-content: flex-end; }

.survey-btn {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 950;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.survey-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(1,197,193,0.24);
}

.survey-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.survey-btn.loading .btn-label { opacity: 0.6; }
.survey-btn.loading .btn-spinner { display: block; }

.survey-btn-outline {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.survey-btn-outline:hover {
  background: rgba(255,255,255,0.09);
  color: var(--text);
}

/* Thank you screen */
.thankyou-content {
  text-align: center;
  padding: 32px 0;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #03120b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 40px rgba(1,197,193,0.28);
}

.thankyou-content h3 {
  font-size: 28px;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.thankyou-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* Survey responsive */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .survey-shell { padding: 28px 20px; }
  .survey-progress { gap: 0; }
  .prog-step { font-size: 11px; }
  .prog-step span { width: 24px; height: 24px; font-size: 11px; }
  .prog-line { margin: 0 8px; }
  .q-options-wrap { flex-direction: column; }
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-grid,
  .insights-grid,
  .security-grid,
  .waitlist-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-copy h1 {
    max-width: 820px;
  }

  .dashboard-shell {
    max-width: 720px;
    margin-left: 0;
  }

  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .architecture-arrow {
    display: none;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-menu,
  .login-link,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .chart-card,
  .ai-card {
    grid-column: auto;
  }

  .partner-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    height: 74px;
  }

  .mobile-menu {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.04;
    letter-spacing: -1.8px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    grid-template-columns: 1fr;
    gap: 8px;
    height: auto;
    padding: 18px;
  }

  .window-controls,
  .sync-pill {
    display: none;
  }

  .dashboard-title {
    text-align: center;
  }

  .score-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .waitlist-box {
    padding: 32px 20px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form button {
    min-height: 52px;
  }

  .footer-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

.footer-brand,
.footer-address {
  max-width: 100%;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
}

.footer-socials a:hover {
  transform: none;
}
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(10, 14, 26, 0.92);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
