:root {
  --ink: #0e1735;
  --muted: #60708f;
  --line: #dce4f2;
  --soft: #f4f7fc;
  --white: #ffffff;
  --navy: #111632;
  --navy-2: #1d2153;
  --violet: #6757f5;
  --violet-2: #8a63ff;
  --yellow: #ffd83d;
  --blue: #2787ff;
  --red: #ea315b;
  --green: #0f9f72;
  --shadow: 0 24px 70px rgba(19, 31, 72, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fd;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.review-ribbon {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 18px;
  color: #dfe7ff;
  background: #090d20;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-align: center;
}

.review-ribbon strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 228, 242, 0.85);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #0c1430;
  border-radius: 13px;
  color: #12182f;
  background: var(--yellow);
  box-shadow: 3px 3px 0 #11162f;
  font-size: 13px;
}

.brand-copy span {
  display: block;
  font-size: 15px;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: #71809e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.text-link {
  color: #3e4a68;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--violet);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.number-button:focus-visible,
.choice-button:focus-visible {
  outline: 3px solid rgba(39, 135, 255, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #814aff);
  box-shadow: 0 15px 30px rgba(103, 87, 245, 0.25);
}

.button-yellow {
  color: #10162e;
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(255, 216, 61, 0.22);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 61, 0.22);
  content: "";
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 74px 0;
}

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

.container-narrow {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.offer-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-heading p,
.story-copy > p,
.offer-copy > p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 16px 45px rgba(23, 36, 75, 0.06);
}

.info-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--violet);
  background: #eeecff;
  font-size: 20px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(103, 87, 245, 0.35), transparent 34%),
    radial-gradient(circle at 15% 85%, rgba(39, 135, 255, 0.18), transparent 28%),
    var(--navy);
}

.dark-section .eyebrow {
  color: #bcb4ff;
}

.dark-section .section-heading p,
.dark-section .story-copy > p {
  color: #b9c4df;
}

.story-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.story-copy h2 {
  font-size: clamp(38px, 5vw, 66px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #c7d2eb;
  line-height: 1.5;
}

.check-list li::before {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #111632;
  background: var(--yellow);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.dashboard-mock {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #f8faff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(1.2deg);
}

.mock-sidebar {
  padding: 24px 14px;
  color: #f1f4ff;
  background: #171b42;
}

.mock-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  border-radius: 12px;
  color: #12152c;
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.mock-nav {
  display: grid;
  gap: 9px;
}

.mock-nav span {
  height: 31px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-nav span:nth-child(2) {
  border-left: 3px solid var(--yellow);
  background: rgba(103, 87, 245, 0.42);
}

.mock-main {
  padding: 25px 22px;
}

.mock-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.mock-pill {
  width: 40%;
  height: 30px;
  border-radius: 10px;
  background: #e8edf7;
}

.mock-pill.short {
  width: 22%;
  background: #6d5cf3;
}

.mock-title {
  width: 62%;
  height: 27px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #111831;
}

.mock-subtitle {
  width: 82%;
  height: 11px;
  margin-bottom: 30px;
  border-radius: 6px;
  background: #cdd5e5;
}

.mock-score {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 72%;
  margin-bottom: 20px;
}

.mock-score span {
  height: 54px;
  border: 1px solid #d8e0ef;
  border-radius: 12px;
  background: #fff;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  padding: 16px;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  background: #f1f4f9;
}

.mock-grid span {
  aspect-ratio: 1;
  border: 1px solid #cdd6e7;
  border-radius: 9px;
  background: #fff;
}

.mock-grid span:nth-child(4),
.mock-grid span:nth-child(13),
.mock-grid span:nth-child(21),
.mock-grid span:nth-child(27),
.mock-grid span:nth-child(33),
.mock-grid span:nth-child(38) {
  border-color: #6857f4;
  background: #6857f4;
  box-shadow: 0 4px 12px rgba(103, 87, 245, 0.3);
}

.offer-wrap {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 70px;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #d9e1ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #075d42;
  background: #ddf8eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 26px 0 8px;
}

.offer-price strong {
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.offer-price span {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.offer-equivalent {
  margin: 0 0 22px;
  color: var(--green);
  font-weight: 800;
}

.price-math {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  padding: 16px;
  border-radius: 16px;
  color: #3a4763;
  background: var(--soft);
  font-size: 13px;
  text-align: center;
}

.price-math strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 19px;
}

.offer-panel .button {
  width: 100%;
}

.landing-plan-grid {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: 16px 0 10px;
}

.landing-plan {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid #d9deea;
  border-radius: 16px;
  background: #fff;
  color: #111a38;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(16, 26, 56, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.landing-plan:hover {
  transform: translateY(-2px);
  border-color: #6d5dfc;
  box-shadow: 0 12px 28px rgba(49, 43, 136, .13);
}

.landing-plan.is-recommended {
  border: 2px solid #6d5dfc;
  background: linear-gradient(145deg, #fff, #f0efff);
}

.landing-plan em {
  color: #5a4ee8;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
}

.landing-plan strong {
  color: #101a38;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.landing-plan strong small {
  color: #64708a;
  font-size: 14px;
  font-weight: 750;
}

.landing-plan b,
.plan-renewal {
  color: #64708a;
  font-size: 12px;
  line-height: 1.45;
}

.reveal-offer .landing-plan {
  color: #101a38;
  text-align: left;
}

.fine-print {
  margin: 14px 0 0;
  color: #75829c;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-list summary {
  padding: 21px 24px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--violet);
  content: "+";
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 42px 0;
  color: #93a0bd;
  background: #0a0e22;
  font-size: 12px;
  line-height: 1.7;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.footer-inner p {
  max-width: 760px;
  margin: 0;
}

.footer-inner a {
  color: #d8e0f4;
  white-space: nowrap;
}

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

  .story-split,
  .offer-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dashboard-mock {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .review-ribbon {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 7px 14px;
    text-align: left;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-copy small,
  .header-actions .text-link {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 0 13px;
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .section-heading h2,
  .story-copy h2,
  .offer-copy h2 {
    font-size: 36px;
  }

  .section-heading p,
  .story-copy > p,
  .offer-copy > p {
    font-size: 16px;
  }

  .dashboard-mock {
    grid-template-columns: 75px 1fr;
    min-height: 390px;
  }

  .mock-sidebar {
    padding: 18px 9px;
  }

  .mock-main {
    padding: 20px 14px;
  }

  .mock-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .offer-price strong {
    font-size: 54px;
  }

  .price-math {
    grid-template-columns: 1fr;
  }

  .price-math > span:nth-child(2) {
    transform: rotate(90deg);
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
