:root {
  --bg-0: #0b1220;
  --bg-1: #0f172a;
  --bg-2: #111827;
  --surface: rgba(17, 24, 39, 0.6);
  --surface-strong: rgba(17, 24, 39, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --soft: #6b7280;
  --primary: #2dd4bf;
  --primary-strong: #14b8a6;
  --accent-muted: rgba(45, 212, 191, 0.12);
  --accent: #f8cc6b;
  --danger: #ef4444;
  --ok: #22c55e;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background:
    radial-gradient(1200px at 70% 20%, rgba(45, 212, 191, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 58%, var(--bg-2) 100%);
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, rgba(11, 18, 32, 0.94), rgba(11, 18, 32, 0.65));
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff url('./app-logo.png') center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(17, 88, 120, 0.45);
}

.brand-title {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.brand-tag {
  font-size: 11px;
  color: #cde0ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 2px 8px;
}

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

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  min-width: 42px;
  height: 32px;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  border-color: rgba(45, 212, 191, 0.7);
  color: #d9fffa;
  transform: translateY(-1px);
}

.nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #f4f8ff;
}

.hero {
  padding: 78px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 209, 197, 0.45);
  background: rgba(79, 209, 197, 0.12);
  color: #c8fff8;
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(38px, 6.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 640px;
}

.lead-line {
  display: block;
}

.lead-line-secondary {
  opacity: 0.9;
}

.live-note {
  margin: -12px 0 18px;
  color: #d9f9f3;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  background: var(--accent-muted);
}

.availability-note {
  margin: -4px 0 16px;
  color: rgba(229, 231, 235, 0.78);
  font-size: 13px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: live-pulse 1.8s ease-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-action-option {
  display: grid;
  gap: 8px;
}

.hero-action-option .btn {
  min-width: 214px;
}

.hero-action-meta {
  margin: 0;
  padding-left: 0;
  color: rgba(229, 231, 235, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  min-height: 46px;
  padding: 0 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #022a34;
  background: linear-gradient(to bottom, #2dd4bf, #14b8a6);
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.25);
  cursor: pointer;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.btn-disabled {
  color: #deebff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: default;
  opacity: 0.9;
}

.btn-disabled:hover {
  transform: none;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  background: var(--accent-muted);
  color: #99f6e4;
  font-size: 13px;
  font-weight: 700;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pf {
  position: relative;
  width: 270px;
  background: linear-gradient(160deg, #2d3047 0%, #191c2d 100%);
  border-radius: 50px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 72px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Volume buttons (left side) */
.pf::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 90px;
  width: 4px;
  height: 28px;
  background: #222538;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 44px 0 #222538;
}

/* Power button (right side) */
.pf::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 110px;
  width: 4px;
  height: 56px;
  background: #222538;
  border-radius: 0 3px 3px 0;
}

.pf-screen {
  background: #071426;
  border-radius: 44px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ps-statusbar {
  height: 52px;
  padding: 14px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-shrink: 0;
}

.ps-time {
  font-size: 13px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: #eaf2ff;
}

.ps-island {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 98px;
  height: 28px;
  background: #000;
  border-radius: 20px;
}

.ps-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #eaf2ff;
}

.ps-appbar {
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ps-appbar-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #eaf2ff;
  letter-spacing: -0.02em;
}

.ps-appbar-sub {
  font-size: 11px;
  color: #9dd8d0;
  margin-top: 2px;
}

.ps-sort {
  margin-top: 4px;
  font-size: 10px;
  color: #9ab9da;
}

.best-chip {
  display: inline-flex;
  margin-top: 3px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.22);
  color: #86efac;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35), 0 0 14px rgba(34, 197, 94, 0.2);
}

.cheapest-row {
  border-color: rgba(34, 197, 94, 0.42);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.16), rgba(255, 255, 255, 0.05));
}

.ps-body {
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ps-body .station-row {
  padding: 8px 10px;
  gap: 8px;
}

.ps-body .station-price {
  font-size: 15px;
}

.ps-body .station-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.ps-map-preview {
  margin-top: 2px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(35, 90, 112, 0.3), rgba(36, 64, 52, 0.34)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 22px
    );
  position: relative;
  overflow: hidden;
}

.map-water {
  position: absolute;
  background: rgba(70, 190, 226, 0.5);
  filter: saturate(120%);
}

.map-water-east {
  right: -8px;
  top: -2px;
  width: 56px;
  height: 108px;
  border-radius: 28px 0 0 30px;
  transform: rotate(6deg);
}

.map-water-south {
  right: 18px;
  bottom: -20px;
  width: 92px;
  height: 36px;
  border-radius: 24px;
  transform: rotate(-8deg);
}

.map-road {
  position: absolute;
  background: rgba(123, 146, 177, 0.85);
  border-radius: 999px;
}

.road-main {
  left: 6px;
  top: 62px;
  width: 140px;
  height: 4px;
  transform: rotate(-16deg);
}

.road-cross {
  right: 20px;
  top: 34px;
  width: 88px;
  height: 3px;
  transform: rotate(-38deg);
}

.road-ring {
  left: 88px;
  top: 18px;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 3px solid rgba(123, 146, 177, 0.78);
}

.map-label {
  position: absolute;
  font-size: 9px;
  color: rgba(243, 248, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.label-city {
  left: 84px;
  top: 60px;
  font-size: 11px;
  font-weight: 800;
}

.label-north {
  left: 86px;
  top: 24px;
}

.label-east {
  right: 8px;
  top: 68px;
}

.map-marker {
  position: absolute;
  border-radius: 999px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
}

.marker-down {
  left: 18px;
  top: 20px;
  background: #22c55e;
  color: #072711;
}

.marker-same {
  right: 24px;
  top: 44px;
  background: #111827;
  color: #e5e7eb;
}

.marker-up {
  left: 46%;
  bottom: 16px;
  transform: translateX(-50%);
  background: #ef4444;
  color: #2b0505;
}

.ps-tabbar {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0 2px;
  flex-shrink: 0;
  margin-top: 10px;
}

.ps-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}

.ps-tab-active {
  color: #4fd1c5;
}

.ps-homebar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-homebar::after {
  content: '';
  width: 96px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}

.station-row {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.station-meta {
  font-size: 13px;
  color: #d3def2;
}

.station-price {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Sora', 'Segoe UI', sans-serif;
}

.badge-down {
  color: #0d2a1a;
  background: #86efac;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.badge-up {
  color: #4a0000;
  background: #fca5a5;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.badge-same {
  color: #0a1a3a;
  background: #93c5fd;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding: 44px 0;
}

.section-title {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.data-proof {
  margin-top: 16px;
  border-color: rgba(79, 209, 197, 0.25);
  background: linear-gradient(180deg, rgba(79, 209, 197, 0.11), rgba(255, 255, 255, 0.04));
}

.data-proof-note {
  margin-top: 10px;
  color: #d8ecff;
  font-size: 14px;
}

.data-proof-source {
  margin-top: 10px;
}

.data-proof-source a {
  color: #8ce7dc;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 231, 220, 0.24);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.data-proof-source a:hover {
  color: #c8fff8;
  border-color: rgba(200, 255, 248, 0.42);
}

.landing-preview-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 16px;
}

.landing-preview-card,
.landing-ranking-card,
.landing-cta-band,
.landing-insight-card {
  border-color: rgba(79, 209, 197, 0.14);
  background:
    linear-gradient(180deg, rgba(79, 209, 197, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(17, 24, 39, 0.72);
}

.landing-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.landing-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ce7dc;
  margin-bottom: 8px;
}

.landing-preview-title,
.landing-cta-title,
.landing-insights-title {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}

.landing-preview-title {
  font-size: 22px;
  line-height: 1.18;
}

.landing-live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 209, 197, 0.22);
  background: rgba(79, 209, 197, 0.12);
  color: #c8fff8;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.landing-preview-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.landing-preview-stats {
  display: grid;
  gap: 12px;
}

.landing-preview-stat,
.landing-insight-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.landing-preview-label,
.landing-insight-label {
  display: block;
  color: #9cc3d1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-preview-value,
.landing-insight-value {
  display: block;
  margin-top: 8px;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.12;
}

.landing-preview-subvalue,
.landing-insight-sub {
  display: block;
  margin-top: 8px;
  color: #cfe5ff;
  font-size: 13px;
}

.landing-preview-chart {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.landing-preview-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #eaf2ff;
  font-size: 13px;
  font-weight: 700;
}

.landing-preview-chart-tag {
  color: #95aac7;
  font-size: 12px;
}

.landing-preview-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 150px;
}

.landing-bar-item {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  height: 100%;
}

.landing-bar-value {
  color: rgba(229, 231, 235, 0.88);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.landing-bar-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.landing-bar-column {
  display: block;
  width: 100%;
  min-height: 20px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.92), rgba(45, 212, 191, 0.16));
  border: 1px solid rgba(45, 212, 191, 0.16);
}

.landing-bar-caption {
  color: #9cb6d6;
  font-size: 11px;
  font-weight: 800;
}

.landing-preview-empty,
.landing-ranking-empty {
  color: #c6cedc;
  font-size: 14px;
}

.landing-ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.landing-ranking-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
}

.landing-ranking-index {
  color: #84dccc;
  font-size: 13px;
  font-weight: 800;
}

.landing-ranking-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.landing-ranking-copy span {
  display: block;
  margin-top: 4px;
  color: #9caec7;
  font-size: 12px;
}

.landing-ranking-price {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.landing-insights-block {
  margin-top: 22px;
}

.landing-insights-title {
  font-size: 20px;
}

.landing-insights-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-cta-band {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.landing-cta-title {
  font-size: 24px;
}

.landing-cta-copy {
  margin: 10px 0 0;
  color: #c6cedc;
  line-height: 1.6;
  max-width: 640px;
}

.landing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-tight {
  padding-top: 8px;
  padding-bottom: 8px;
}

.landing-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-color: rgba(45, 212, 191, 0.2);
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(79, 209, 197, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(17, 24, 39, 0.76);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.28);
}

.landing-final-cta-copy {
  max-width: 620px;
}

.landing-final-cta-title {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.landing-final-cta-sub {
  margin: 12px 0 0;
  color: #dbe7f9;
  font-size: 17px;
  line-height: 1.6;
}

.landing-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.seo-link-button {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.seo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 16px;
}

.seo-links-card,
.faq-card {
  border-color: rgba(79, 209, 197, 0.14);
  background:
    linear-gradient(180deg, rgba(79, 209, 197, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(17, 24, 39, 0.68);
}

.seo-story-copy {
  padding: 6px 4px 4px 0;
}

.seo-section-title,
.seo-links-title {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
}

.seo-story-intro {
  margin: 16px 0 0;
  color: #dbe7f9;
  line-height: 1.7;
  font-size: 15px;
}

.seo-story-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.seo-story-item {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-story-item-title {
  color: #dffaf5;
  font-size: 14px;
  font-weight: 800;
}

.seo-story-item span:last-child {
  color: #c6cedc;
  line-height: 1.7;
  font-size: 15px;
}

.seo-rich-text {
  display: grid;
  gap: 14px;
}

.seo-rich-text p,
.seo-links-copy,
.faq-card p {
  color: #c6cedc;
  line-height: 1.7;
  font-size: 15px;
}

.seo-link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dffaf5;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.seo-link:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 209, 197, 0.34);
  background: rgba(79, 209, 197, 0.1);
}

.faq-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-card h3 {
  margin-bottom: 10px;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.grid-3 {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: #c6cedc;
  line-height: 1.6;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(22px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-shell {
  position: relative;
  width: min(100%, 480px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(11, 18, 32, 0.92);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.48);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
  font-size: 16px;
  cursor: pointer;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  background: rgba(45, 212, 191, 0.1);
  color: #c8fff8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-title {
  margin: 18px 0 10px;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.modal-copy {
  margin: 0 0 20px;
  color: #c6cedc;
  line-height: 1.65;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-label {
  font-size: 13px;
  font-weight: 700;
  color: #dbe7f9;
}

.field-input {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8ff;
  font: inherit;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder {
  color: #7d8ba3;
}

.field-input:focus {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}

.field-textarea {
  min-height: 152px;
  resize: vertical;
  padding: 14px 16px;
}

.form-note {
  margin: 2px 0 0;
  color: #98a7c1;
  font-size: 13px;
  line-height: 1.55;
}

.form-legal {
  margin: 2px 0 0;
  color: rgba(183, 196, 217, 0.76);
  font-size: 12px;
  line-height: 1.55;
}

.form-legal a {
  color: #d9f9f3;
  text-decoration: underline;
  text-decoration-color: rgba(217, 249, 243, 0.5);
  text-underline-offset: 0.14em;
}

.form-legal a:hover {
  color: #effffd;
  text-decoration-color: currentColor;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.form-submit {
  min-width: 180px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.form-status[data-tone='muted'],
.form-status-static {
  color: #b7c4d9;
}

.form-status[data-tone='success'] {
  color: #86efac;
}

.form-status[data-tone='error'] {
  color: #fda4af;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.14em;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.legal-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(154, 178, 213, 0.08);
  margin-top: 18px;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

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

.footer-action {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-action:hover {
  color: var(--text);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(198, 206, 220, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(229, 231, 235, 0.82);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social-link:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
  color: #eafffb;
  transform: translateY(-1px);
}

.footer-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(198, 206, 220, 0.65);
  font-size: 12px;
}

.footer-copyright {
  color: rgba(234, 242, 255, 0.6);
  font-size: 12px;
  white-space: nowrap;
}

.footer-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(198, 206, 220, 0.65);
  font-size: 12px;
}

.contact-modal-shell {
  width: min(100%, 560px);
  background:
    radial-gradient(160px at top right, rgba(248, 204, 107, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(11, 18, 32, 0.94);
}

.contact-form {
  gap: 16px;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 24px auto 60px;
}

.legal-header {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  padding: 20px;
  margin-bottom: 16px;
}

.legal-breadcrumb {
  margin: 0 0 8px;
  color: #d2e0f5;
  font-size: 14px;
}

.legal-breadcrumb a {
  color: #deebff;
  text-decoration: none;
  border-bottom: 1px solid rgba(222, 235, 255, 0.3);
}

.legal-breadcrumb a:hover {
  border-bottom-color: rgba(79, 209, 197, 0.8);
  color: #c8fff8;
}

.legal-header h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 10px;
}

.legal-meta {
  margin: 0;
  color: #c9d6ee;
}

.legal-meta-highlight {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(79, 209, 197, 0.35);
  background: rgba(79, 209, 197, 0.1);
  color: #dbfbf7;
  font-size: 13px;
  font-weight: 700;
}

.legal-content {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  padding: 22px;
}

.legal-content h2,
.legal-content h3 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.legal-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 25px;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #c6cedc;
  line-height: 1.7;
  font-size: 16px;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 0.05rem 0.35rem;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .seo-story-grid,
  .landing-preview-grid,
  .landing-preview-body,
  .landing-insights-grid,
  .landing-cta-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .faq-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-bar-left,
  .footer-bar-right {
    justify-content: center;
  }

  .hero-action-option .btn,
  .landing-final-cta-actions .btn {
    width: 100%;
  }

  .modal-shell {
    padding: 24px 20px 20px;
  }

  .landing-preview-bars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
