:root {
  --bg: #06141c;
  --panel: #0f2431;
  --panel-soft: #122c3b;
  --text: #ebf5fa;
  --muted: #aac0cc;
  --line: rgba(255, 255, 255, 0.14);
  --primary: #19c4ba;
  --primary-strong: #12a69e;
  --accent: #5bc6ff;
  --radius: 16px;
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  --topbar-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(980px 520px at 10% -10%, #11415a 0%, transparent 64%),
    radial-gradient(900px 460px at 100% 10%, #0d3549 0%, transparent 60%),
    var(--bg);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-height);
  gap: 16px;
  padding: 14px clamp(14px, 3.8vw, 44px);
  background: rgba(6, 20, 28, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 72px;
  height: 28px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 18px);
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-solid {
  background: linear-gradient(132deg, var(--primary), #3ae7de 58%, #80fff8 100%);
  color: #022226;
  box-shadow: 0 10px 24px rgba(25, 196, 186, 0.3);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(25, 196, 186, 0.36);
}

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

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

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
}

main {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.section {
  padding: 34px 0;
}

section[id] {
  scroll-margin-top: calc(var(--topbar-height) + 14px);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 13ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.45rem, 3.8vw, 2.3rem);
  line-height: 1.2;
  max-width: 22ch;
}

h3 {
  font-size: 1.06rem;
  line-height: 1.35;
}

.section-subtitle {
  margin-top: 14px;
  max-width: 78ch;
  color: #bfd3de;
  font-size: 0.98rem;
}

.hero {
  min-height: calc(100svh - var(--topbar-height));
  padding-top: 18px;
  display: flex;
  align-items: center;
}

.hero-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.hero-content {
  max-width: min(650px, 100%);
}

.hero-eyebrow {
  margin-bottom: 14px;
  color: #93b4c5;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy {
  margin-top: 18px;
  max-width: 41ch;
  color: #c5d9e4;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.hero-cta {
  margin-top: 30px;
}

.btn-hero {
  min-height: 54px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 1rem;
}

.hero-trust {
  margin-top: 14px;
  color: #a7bfcb;
  font-size: 0.9rem;
  max-width: 48ch;
}

.hero-panel {
  border: 1px solid rgba(91, 198, 255, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% -8%, rgba(91, 198, 255, 0.3), transparent 55%),
    linear-gradient(165deg, rgba(11, 40, 56, 0.96), rgba(5, 18, 26, 0.97));
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-panel-label {
  margin-bottom: 14px;
  color: #a6c6d7;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-panel-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-panel-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 25, 35, 0.72);
  padding: 10px 12px;
  color: #cfe1ea;
  font-size: 0.88rem;
}

.hero-panel-index {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(91, 198, 255, 0.36);
  color: #8dfef7;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  padding: 18px;
}

.card p {
  margin-top: 10px;
  color: #bdd2dd;
  font-size: 0.93rem;
}

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

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005));
  padding: 16px;
}

.process-step-index {
  display: inline-flex;
  min-width: 34px;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 999px;
  border: 1px solid rgba(25, 196, 186, 0.42);
  background: rgba(25, 196, 186, 0.16);
  color: #8ff9f1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
}

.process-step p:last-child {
  margin-top: 10px;
  color: #bfd3de;
  font-size: 0.92rem;
}

.trust-strip {
  border: 1px solid rgba(25, 196, 186, 0.44);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(136deg, rgba(25, 196, 186, 0.14), rgba(91, 198, 255, 0.07));
  padding: clamp(18px, 3.4vw, 30px);
}

.proof-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-points li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d2e7f2;
  font-size: 0.84rem;
  padding: 8px 12px;
}

.pricing-billing-toggle {
  margin-top: 18px;
  border: 1px solid rgba(91, 198, 255, 0.35);
  border-radius: 18px;
  background:
    radial-gradient(420px 120px at 0% 0%, rgba(91, 198, 255, 0.22), transparent 68%),
    linear-gradient(140deg, rgba(10, 33, 46, 0.92), rgba(6, 19, 28, 0.9));
  padding: 14px;
}

.pricing-billing-label {
  margin-bottom: 10px;
  color: #a8cbdd;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(4, 19, 28, 0.78);
  padding: 6px;
}

.pricing-switch-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 9px);
  border-radius: 10px;
  background: linear-gradient(132deg, rgba(25, 196, 186, 0.92), rgba(91, 198, 255, 0.88));
  box-shadow: 0 10px 22px rgba(25, 196, 186, 0.28);
  transition: transform 320ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

#pricing[data-billing-mode="yearly"] .pricing-switch-indicator {
  transform: translateX(calc(100% + 6px));
}

.pricing-switch-btn {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #b8d0dc;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 48px;
  cursor: pointer;
  transition: color 200ms ease;
}

.pricing-switch-btn.is-active {
  color: #06232e;
}

.pricing-billing-hint {
  margin-top: 10px;
  color: #a9c5d4;
  font-size: 0.82rem;
}

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

.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan.featured {
  border-color: rgba(25, 196, 186, 0.62);
  box-shadow: 0 12px 26px rgba(25, 196, 186, 0.16);
}

.plan-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(25, 196, 186, 0.42);
  background: rgba(25, 196, 186, 0.2);
  color: #9efef7;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 9px;
}

.plan-name {
  color: #d8ecf6;
  font-weight: 600;
}

.plan-price {
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 700;
  transition: color 240ms ease, transform 240ms ease, opacity 240ms ease;
}

#pricing[data-billing-mode="yearly"] .plan-price {
  color: #8ff9f1;
}

.plan-price-note {
  min-height: 18px;
  margin-top: -2px;
  color: #95b7c8;
  font-size: 0.76rem;
  transition: opacity 220ms ease;
}

.plan-tag {
  color: #9bcbe0;
  font-size: 0.84rem;
  font-weight: 600;
}

.plan-description {
  color: #b8cfdb;
  font-size: 0.9rem;
  min-height: 52px;
}

.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.plan li {
  position: relative;
  color: #c4d9e4;
  font-size: 0.86rem;
  padding-left: 16px;
}

.plan li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #84f7da;
}

.pricing-notes {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #b4cad7;
  font-size: 0.9rem;
  display: grid;
  gap: 8px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #e1f0f8;
}

.faq p {
  margin-top: 10px;
  color: #bdd3de;
  font-size: 0.92rem;
}

.final-cta {
  margin-top: 8px;
  border: 1px solid rgba(25, 196, 186, 0.42);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(132deg, rgba(25, 196, 186, 0.16), rgba(91, 198, 255, 0.09));
  padding: clamp(20px, 4vw, 32px);
}

.final-cta p {
  margin-top: 12px;
  color: #cfe4ef;
  max-width: 58ch;
}

.final-cta .btn {
  margin-top: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 16px 30px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links a,
.footer-manage-cookies {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cbe0eb;
  font: inherit;
  font-size: 0.78rem;
  padding: 6px 12px;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-manage-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding: 8px 10px;
}

.cookie-consent-card {
  margin: 0 auto;
  width: min(820px, calc(100% - 8px));
  border: 1px solid rgba(91, 198, 255, 0.35);
  border-radius: 18px;
  background:
    radial-gradient(380px 120px at 0% 0%, rgba(91, 198, 255, 0.24), transparent 70%),
    linear-gradient(150deg, rgba(10, 32, 45, 0.96), rgba(5, 18, 26, 0.98));
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
  max-height: min(68vh, 460px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
}

.cookie-consent-card h2 {
  margin: 0;
  font-size: 1.04rem;
}

.cookie-consent-card > p {
  margin-top: 6px;
  color: #b8d0dc;
  font-size: 0.82rem;
  max-width: 84ch;
}

.cookie-consent-summary {
  margin-top: 6px;
  color: #9ed7f4;
  font-size: 0.74rem;
}

.cookie-consent-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent-links a {
  color: #9dd6f2;
  font-size: 0.82rem;
}

.cookie-consent-preferences {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.cookie-consent-option {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.cookie-consent-option h3 {
  margin: 0;
  font-size: 0.82rem;
  color: #e7f2f8;
}

.cookie-consent-option p {
  margin-top: 3px;
  color: #a8c2cf;
  font-size: 0.74rem;
}

.cookie-consent-option input {
  width: 19px;
  height: 19px;
  accent-color: #25d6cb;
}

.cookie-consent-pill {
  border-radius: 999px;
  border: 1px solid rgba(25, 196, 186, 0.45);
  background: rgba(25, 196, 186, 0.2);
  color: #a1fff8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.cookie-consent-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-consent-actions .btn {
  min-height: 40px;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .reveal {
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }

  .actions .btn-outline {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 16px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid.three,
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  main {
    width: min(1140px, calc(100% - 24px));
    padding-top: 14px;
  }

  .section {
    padding: 24px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.7vw, 2.5rem);
    line-height: 1.1;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.35rem, 7.2vw, 2rem);
  }

  .hero-copy,
  .section-subtitle {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .hero-cta {
    margin-top: 20px;
  }

  .btn-hero {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .pricing-switch-btn {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .card-grid.two,
  .card-grid.three,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-description {
    min-height: 0;
  }

  .proof-points {
    gap: 8px;
  }

  .trust-strip,
  .final-cta {
    padding: 20px 14px 20px 18px;
  }

  .trust-strip h2,
  .trust-strip .section-subtitle,
  .trust-strip .proof-points,
  .final-cta h2,
  .final-cta p {
    padding-left: 4px;
  }

  .cookie-consent-banner {
    padding: 6px;
  }

  .cookie-consent-card {
    width: 100%;
    border-radius: 14px;
    max-height: min(56vh, 360px);
    padding: 10px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }

  .cookie-consent-option {
    grid-template-columns: 1fr;
  }
}

