:root {
  --ink: #151325;
  --muted: #686477;
  --line: #e9e7ef;
  --surface: #ffffff;
  --background: #f7f7fa;
  --purple: #6f52ed;
  --purple-dark: #5138cb;
  --purple-soft: #eeeaff;
  --orange: #f29b60;
  --orange-soft: #fff0e6;
  --blue: #608fd8;
  --blue-soft: #eaf2ff;
  --green: #44a982;
  --green-soft: #e8f7f1;
  --dark: #171626;
  --shadow: 0 24px 72px rgba(27, 24, 58, .14);
  --shadow-soft: 0 16px 42px rgba(27, 24, 58, .08);
  --radius: 26px;
  --max: 1180px;
  --font-sans: Inter, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(111, 82, 237, .16), transparent 34%),
    radial-gradient(circle at 95% 12%, rgba(68, 169, 130, .15), transparent 28%),
    var(--background);
  font: 400 16px/1.6 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--dark);
  text-decoration: none;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(233, 231, 239, .78);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section,
.signal-strip,
.faq-section,
.final-cta {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.6px;
}

.brand-name {
  font-size: 24px;
  line-height: 1;
}

.brand-name span {
  color: var(--purple);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding-bottom: 8px;
  border-radius: 10px;
  background: var(--purple);
  transform: rotate(-4deg);
  box-shadow: 0 14px 24px rgba(111, 82, 237, .24);
}

.brand-mark span {
  width: 4px;
  border-radius: 6px;
  background: #fff;
}

.brand-mark span:nth-child(1) { height: 8px; }
.brand-mark span:nth-child(2) { height: 15px; }
.brand-mark span:nth-child(3) { height: 11px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.text-link {
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 410px;
  height: 20px;
  transform: translateX(-50%);
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: color .18s ease;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--purple);
  outline: none;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  width: 390px;
  display: grid;
  gap: 4px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 10px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 54px rgba(27, 24, 58, .14);
  backdrop-filter: blur(18px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(233, 231, 239, .92);
  border-top: 1px solid rgba(233, 231, 239, .92);
  background: rgba(255, 255, 255, .96);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 15px;
  color: var(--ink);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--purple);
  background: var(--purple-soft);
  transform: translateX(2px);
  outline: none;
}

.nav-dropdown-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--purple);
  background: var(--purple-soft);
}

.nav-dropdown-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown-icon.blue {
  color: #447fcf;
  background: var(--blue-soft);
}

.nav-dropdown-icon.green {
  color: #258264;
  background: var(--green-soft);
}

.nav-dropdown-icon.orange {
  color: #cc6c35;
  background: var(--orange-soft);
}

.nav-dropdown-copy {
  display: grid;
  gap: 3px;
}

.nav-dropdown-menu strong {
  font-size: 14px;
  line-height: 1.2;
}

.nav-dropdown-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

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

.nav-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(27, 24, 58, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: #cfc5fa;
  box-shadow: 0 14px 30px rgba(111, 82, 237, .14);
  outline: none;
}

.nav-menu-icon {
  position: relative;
  width: 17px;
  height: 14px;
  display: inline-grid;
  align-items: center;
}

.nav-menu-icon span {
  grid-area: 1 / 1;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-menu-icon span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-menu-icon span:nth-child(3) {
  transform: translateY(6px);
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-mobile-actions {
  display: none;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #9b86ff);
  box-shadow: 0 16px 34px rgba(111, 82, 237, .26);
}

.button.ghost,
.button.light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
}

.button.full {
  width: 100%;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.nav-cta:focus-visible,
.button.primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(111, 82, 237, .18), 0 16px 34px rgba(111, 82, 237, .26);
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 58px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 94px) max(18px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-radius: 0 0 42px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, .27), transparent 29%),
    radial-gradient(circle at 7% 10%, rgba(68, 169, 130, .24), transparent 25%),
    linear-gradient(135deg, #18162d 0%, #4b2ccf 48%, #44a982 118%);
  box-shadow: 0 30px 90px rgba(49, 35, 128, .22);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: auto -8% -32% 46%;
  height: 360px;
  border-radius: 50%;
  background: rgba(68, 169, 130, .28);
  filter: blur(24px);
}

.hero::after {
  right: 5%;
  top: 11%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  transform: rotate(12deg);
}

.hero-copy,
.hero-visual {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.2vw, 78px);
  line-height: .94;
  letter-spacing: -3.6px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -2px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
}

p {
  color: var(--muted);
  font-size: 16px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #eeeaff;
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.55;
}

.hero .eyebrow {
  color: #d9d0ff;
}

.hero h1 {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-actions .button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.hero-note {
  margin-bottom: 22px;
  color: #d9d0ff;
  font-size: 14px;
  font-weight: 750;
}

.hero-points,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions .button.primary {
  color: #211b45;
  background: #fff;
  box-shadow: 0 18px 34px rgba(15, 12, 42, .18);
}

.hero-actions .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 8%;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(68, 169, 130, .18));
  filter: blur(14px);
}

.hero-visual img,
.result-visual,
.example-panel,
.problem-grid article,
.analysis-card,
.timeline article,
.usecase-grid article,
.price-card,
.faq-list details {
  box-shadow: var(--shadow-soft);
}

.hero-visual img,
.result-visual {
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .92);
}

.hero-visual img,
.result-visual img {
  width: 100%;
  height: auto;
}

.live-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.live-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.live-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.live-card-score {
  right: 4%;
  top: 10%;
}

.live-card-risk {
  left: 2%;
  bottom: 12%;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px 0 68px;
}

.signal-strip article {
  min-height: 136px;
  padding: 24px;
  border: 1px solid rgba(233, 231, 239, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.2px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.problem-grid,
.target-grid,
.analysis-grid,
.timeline,
.usecase-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.target-section {
  padding-top: 18px;
}

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

.problem-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.target-grid article {
  min-height: 236px;
  padding: 30px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.problem-grid span,
.target-grid span,
.example-list span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.result-section,
.example-section,
.conversion-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 46px;
}

.result-copy {
  max-width: 520px;
}

.result-visual {
  overflow: hidden;
  background: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--purple);
  font-size: 15px;
  font-weight: 900;
}

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

.analysis-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: var(--radius);
  background: #fff;
}

.analysis-card::before {
  content: "";
  width: 46px;
  height: 46px;
  display: block;
  margin-bottom: 24px;
  border-radius: 16px;
  background: currentColor;
  opacity: .16;
}

.analysis-card.purple { color: var(--purple); }
.analysis-card.orange { color: #cc6c35; }
.analysis-card.green { color: #258264; }
.analysis-card.blue { color: #447fcf; }
.analysis-card.dark { color: var(--dark); }
.analysis-card.pale { color: #7c61e8; }

.analysis-card h3,
.analysis-card p {
  color: var(--ink);
}

.analysis-card p {
  color: var(--muted);
}

.method-section {
  position: relative;
}

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

.timeline article {
  padding: 30px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
}

.timeline span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--dark);
  font-size: 14px;
  font-weight: 950;
}

.example-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(233, 231, 239, .9);
  border-radius: 34px;
  background: #fff;
}

.score-ring {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at center, #fff 0 52%, transparent 53%),
    conic-gradient(var(--purple) 0 86%, #ece9f5 86% 100%);
}

.score-ring strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -1.8px;
}

.score-ring span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-list {
  display: grid;
  gap: 14px;
}

.example-list article {
  padding: 18px;
  border-radius: 20px;
  background: #f7f7fa;
}

.example-list p {
  margin-bottom: 0;
  color: #4d495e;
  font-size: 15px;
}

.conversion-section {
  grid-template-columns: .8fr 1.2fr;
}

.usecase-grid {
  grid-template-columns: repeat(2, 1fr);
}

.usecase-grid article {
  padding: 26px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
}

.trust-section {
  padding-top: 48px;
}

.trust-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(111, 82, 237, .12), transparent 34%),
    rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.trust-grid {
  display: grid;
  gap: 14px;
}

.trust-grid article {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(27, 24, 58, .06);
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: 30px;
  background: rgba(255, 255, 255, .86);
}

.price-card.highlighted {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #171626, #3d2b96 62%, #6f52ed);
  transform: translateY(-12px);
}

.price-card.highlighted p,
.price-card.highlighted li,
.price-card.highlighted .plan-label {
  color: rgba(255, 255, 255, .82);
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 42px;
  letter-spacing: -1.6px;
}

.price-card h3 span {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.price-card li {
  color: #4d495e;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.price-card.highlighted li::before {
  color: #8ee2bf;
}

.price-card .button {
  margin-top: auto;
}

.faq-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  padding: 78px 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  margin-top: 36px;
  margin-bottom: 42px;
  padding: 58px;
  border-radius: 38px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 26%),
    linear-gradient(135deg, #171626, #4c35c9 58%, #6f52ed);
  box-shadow: var(--shadow);
}

.final-cta p,
.final-cta .section-kicker {
  color: rgba(255, 255, 255, .82);
}

.final-cta h2 {
  color: #fff;
}

.final-cta .button {
  margin-top: 10px;
  background: #fff;
  color: var(--purple);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .14);
}

.site-footer {
  width: 100%;
  margin: 0 auto;
  padding: 56px 0 96px;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: 0;
  margin-right: 0;
  color: var(--muted);
  font-size: 14px;
  background: white;
}

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2.2fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(233, 231, 239, .92);
}

.footer-brand-col {
  max-width: 320px;
}

.footer-brand-col > p {
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 231, 239, .92);
  border-radius: 12px;
  color: var(--ink);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--purple);
  border-color: #cfc5fa;
  background: #f6f4fb;
  outline: none;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.footer-col {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .15s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--purple);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .15s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--purple);
  outline: none;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 25;
  width: min(calc(100% - 28px), 540px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateX(-50%);
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(233, 231, 239, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(27, 24, 58, .18);
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  color: #4d495e;
  font-size: 14px;
  font-weight: 850;
}

.sticky-cta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-shell {
    position: relative;
  }

  .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-shell > .nav-cta {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-actions .nav-cta {
    flex: 1 1 100%;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(233, 231, 239, .92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 22px 54px rgba(27, 24, 58, .16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a,
  .nav-dropdown-trigger {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 13px;
    color: var(--ink);
    background: transparent;
  }

  .nav-links > a:hover,
  .nav-links > a:focus-visible,
  .nav-dropdown-trigger:hover,
  .nav-dropdown-trigger:focus-visible {
    color: var(--purple);
    background: var(--purple-soft);
  }

  .nav-dropdown::after,
  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    display: grid;
    gap: 4px;
    padding: 4px 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 13px;
  }

  .nav-dropdown-icon {
    width: 36px;
    height: 36px;
  }

  .hero,
  .result-section,
  .example-section,
  .conversion-section,
  .trust-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .signal-strip,
  .problem-grid,
  .target-grid,
  .analysis-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .nav-shell,
  .section,
  .signal-strip,
  .faq-section,
  .final-cta {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-footer {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-name {
    font-size: 21px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    gap: 34px;
    padding: 42px 14px;
    border-radius: 0 0 28px 28px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
    letter-spacing: -2.4px;
  }

  h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .signal-strip,
  .problem-grid,
  .target-grid,
  .analysis-grid,
  .timeline,
  .usecase-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .faq-section {
    padding: 54px 0;
  }

  .example-panel {
    grid-template-columns: 1fr;
  }

  .live-card {
    position: static;
    margin-top: 12px;
  }

  .final-cta {
    padding: 38px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-cta {
    border-radius: 24px;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .sticky-cta a {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
