:root {
  --bg: #08100d;
  --bg-alt: #10201b;
  --surface: rgba(19, 33, 29, 0.84);
  --surface-strong: rgba(19, 33, 29, 0.94);
  --surface-soft: rgba(225, 241, 230, 0.08);
  --outline: rgba(182, 216, 194, 0.18);
  --outline-strong: rgba(182, 216, 194, 0.3);
  --text: #edf5f1;
  --text-soft: #c5d2cb;
  --accent: #c2f07d;
  --accent-strong: #def6b2;
  --accent-soft: #8fcf9f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(194, 240, 125, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(143, 207, 159, 0.18), transparent 26%),
    linear-gradient(140deg, #07100d, var(--bg) 36%, var(--bg-alt) 72%, #08110f);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.eyebrow,
.section-eyebrow {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
}

.hero {
  padding: 10px 0 36px;
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.beta-pill,
.visual-label,
.step-number {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--outline);
  background: rgba(225, 241, 230, 0.08);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: start;
  margin-top: 48px;
}

.hero-copy h1,
.feature-section h2,
.workflow-section h2,
.callout-panel h3,
.info-panel h3 {
  margin: 0;
  line-height: 1.02;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero-copy p,
.section-copy,
.callout-panel p,
.site-footer p,
.info-panel li {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1.05rem;
}

.section-copy {
  margin: 16px 0 28px;
  max-width: 65ch;
}

.hero-lead {
  max-width: 58ch;
}

.cta-row,
.chip-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--outline-strong);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  background: var(--accent);
  color: #0b0f0d;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(194, 240, 125, 0.18);
}

.button-secondary {
  background: rgba(225, 241, 230, 0.06);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(194, 240, 125, 0.44);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button:focus-visible {
  outline: 2px solid rgba(194, 240, 125, 0.5);
  outline-offset: 3px;
}

.chip-row span,
.badge,
.stat-card,
.workflow-card {
  border: 1px solid var(--outline);
  background: rgba(225, 241, 230, 0.06);
}

.chip-row span,
.badge {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 600;
}

.hero-points {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.hero-points li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--outline);
  background: rgba(225, 241, 230, 0.05);
}

.hero-points strong,
.summary-card strong,
.stat-card strong,
.feature-card h3,
.workflow-card h3,
.info-panel strong,
.callout-panel h3 {
  color: var(--text);
}

.hero-panel {
  position: relative;
}

.visual-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid var(--outline);
  background:
    linear-gradient(180deg, rgba(225, 241, 230, 0.06), rgba(225, 241, 230, 0.02)),
    rgba(10, 18, 15, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.mock-card,
.summary-card,
.stat-card,
.feature-card,
.workflow-card,
.info-panel,
.callout-panel {
  border-radius: 24px;
  border: 1px solid var(--outline);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mock-card {
  position: static;
  width: auto;
  padding: 20px;
}

.planning-card {
  margin-top: 8px;
}

.trip-card {
  margin-top: 136px;
}

.mock-card-title {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 16px;
  font-weight: 700;
  color: var(--text);
  font-size: 1.3rem;
}

.mock-card ul,
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.mock-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--text);
}

.mock-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.summary-card {
  position: static;
  grid-column: 1 / -1;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: var(--surface-strong);
}

.summary-card span,
.stat-card span {
  display: block;
  color: var(--text-soft);
  line-height: 1.55;
  margin-top: 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 42px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-section,
.workflow-section {
  padding: 30px 0;
}

.feature-section {
  border: 1px solid var(--outline);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(225, 241, 230, 0.08), rgba(225, 241, 230, 0.03));
  padding: 28px;
}

.feature-section h2,
.workflow-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
  margin-top: 14px;
}

.feature-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.feature-card,
.workflow-card,
.info-panel,
.callout-panel {
  padding: 24px;
}

.feature-card h3,
.workflow-card h3,
.info-panel h3,
.callout-panel h3 {
  margin-bottom: 10px;
}

.feature-card p,
.workflow-card p,
.callout-panel p,
.info-panel li {
  margin: 0;
}

.workflow-card {
  background: rgba(9, 18, 15, 0.7);
}

.step-number {
  margin-bottom: 18px;
}

.info-panel li + li {
  margin-top: 14px;
}

.info-panel strong {
  display: block;
  margin-bottom: 2px;
}

.callout-panel {
  background: linear-gradient(135deg, rgba(31, 49, 43, 0.96), rgba(18, 32, 28, 0.96));
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callout-actions {
  margin-top: 6px;
}

.site-footer {
  margin-top: 52px;
  padding: 24px 28px;
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: rgba(225, 241, 230, 0.05);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.footer-links a {
  color: var(--text);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 16, 13, 0.92);
  border-bottom: 1px solid var(--outline);
  backdrop-filter: blur(12px);
  padding: 16px 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  gap: 32px;
}

.navbar .brand {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1rem;
  color: var(--accent);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--outline-strong);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
  font-size: 0.95rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: var(--accent);
  color: #0b0f0d;
  border-color: transparent;
}

.btn-small:hover,
.btn-small:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(194, 240, 125, 0.16);
}

/* Pricing Section */
.pricing-section {
  padding: 52px 0 60px;
  margin: 32px 0;
}

.pricing-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
  margin: 14px 0 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: var(--surface);
  padding: 32px;
  padding-top: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 160ms ease;
}

.pricing-card:hover {
  border-color: var(--outline-strong);
  transform: translateY(-2px);
}

.pricing-premium {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(194, 240, 125, 0.06), rgba(143, 207, 159, 0.04));
  box-shadow: 0 0 40px rgba(194, 240, 125, 0.1);
}

.plan-badge {
  position: absolute;
  top: 16px;
  left: 32px;
  background: var(--accent);
  color: #0b0f0d;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1;
}

.plan-period {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.plan-features li {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.pricing-card .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Download Section */
.download-buttons {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: rgba(225, 241, 230, 0.06);
  flex: 1;
  transition: all 160ms ease;
}

.download-btn:hover,
.download-btn:focus-visible {
  background: rgba(225, 241, 230, 0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 1.8rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-text .small {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.store-text .large {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.info-panel {
  background: linear-gradient(135deg, rgba(194, 240, 125, 0.04), rgba(143, 207, 159, 0.03));
}

.info-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.social-proof {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: rgba(225, 241, 230, 0.04);
}

.social-proof p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.social-proof p + p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .navbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .closing-grid,
  .feature-grid,
  .workflow-grid,
  .stats,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .visual-shell {
    grid-template-columns: 1fr;
  }

  .mock-card {
    width: 100%;
  }

  .trip-card {
    margin-top: 0;
  }

  .summary-card {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .feature-section {
    padding: 22px;
  }

  .visual-shell {
    gap: 16px;
    padding: 18px;
  }

  .mock-card,
  .summary-card {
    position: static;
    width: 100%;
  }

  .summary-card {
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    display: grid;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-direction: row;
  }

  .closing-grid {
    gap: 24px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-section {
    margin: 24px 0;
  }
}