:root {
  --color-navy: #1a2e4a;
  --color-navy-deep: #0d1b2e;
  --color-navy-mid: #243f60;
  --color-green: #00b67a;
  --color-green-light: #00d48e;
  --color-green-dim: #007a52;
  --color-orange: #ff6b35;
  --color-orange-light: #ff8a5c;
  --color-white: #ffffff;
  --color-offwhite: #f4f6f9;
  --color-gray-300: #b0bec8;
  --color-gray-500: #6b7e90;
  --color-gray-700: #3a4e60;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-border: rgba(26, 46, 74, 0.12);
  --shadow: 0 18px 48px rgba(16, 34, 53, 0.14);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-navy-deep);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 107, 53, 0.16), transparent 40%),
    radial-gradient(circle at 92% 12%, rgba(0, 182, 122, 0.2), transparent 42%),
    linear-gradient(180deg, #f7fbff 0%, #eef3f8 100%);
  min-height: 100vh;
  line-height: 1.5;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-shape-a {
  width: 360px;
  height: 360px;
  background: rgba(255, 107, 53, 0.38);
  top: -110px;
  left: -90px;
}

.ambient-shape-b {
  width: 310px;
  height: 310px;
  background: rgba(0, 182, 122, 0.38);
  right: -70px;
  top: 130px;
  animation-delay: -6s;
}

.ambient-shape-c {
  width: 260px;
  height: 260px;
  background: rgba(26, 46, 74, 0.25);
  bottom: 110px;
  left: 48%;
  animation-delay: -3s;
}

@keyframes drift {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(28px) scale(1.08);
  }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(244, 246, 249, 0.78);
  border-bottom: 1px solid rgba(26, 46, 74, 0.07);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.use-light-logo {
  background: rgba(13, 27, 46, 0.8);
  border-bottom: 1px solid rgba(232, 237, 242, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-navy);
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-logo-light {
  display: none;
}

.site-header.use-light-logo .brand-logo-dark {
  display: none;
}

.site-header.use-light-logo .brand-logo-light {
  display: block;
}

.site-header.use-light-logo .button-outline {
  color: var(--color-offwhite);
  border-color: rgba(232, 237, 242, 0.32);
  background: rgba(13, 27, 46, 0.35);
}

.site-header.use-light-logo .button-outline:hover {
  background: rgba(232, 237, 242, 0.12);
}

.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--color-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy);
}

h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead {
  margin: 16px 0 0;
  font-size: 1.05rem;
  color: var(--color-gray-700);
  max-width: 52ch;
}

.trial-note {
  margin: 14px 0 0;
  color: var(--color-gray-700);
  font-size: 0.93rem;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 20px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 30px rgba(255, 107, 53, 0.28);
}

.button-outline {
  border: 1px solid rgba(26, 46, 74, 0.2);
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.55);
}

.button-ghost {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid rgba(26, 46, 74, 0.14);
}

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

.trust-row span {
  background: rgba(26, 46, 74, 0.08);
  border: 1px solid rgba(26, 46, 74, 0.08);
  color: var(--color-navy);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-title {
  margin: 0;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-demo {
  margin: 14px 0 0;
}

.hero-demo img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
}

.hero-demo figcaption {
  margin: 8px 0 0;
  color: var(--color-gray-500);
  font-size: 0.84rem;
}

.hero-card ol {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: #2f4256;
}

.hero-card li {
  font-size: 0.95rem;
}

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

.surface-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.step-index {
  margin: 0;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.surface-card h3 {
  margin-top: 8px;
  font-size: 1.06rem;
}

.surface-card p {
  margin: 10px 0 0;
  color: var(--color-gray-700);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-block,
.benefits {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.value-block p {
  margin: 12px 0 0;
  color: var(--color-gray-700);
}

.benefits {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 16px;
  padding-left: 22px;
  padding-right: 22px;
}

.benefits li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: #2f4256;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(140deg, var(--color-green), var(--color-green-light));
}

.trust-proof {
  padding-top: 30px;
}

.proof-lead {
  margin: 12px 0 0;
  max-width: 68ch;
  color: var(--color-gray-700);
}

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

.proof-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.proof-card h3 {
  font-size: 1rem;
}

.proof-card p {
  margin: 8px 0 0;
  color: var(--color-gray-700);
  font-size: 0.92rem;
}

.pricing {
  padding-top: 26px;
}

.pricing-lead {
  margin: 12px 0 0;
  color: var(--color-gray-700);
  max-width: 60ch;
}

.pricing-beta-note {
  margin: 8px 0 0;
  color: var(--color-gray-500);
  font-size: 0.88rem;
}

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 20px 32px rgba(255, 107, 53, 0.2);
}

.pricing-plan {
  margin: 0;
  color: var(--color-green-dim);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-amount {
  margin: 8px 0 0;
  color: var(--color-navy);
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.pricing-amount span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-gray-700);
}

.pricing-meta {
  margin: 8px 0 0;
  color: var(--color-gray-700);
}

.pricing-card .button {
  margin-top: 16px;
}

.pricing-note {
  margin: 14px 0 0;
  color: var(--color-gray-700);
  max-width: 72ch;
  font-size: 0.93rem;
}

.faq {
  padding-top: 30px;
}

.faq-wrap h2 {
  max-width: 24ch;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--color-navy);
  font-weight: 700;
  list-style: none;
  padding-right: 20px;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -1px;
  font-family: var(--font-mono);
  color: var(--color-green-dim);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--color-gray-700);
  font-size: 0.95rem;
}

.final-cta {
  padding-top: 36px;
}

.final-cta-card {
  background: linear-gradient(130deg, rgba(26, 46, 74, 0.95), #203b5d);
  color: var(--color-white);
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 22px 40px rgba(16, 34, 53, 0.24);
}

.final-cta-card .eyebrow {
  color: #9deacb;
}

.final-cta-card h2 {
  margin-top: 12px;
  color: var(--color-white);
}

.final-cta-card p {
  margin: 14px auto 0;
  max-width: 56ch;
  color: #d5e1ee;
}

.final-cta-card .button {
  margin-top: 24px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 24px 0 36px;
}

.footer-inner {
  border-top: 1px solid rgba(26, 46, 74, 0.09);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 20px;
}

.footer-inner p {
  margin: 0;
  color: #4f6174;
  font-size: 0.88rem;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .value-grid,
  .steps-grid,
  .faq-grid,
  .proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .brand-logo {
    height: 30px;
  }

  .hero-card,
  .surface-card,
  .value-block,
  .benefits,
  .final-cta-card {
    border-radius: 18px;
  }

  .final-cta-card {
    padding: 28px 20px;
  }
}
