:root {
  --bg: #08131d;
  --bg-soft: #102433;
  --surface: rgba(12, 32, 45, 0.72);
  --surface-strong: rgba(17, 43, 60, 0.9);
  --line: rgba(255, 152, 0, 0.18);
  --text: #f2f7f5;
  --muted: #9fb8b9;
  --accent: #ff9800;
  --accent-strong: #ff8700;
  --accent-soft: #ffd08a;
  --accent-pale: #fff0d2;
  --shadow: 0 30px 80px rgba(2, 10, 17, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI Variable Display", "Aptos", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 152, 0, 0.2), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 188, 81, 0.12), transparent 24%),
    radial-gradient(circle at bottom, rgba(255, 129, 0, 0.09), transparent 22%),
    linear-gradient(180deg, #071018 0%, #08131d 38%, #091823 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
strong,
summary {
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3 {
  margin: 0;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 19, 29, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 152, 0, 0.35);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 152, 0, 0.1);
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  font: inherit;
}

.section {
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  line-height: 0.94;
}

.hero h1 span {
  color: var(--accent-soft);
}

.hero-text {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #08131d;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

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

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.35);
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.app-preview {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.app-preview::after {
  position: absolute;
  inset: auto -12% -24% 40%;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.3), transparent 65%);
}

.preview-top,
.planner-box,
.timeline article {
  position: relative;
  z-index: 1;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-badge {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0a1c28;
  background: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.planner-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 152, 0, 0.18);
  border-radius: var(--radius-md);
  background: rgba(7, 19, 29, 0.42);
}

.planner-title {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.planner-copy {
  color: var(--text);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.timeline article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.timeline span {
  color: var(--accent-soft);
  font-weight: 700;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.is-event {
  border-color: rgba(255, 190, 92, 0.28);
}

.is-focus {
  border-color: rgba(255, 152, 0, 0.22);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip div {
  color: var(--muted);
}

.trust-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.feature-grid,
.workflow-grid,
.metric-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.feature-card,
.workflow-step,
.metric-card,
.faq-item,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
}

.feature-kicker {
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-weight: 700;
}

.feature-card h3,
.workflow-step h3,
.metric-card strong {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

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

.workflow-step {
  position: relative;
  padding: 28px;
}

.workflow-step span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #08131d;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  font-weight: 800;
}

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

.metric-card {
  padding: 24px;
}

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

.faq-item {
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
}

.cta-card {
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 152, 0, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.cta-logo {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(255, 152, 0, 0.22);
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.cta-card p {
  max-width: 720px;
  margin: 18px auto 0;
}

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

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  text-align: left;
}

.store-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.store-label {
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.store-card .button {
  margin-top: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .feature-grid,
  .workflow-grid,
  .metric-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy,
  .hero-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    top: 10px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

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

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 10px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .feature-grid,
  .workflow-grid,
  .metric-grid,
  .store-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .cta-card {
    padding: 30px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
