:root {
  --ink: #151325;
  --muted: #666377;
  --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;
  --shadow: 0 24px 70px rgba(27, 24, 58, .12);
  --shadow-soft: 0 16px 42px rgba(27, 24, 58, .08);
  --radius: 24px;
  --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 10% 0%, rgba(111, 82, 237, .12), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(96, 143, 216, .16), 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(--ink);
  text-decoration: none;
  transition: transform .18s ease;
}

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

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

.nav-shell {
  width: min(calc(100% - 36px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  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: 750;
}

.nav-links a {
  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: 750;
  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-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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: 850;
  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-login {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.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: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

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

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

.nav-cta:hover,
.nav-login:hover,
.button:hover,
.nav-cta:focus-visible,
.nav-login: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 32px rgba(111, 82, 237, .24);
}

.button.secondary:focus-visible {
  border-color: #b9aaff;
  box-shadow: 0 0 0 4px rgba(111, 82, 237, .14);
}

.nav-login:focus-visible {
  border-color: #b9aaff;
  box-shadow: 0 0 0 4px rgba(111, 82, 237, .14);
}

.section,
.metric-strip,
.final-cta,
.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  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 86% 16%, rgba(255, 255, 255, .26), transparent 29%),
    radial-gradient(circle at 8% 8%, rgba(126, 255, 205, .22), transparent 24%),
    linear-gradient(135deg, #18162d 0%, #4b2ccf 47%, #5f8fdd 100%);
  box-shadow: 0 30px 90px rgba(49, 35, 128, .22);
}

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

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

.hero-section::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: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -3.4px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.4vw, 50px);
  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-section .eyebrow {
  color: #d9d0ff;
}

.hero-section h1 {
  color: #fff;
}

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

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

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

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

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

.hero-note {
  margin: -12px 0 24px;
  color: #d9d0ff;
  font-size: 14px;
  font-weight: 750;
}

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

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

.hero-proof 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: 750;
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-items: center;
}

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

.hero-photo-card {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(14, 11, 38, .28);
  transform: rotate(1.2deg);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 16, 45, .28));
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: clamp(420px, 43vw, 570px);
  object-fit: cover;
  object-position: 48% center;
}

.hero-product-card,
.hero-mini-card {
  position: absolute;
  display: grid;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(14, 11, 38, .18);
  backdrop-filter: blur(14px);
}

.hero-product-card {
  left: -22px;
  bottom: 42px;
  width: min(310px, 62%);
  gap: 7px;
  padding: 19px;
  border-radius: 22px;
}

.hero-mini-card {
  right: -10px;
  top: 46px;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 18px;
}

.hero-product-card span,
.hero-mini-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-product-card strong,
.hero-mini-card strong {
  color: var(--ink);
  line-height: 1.1;
}

.hero-product-card strong {
  font-size: 20px;
}

.hero-mini-card strong {
  font-size: 16px;
}

.hero-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-product-progress {
  height: 7px;
  overflow: hidden;
  margin-top: 7px;
  border-radius: 999px;
  background: #ebe9f3;
}

.hero-product-progress span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--green));
}

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

.metric-strip article {
  min-height: 136px;
  padding: 24px;
  border: 1px solid rgba(233, 231, 239, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 34px rgba(27, 24, 58, .05);
}

.metric-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.4px;
}

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

.section {
  padding: 78px 0;
}

.split-section,
.visual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.solution-card,
.feature-card,
.steps-grid article,
.price-card,
.faq-grid article {
  border: 1px solid rgba(233, 231, 239, .92);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.solution-card {
  padding: 34px;
  border-radius: 30px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 14px;
  font-weight: 900;
}

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

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

.feature-footnote {
  max-width: 780px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(111, 82, 237, .16);
  border-radius: 18px;
  color: #4d495e;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.feature-card {
  min-height: 226px;
  padding: 28px;
  border-radius: var(--radius);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 22px;
  border-radius: 16px;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.feature-icon.purple { color: var(--purple); background: var(--purple-soft); }
.feature-icon.orange { color: #cc6c35; background: var(--orange-soft); }
.feature-icon.green { color: #258264; background: var(--green-soft); }
.feature-icon.blue { color: #447fcf; background: var(--blue-soft); }

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

.visual-card.warm {
  background: var(--orange-soft);
}

.visual-copy {
  max-width: 540px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #4d495e;
  font-size: 15px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

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

.steps-grid article {
  padding: 30px;
  border-radius: var(--radius);
}

.steps-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.pricing-section {
  padding-top: 64px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
}

.price-card.highlighted {
  position: relative;
  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: 700;
  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: 900;
}

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

.ai-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(111, 82, 237, .18);
  border-radius: 999px;
  color: var(--purple);
  background: linear-gradient(135deg, #f4f0ff, #effdf3);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .35px;
  white-space: nowrap;
  vertical-align: middle;
}

.ai-feature-badge::before {
  content: "✦";
  color: var(--green);
  font-size: 12px;
  line-height: 1;
}

.price-card li.has-ai {
  font-weight: 760;
}

.price-card.highlighted .ai-feature-badge {
  color: #22183d;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .9);
}

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

.button.full {
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-grid article {
  padding: 28px;
  border-radius: var(--radius);
}

.final-cta {
  margin-top: 36px;
  margin-bottom: 42px;
  padding: 56px;
  border-radius: 36px;
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

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

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a:last-child {
  color: var(--purple);
  font-weight: 850;
  text-decoration: none;
}

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

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

  .nav-actions {
    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-login,
  .nav-mobile-actions .nav-cta {
    flex: 1 1 145px;
  }

  .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-section,
  .split-section,
  .visual-section,
  .visual-section.reverse {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 760px;
  }

  .hero-product-card {
    left: 18px;
  }

  .hero-mini-card {
    right: 18px;
  }

  .metric-strip,
  .feature-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

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

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

  .metric-strip,
  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .hero-photo-card {
    border-radius: 24px;
    transform: none;
  }

  .hero-photo-card img {
    height: 360px;
    object-position: 55% center;
  }

  .hero-product-card,
  .hero-mini-card {
    position: static;
    margin-top: 12px;
  }

  .hero-product-card {
    width: 100%;
  }

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

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

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