:root {
  --bg: #FFFCF7;
  --bg-soft: #F7FAFB;
  --surface: #FFFFFF;
  --surface-soft: #F8FBFC;
  --text: #0B1B35;
  --text-muted: #51627A;
  --border: #DCE5EA;
  --border-strong: #C8D6DE;
  --gold: #D8A746;
  --gold-dark: #B9892D;
  --teal: #1698A7;
  --teal-dark: #087587;
  --teal-soft: #E8F8FA;
  --navy: #09182C;
  --navy-soft: #112842;
  --success: #22B8A7;
  --warning-bg: #FFF7E8;
  --warning-border: #E5B85C;
  --accent: var(--teal);
  --accent-soft: var(--teal-soft);
  --accent-dark: var(--teal-dark);
  --shadow: 0 26px 70px rgba(20, 38, 58, 0.13);
  --soft-shadow: 0 16px 42px rgba(20, 38, 58, 0.08);
  --radius: 18px;
  --max: 1760px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle, rgba(11, 27, 53, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 77% 22%, rgba(216, 167, 70, 0.11), transparent 28%),
    radial-gradient(circle at 65% 68%, rgba(22, 152, 167, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body[data-result-code="SH"] {
  --accent: #1698A7;
  --accent-soft: #E8F8FA;
  --accent-dark: #087587;
}

body[data-result-code="WC"] {
  --accent: #6B5DD3;
  --accent-soft: #F0EEFF;
  --accent-dark: #463AA8;
}

body[data-result-code="CLD"] {
  --accent: #18A7D8;
  --accent-soft: #E8F7FC;
  --accent-dark: #0B7297;
}

body[data-result-code="WIX"] {
  --accent: #116DFF;
  --accent-soft: #EAF2FF;
  --accent-dark: #0B4DB3;
}

body[data-result-code="VAL"] {
  --accent: #D79A22;
  --accent-soft: #FFF5DC;
  --accent-dark: #9C6A10;
}

body[data-result-code="MP"] {
  --accent: #2F9D62;
  --accent-soft: #EAF8EF;
  --accent-dark: #1F7748;
}

body[data-result-code="CU"] {
  --accent: #8B5DD7;
  --accent-soft: #F4EEFF;
  --accent-dark: #6338AD;
}

body[data-result-code="NR"] {
  --accent: #7C8797;
  --accent-soft: #F1F5F9;
  --accent-dark: #475569;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(100% - clamp(48px, 10vw, 160px), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 900px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid rgba(220, 229, 234, 0.85);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(22, 152, 167, 0.22);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,248,250,0.78)),
    var(--surface);
  box-shadow: 0 12px 24px rgba(8, 117, 135, 0.12);
  flex: 0 0 auto;
}

.brand-mark svg {
  display: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 8px;
  border: 3px solid var(--teal);
  border-right-color: transparent;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  right: 7px;
  top: 8px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 2px;
  transform: rotate(42deg);
}

.site-footer .brand-mark,
.result-hero .brand-mark,
.launch-loader-card .brand-mark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--teal-dark);
}

.mobile-hidden {
  display: flex;
}

.btn {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #E7BB61, var(--gold));
  color: #0B1B35;
  box-shadow: 0 16px 30px rgba(216, 167, 70, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #D9AA50, var(--gold-dark));
  color: #07111F;
}

.btn-secondary {
  background: transparent;
  border-color: transparent;
  color: var(--text);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--teal-dark);
}

.service-card-dark .btn-secondary {
  border-color: rgba(255,255,255,0.22);
  color: white;
  background: rgba(255,255,255,0.08);
}

.service-card-dark .btn-secondary:hover {
  border-color: rgba(255,255,255,0.38);
  color: white;
  background: rgba(255,255,255,0.12);
}

.btn-dark {
  background: var(--teal);
  color: white;
}

.btn-dark:hover {
  background: var(--teal-dark);
}

.lp-tilt,
.lp-magnetic {
  will-change: transform;
}

.lp-spotlight {
  position: relative;
  overflow: hidden;
}

.lp-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,255,255,0.16), transparent 64%);
  opacity: 0.85;
  transition: opacity 180ms ease;
}

.lp-spotlight > * {
  position: relative;
  z-index: 1;
}

.btn-full {
  width: 100%;
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(500px, 650px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 4.8vw, 82px);
  padding: clamp(74px, 9vh, 118px) 0 clamp(46px, 6vh, 70px);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  row-gap: clamp(18px, 3vh, 36px);
  padding-top: clamp(54px, 7vh, 86px);
  padding-bottom: clamp(34px, 5vh, 58px);
}

.home-hero .hero-copy {
  align-self: start;
}

.creator-badge {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(220, 229, 234, 0.95);
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 12px 28px rgba(20, 38, 58, 0.06);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.creator-badge img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.creator-badge strong {
  color: var(--text);
}

.hero h1,
.page-title {
  margin: 0;
  max-width: 680px;
  color: var(--text);
  font-size: clamp(52px, 4.55vw, 68px);
  line-height: 1.07;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p,
.lead {
  color: var(--text-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  margin: 28px 0 0;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}

.text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
}

.text-link .arrow {
  color: var(--teal);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 38, 58, 0.04);
}

.pill-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--teal);
}

.hero-visual {
  min-height: clamp(560px, 65vh, 690px);
  position: relative;
  display: grid;
  place-items: center end;
  transform: translateY(clamp(-92px, -7vh, -54px));
}

.home-hero .hero-visual {
  min-height: clamp(380px, 48vh, 540px);
  align-self: start;
  transform: translateY(clamp(-42px, -4vh, -24px));
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(86%, 760px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 167, 70, 0.16), rgba(22, 152, 167, 0.10));
  right: 2%;
  top: 4%;
  z-index: 0;
}

.launch-preview {
  width: min(100%, 680px);
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.home-hero .launch-preview {
  width: min(100%, 610px);
  gap: 12px;
}

.preview-card {
  border: 1px solid rgba(220, 229, 234, 0.96);
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  padding: clamp(20px, 2vw, 28px);
}

.home-hero .preview-card {
  padding: clamp(16px, 1.5vw, 22px);
}

.preview-quiz {
  margin-left: clamp(0px, 4vw, 56px);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-topline strong {
  color: var(--teal-dark);
}

.preview-progress {
  height: 8px;
  margin: 18px 0 22px;
  border-radius: 999px;
  background: #E3ECF1;
  overflow: hidden;
}

.preview-progress span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.preview-card h2,
.preview-card h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
}

.preview-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.home-hero .preview-card h2 {
  font-size: clamp(23px, 2.4vw, 31px);
}

.preview-card h3 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.home-hero .preview-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.preview-options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.home-hero .preview-options {
  gap: 8px;
  margin-top: 16px;
}

.preview-options span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 15px;
  background: var(--surface-soft);
  color: var(--text-muted);
  font-weight: 900;
}

.home-hero .preview-options span {
  min-height: 40px;
}

.preview-options span::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #CBD7DF;
  border-radius: 999px;
}

.preview-options .is-selected {
  border-color: color-mix(in srgb, var(--teal) 38%, var(--border));
  color: var(--text);
  background: linear-gradient(90deg, rgba(22,152,167,0.08), rgba(216,167,70,0.08));
}

.preview-options .is-selected::after {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 4px white;
  background: var(--teal);
}

.preview-result {
  width: min(86%, 470px);
  margin-top: -6px;
  margin-left: auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: white;
}

.preview-result p {
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--teal) 70%, white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-result h3 {
  color: white;
}

.preview-result ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero .preview-result ul {
  gap: 8px;
  margin-top: 12px;
}

.preview-result li {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.preview-result li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.preview-method {
  width: min(78%, 390px);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -4px;
  padding: 14px 16px;
  box-shadow: var(--soft-shadow);
}

.preview-method img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.preview-method span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.hero-placeholder {
  width: min(112%, 940px);
  aspect-ratio: 1.36;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 1;
  transform: translateX(2%);
}

.hero-placeholder::before {
  content: "";
  position: absolute;
  width: 34%;
  aspect-ratio: 1;
  left: 4%;
  top: 34%;
  border-radius: 999px;
  background: rgba(22, 152, 167, 0.15);
  filter: blur(0.5px);
}

.hero-placeholder::after {
  content: "";
  position: absolute;
  width: 82%;
  height: 28px;
  right: 2%;
  bottom: 12%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(202, 219, 227, 0.9), rgba(142, 169, 183, 0.56));
  box-shadow: 0 22px 38px rgba(17, 40, 66, 0.16);
}

.placeholder-panel {
  position: absolute;
  right: 4%;
  top: 16%;
  width: 76%;
  height: 58%;
  border: clamp(12px, 1.3vw, 20px) solid #0B1A2D;
  border-bottom-width: clamp(22px, 2vw, 32px);
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(135deg, #F5FBFD, #FFFFFF 45%, #EEF7F9);
  box-shadow: 0 34px 90px rgba(16, 33, 50, 0.25);
  z-index: 1;
  transform: perspective(900px) rotateY(-6deg) rotateZ(-2.6deg);
}

.placeholder-panel::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -48px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #DAE4EA, #AFC3CF);
}

.placeholder-line {
  position: absolute;
  right: 18%;
  height: 10px;
  border-radius: 999px;
  background: #DCE5EA;
  z-index: 3;
  transform: rotate(-2.6deg);
}

.placeholder-line-main {
  top: 31%;
  width: 38%;
  background: linear-gradient(90deg, var(--teal) 0 42%, #DCE5EA 42%);
}

.placeholder-line-short {
  top: 42%;
  width: 44%;
  opacity: 0.85;
}

.placeholder-line-mid {
  top: 51%;
  width: 42%;
  opacity: 0.75;
}

.placeholder-stat {
  position: absolute;
  width: clamp(104px, 10vw, 150px);
  min-height: clamp(100px, 9vw, 138px);
  border: 1px solid rgba(220, 229, 234, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, rgba(22, 152, 167, 0.22), rgba(216, 167, 70, 0.16)) border-box;
  box-shadow: var(--soft-shadow);
  z-index: 4;
}

.placeholder-stat::before,
.placeholder-stat::after {
  content: "";
  position: absolute;
  left: 22%;
  border-radius: 999px;
  background: #0B1B35;
  opacity: 0.18;
}

.placeholder-stat::before {
  top: 34%;
  width: 35%;
  height: 22%;
}

.placeholder-stat::after {
  top: 66%;
  width: 56%;
  height: 8px;
}

.placeholder-stat-one {
  left: 17%;
  top: 17%;
}

.placeholder-stat-two {
  right: 0;
  top: 36%;
}

.placeholder-stat-three {
  left: 39%;
  bottom: 4%;
}

.placeholder-orbit {
  position: absolute;
  left: 18%;
  right: 8%;
  bottom: 0;
  height: 104px;
  border-bottom: 3px solid rgba(22, 152, 167, 0.34);
  border-radius: 0 0 50% 50%;
  z-index: 0;
}

.placeholder-orbit::before,
.placeholder-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(22, 152, 167, 0.13);
}

.placeholder-orbit::before {
  left: 32%;
  bottom: -11px;
  width: 18px;
  height: 18px;
}

.placeholder-orbit::after {
  left: 68%;
  bottom: -17px;
  width: 34px;
  height: 34px;
}

.visual-card {
  width: min(100%, 760px);
  min-height: 610px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.desk-scene {
  min-height: 510px;
  border-radius: 0;
  background: transparent;
  position: relative;
  display: grid;
  place-items: center end;
  overflow: visible;
}

.desk-scene::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 30px;
  right: 3%;
  bottom: 41px;
  border-radius: 999px;
  background: rgba(15, 29, 45, 0.14);
  filter: blur(12px);
}

.desk-scene::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: 92px;
  width: 92px;
  height: 190px;
  border-radius: 0 0 14px 14px;
  background:
    radial-gradient(ellipse at 40% 24%, rgba(88, 142, 116, 0.82) 0 18%, transparent 19%),
    radial-gradient(ellipse at 70% 36%, rgba(95, 158, 126, 0.78) 0 17%, transparent 18%),
    radial-gradient(ellipse at 35% 50%, rgba(103, 155, 131, 0.76) 0 16%, transparent 17%),
    linear-gradient(#D7E4EA 0 0) bottom / 100% 48px no-repeat;
  opacity: 0.92;
}

.laptop {
  width: min(84%, 660px);
  aspect-ratio: 1.65;
  border: 18px solid #0B1A2D;
  border-bottom-width: 30px;
  border-radius: 20px 20px 13px 13px;
  background: linear-gradient(135deg, #F3FBFD, #FFFFFF 42%, #EEF7F9);
  box-shadow: 0 34px 90px rgba(16, 33, 50, 0.28);
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  transform: perspective(1000px) rotateY(-7deg) rotateZ(-3.2deg);
}

.laptop::after {
  content: "";
  position: absolute;
  width: 118%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #DAE4EA, #AFC3CF);
  bottom: -50px;
  left: -9%;
  box-shadow: 0 18px 34px rgba(21, 38, 56, 0.14);
}

.screen-ui {
  width: 78%;
  max-width: 430px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  padding: 28px;
  box-shadow: 0 20px 46px rgba(15, 31, 48, 0.12);
}

.screen-ui strong {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}

.screen-step {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.screen-line {
  height: 7px;
  border-radius: 999px;
  background: #E1E9EE;
  margin: 10px 0 24px;
  position: relative;
  overflow: hidden;
}

.screen-line.gold {
  width: 100%;
  background: #E1E9EE;
}

.screen-line.gold::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  border-radius: inherit;
  background: var(--teal);
}

.screen-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.screen-tile {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  box-shadow: 0 4px 10px rgba(20, 38, 58, 0.04);
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.screen-tile::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.screen-tile span {
  color: var(--teal);
  font-weight: 900;
}

.screen-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.screen-actions span:last-child {
  min-height: 42px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #1EA5B6, var(--teal-dark));
  color: white;
  box-shadow: 0 12px 26px rgba(22, 152, 167, 0.22);
}

.visual-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-stat {
  position: absolute;
  width: 180px;
  min-height: 134px;
  border: 1px solid rgba(220, 229, 234, 0.95);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.visual-stat-questions {
  left: 5%;
  top: 13%;
}

.visual-stat-paths {
  right: 0;
  top: 32%;
}

.visual-stat-plan {
  left: 30%;
  bottom: 6%;
}

.visual-stat strong {
  display: inline-block;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  vertical-align: top;
}

.visual-stat span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.visual-stat-icon {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(22, 152, 167, 0.78);
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-right: 14px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
  vertical-align: top;
}

.orbit-line {
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: 12px;
  height: 86px;
  border-bottom: 3px solid rgba(22, 152, 167, 0.34);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.orbit-line span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(22, 152, 167, 0.13);
}

.orbit-line span:nth-child(1) {
  left: 24%;
  bottom: -11px;
}

.orbit-line span:nth-child(2) {
  left: 64%;
  bottom: -14px;
  width: 34px;
  height: 34px;
}

.orbit-line span:nth-child(2)::after {
  content: "✓";
  color: white;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.orbit-line span:nth-child(3) {
  right: 5%;
  bottom: 15px;
}

.section {
  padding: clamp(52px, 8vw, 92px) 0;
}

.section-tight {
  padding: 44px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.section h2,
.card h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-desc {
  color: var(--text-muted);
  max-width: 570px;
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: 20px;
}

.card p {
  color: var(--text-muted);
  margin: 0;
}

.feature-card {
  min-height: 190px;
}

.feature-icon,
.result-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--teal);
  background: var(--teal-soft);
}

.feature-icon svg,
.result-icon svg {
  width: 22px;
  height: 22px;
}

.result-mini {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-mini .result-icon {
  margin-bottom: 0;
}

.result-mini ul,
.service-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.result-mini li,
.service-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.result-mini li::before,
.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
}

.result-mini .btn {
  margin-top: auto;
}

.brand-marquee {
  width: min(100%, 1260px);
  overflow: hidden;
  padding: 2px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-strip {
  width: max-content;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 0;
  animation: brandRail 42s linear infinite;
}

.brand-marquee:hover .brand-strip {
  animation-play-state: paused;
}

.brand-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  padding: 0 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(20, 38, 58, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.brand-chip::before {
  content: "";
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand-color, var(--teal));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-color, var(--teal)) 16%, transparent);
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-color, var(--teal));
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand-color, var(--teal)) 14%, transparent);
}

.brand-logo-wide {
  width: 42px;
  border-radius: 999px;
  font-size: 11px;
}

.brand-logo-img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 0 transparent);
}

.brand-chip .brand-logo-wide {
  width: 46px;
  height: 24px;
}

.brand-chip.brand-speedy .brand-logo-wide {
  width: 54px;
}

.brand-chip.brand-econt .brand-logo-wide {
  width: 50px;
}

.brand-chip.brand-klaviyo .brand-logo-wide {
  width: 56px;
  color: var(--text);
}

.brand-chip.brand-cloudcart .brand-logo-wide,
.brand-chip.brand-wix .brand-logo-wide {
  width: 58px;
}

.brand-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(20, 38, 58, 0.09);
  border-color: color-mix(in srgb, var(--brand-color, var(--teal)) 36%, var(--border));
}

.brand-shopify { --brand-color: #95BF47; }
.brand-woo { --brand-color: #7F54B3; }
.brand-cloudcart { --brand-color: #18A7D8; }
.brand-wix { --brand-color: #116DFF; }
.brand-stripe { --brand-color: #635BFF; }
.brand-mypos { --brand-color: #E93B44; }
.brand-meta { --brand-color: #1877F2; }
.brand-klaviyo { --brand-color: #111827; }
.brand-speedy { --brand-color: #E32B2B; }
.brand-econt { --brand-color: #F2B705; }
.brand-googleads { --brand-color: #4285F4; }
.brand-tiktok { --brand-color: #111827; }
.brand-paypal { --brand-color: #003087; }

.hero-proof {
  grid-column: 1 / -1;
  width: min(100%, 1260px);
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: clamp(-56px, -5vh, -28px);
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.brand-context {
  width: min(100%, 820px);
  margin: 0 auto;
  justify-self: center;
  text-align: center;
}

.brand-context .section-kicker {
  width: fit-content;
  margin: 0 auto 10px;
  text-align: center;
}

.brand-context h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  text-wrap: balance;
}

.brand-context h2 span {
  display: block;
}

.brand-context p:not(.section-kicker) {
  margin: 12px auto 0;
  max-width: 690px;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 700;
  text-wrap: balance;
}

.proof-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-highlights span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(220, 229, 234, 0.92);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  padding: 0 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(20, 38, 58, 0.05);
}

.proof-highlights span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(22, 152, 167, 0.10);
}

.proof-highlights strong {
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

.testimonial-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  border: 1px solid color-mix(in srgb, var(--case-accent, var(--teal)) 22%, var(--border));
  border-radius: 16px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--case-accent, var(--teal)) 7%, white) 0%, rgba(255,255,255,0.96) 36%),
    rgba(255,255,255,0.96);
  padding: 20px;
  box-shadow: 0 16px 38px rgba(20, 38, 58, 0.07);
  display: grid;
  gap: 16px;
  min-height: 318px;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--case-accent, var(--teal)), color-mix(in srgb, var(--case-accent, var(--teal)) 24%, white));
}

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  top: -52px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-accent, var(--teal)) 10%, transparent);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--case-accent, var(--teal)) 38%, var(--border));
  box-shadow: 0 22px 48px rgba(20, 38, 58, 0.10);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.testimonial-source {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-result {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-accent, var(--teal)) 13%, white);
  color: color-mix(in srgb, var(--case-accent, var(--teal)) 78%, var(--text));
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.testimonial-result::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--case-accent, var(--teal));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--case-accent, var(--teal)) 15%, transparent);
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.testimonial-checks {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.testimonial-checks li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.testimonial-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--case-accent, var(--teal));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--case-accent, var(--teal)) 13%, transparent);
}

.testimonial-checks strong {
  color: var(--text);
  font-weight: 900;
}

.testimonial-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.testimonial-facts div {
  border: 1px solid rgba(220, 229, 234, 0.85);
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 10px 12px;
}

.testimonial-facts dt {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-facts dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-person {
  border-top: 1px solid color-mix(in srgb, var(--case-accent, var(--teal)) 16%, var(--border));
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.testimonial-person strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
}

.testimonial-person span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.testimonial-person .avatar {
  color: white;
}

.avatar-teal { background: var(--teal); }
.avatar-gold { background: var(--gold-dark); }
.avatar-indigo { background: #6B5DD3; }
.avatar-green { background: #2F9D62; }
.avatar-lime { background: #7DAF3B; color: white; }

.result-sh { --case-accent: #95BF47; }
.result-wc { --case-accent: #6B5DD3; }
.result-cld { --case-accent: #18A7D8; }
.result-wix { --case-accent: #116DFF; }
.result-val { --case-accent: #D79A22; }
.result-mp { --case-accent: #2F9D62; }

.case-sh { --case-accent: #95BF47; }
.case-wc { --case-accent: #6B5DD3; }
.case-cld { --case-accent: #18A7D8; }
.case-wix { --case-accent: #116DFF; }
.case-val { --case-accent: #D79A22; }
.case-mp { --case-accent: #2F9D62; }

.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--text-muted);
  font-weight: 800;
}

.live-counter strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(22, 152, 167, 0.42);
  animation: pulseDot 1.8s ease-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(310px, calc(100vw - 48px));
  min-height: 74px;
  border: 1px solid rgba(220, 229, 234, 0.9);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--soft-shadow);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 6px 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease, bottom 240ms ease;
}

.sticky-cta.is-visible ~ .activity-widget {
  bottom: 112px;
}

.activity-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-widget.is-switching {
  opacity: 0;
  transform: translateY(14px);
}

.activity-widget strong {
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-widget small {
  grid-column: 2;
  color: var(--text-muted);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes brandRail {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  width: min(720px, calc(100vw - 32px));
  transform: translate(-50%, 120%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(220, 229, 234, 0.9);
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  padding: 12px;
  box-shadow: var(--shadow);
  transition: opacity 240ms ease, transform 240ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sticky-cta.is-hidden-by-footer {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%);
}

.sticky-cta span {
  padding-left: 10px;
  font-weight: 900;
}

.result-sticky-cta {
  display: none;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(22, 152, 167, 0.42); }
  72%, 100% { box-shadow: 0 0 0 10px rgba(22, 152, 167, 0); }
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  border-radius: 2px;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(0);
  animation: confettiBurst var(--duration, 2100ms) cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms) forwards;
}

@keyframes confettiBurst {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rot));
  }
}

.site-footer {
  background: #071426;
  color: white;
  padding: 26px 0;
  margin-top: 0;
}

.site-footer .brand {
  color: white;
}

.footer-product {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 900;
}

.footer-product img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.footer-product strong {
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.quiz-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(22, 152, 167, 0.07), transparent 34%),
    linear-gradient(315deg, rgba(216, 167, 70, 0.1), transparent 30%),
    var(--bg);
}

.quiz-shell {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.quiz-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quiz-top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px clamp(18px, 4vw, 32px);
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.progress-track {
  height: 9px;
  border-radius: 999px;
  background: #E3EBF0;
  overflow: hidden;
  margin-top: 12px;
}

.progress-dots {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.progress-dots span {
  height: 7px;
  border-radius: 999px;
  background: #E3EBF0;
  transition: background 180ms ease, transform 180ms ease;
}

.progress-dots span.done {
  background: var(--teal);
}

.progress-dots span.current {
  background: var(--gold);
  transform: scaleY(1.45);
}

.progress-bar {
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 220ms ease;
}

.quiz-body {
  padding: clamp(28px, 5vw, 54px);
}

.quiz-panel.is-sliding[data-direction="next"] .quiz-body {
  animation: questionInNext 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-panel.is-sliding[data-direction="prev"] .quiz-body {
  animation: questionInPrev 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes questionInNext {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes questionInPrev {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}

.launch-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle, rgba(11, 27, 53, 0.04) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(22, 152, 167, 0.10), transparent 34%),
    linear-gradient(315deg, rgba(216, 167, 70, 0.13), transparent 35%),
    rgba(255,252,247,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: loaderEnter 220ms ease both;
}

.launch-loader.is-leaving {
  animation: loaderLeave 260ms ease both;
}

.launch-loader-card {
  width: min(100%, 520px);
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  gap: 22px;
}

.launch-loader-card .brand-mark {
  margin: 0 auto;
}

.launch-loader h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
}

.loader-steps {
  display: grid;
  gap: 12px;
}

.loader-step {
  min-height: 54px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  padding: 12px 14px;
  color: var(--text-muted);
  font-weight: 900;
}

.loader-step span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid var(--border-strong);
}

.loader-step p {
  margin: 0;
}

.loader-step.is-active {
  color: var(--text);
  border-color: rgba(22, 152, 167, 0.36);
}

.loader-step.is-active span {
  border-color: var(--teal);
  background: var(--teal);
  animation: pulseDot 1.1s ease-out infinite;
}

.loader-step.is-done span {
  display: grid;
  place-items: center;
  border-color: var(--teal);
  background: var(--teal);
}

.loader-step.is-done span::before {
  content: "✓";
  color: white;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.loader-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #E3EBF0;
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform-origin: left center;
  animation: loaderProgress 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loaderProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes loaderEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes loaderLeave {
  to { opacity: 0; transform: scale(0.98); }
}

.question-count {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.question-count span:first-child {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 152, 167, 0.25);
  border-radius: 999px;
  background: var(--teal-soft);
  padding: 0 12px;
}

.quiz-title {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 760px;
}

.quiz-description {
  color: var(--text-muted);
  margin: 14px 0 28px;
  max-width: 720px;
  font-size: 18px;
}

.options {
  display: grid;
  gap: 14px;
}

.option-card {
  width: 100%;
  min-height: 72px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  text-align: left;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(20,38,58,0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.option-card::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.option-card:hover,
.option-card:focus-visible {
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(20,38,58,0.08);
  outline: none;
}

.option-card.selected {
  border-color: var(--teal);
  background: linear-gradient(180deg, #F1FCFD, #FFFFFF);
  box-shadow: 0 14px 28px rgba(22, 152, 167, 0.14);
}

.option-card.selected::after {
  border-color: var(--teal);
  background: radial-gradient(circle, var(--teal) 0 45%, transparent 48%);
}

.option-card.multi::after {
  border-radius: 5px;
}

.option-card.multi.selected::after {
  background:
    linear-gradient(135deg, transparent 0 38%, white 39% 48%, transparent 49%),
    linear-gradient(45deg, transparent 0 42%, white 43% 52%, transparent 53%),
    var(--teal);
}

.option-dot {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-weight: 900;
  background: var(--surface-soft);
}

.option-card.selected .option-dot {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.option-copy {
  min-width: 0;
}

.option-label {
  display: block;
  font-weight: 900;
  line-height: 1.3;
}

.option-feedback {
  margin-top: 16px;
  border: 1px solid rgba(216, 167, 70, 0.45);
  background: #FFF8EA;
  color: #3D3423;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(216, 167, 70, 0.12);
}

.option-feedback strong {
  color: var(--gold-dark);
}

.option-feedback ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.option-feedback li + li {
  margin-top: 6px;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.quiz-nav .btn {
  min-width: 144px;
}

.ghost-btn {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.ghost-btn:hover {
  color: var(--teal-dark);
}

.result-shell {
  padding: 34px 0 58px;
}

.result-hero {
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, transparent), transparent 34%),
    linear-gradient(135deg, var(--navy), #0F2740);
  color: white;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.result-hero-copy {
  position: relative;
  min-width: 0;
}

.result-illustration {
  width: min(100%, 680px);
  color: var(--accent);
  margin-bottom: 26px;
}

.illo {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,0.22));
}

.illo-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.illo-fill {
  fill: currentColor;
}

.illo-fill-soft {
  fill: color-mix(in srgb, currentColor 18%, white);
  opacity: 0.96;
}

.platform-logo {
  max-width: 620px;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,0.24));
}

.platform-logo-card {
  width: min(100%, 620px);
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 44%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 42%),
    linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02) 64%, rgba(255,255,255,0));
  color: #fff;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.platform-logo-emblem {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.96);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.70), 0 18px 44px rgba(0,0,0,0.24);
}

.platform-logo-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: saturate(1.12) contrast(1.08);
}

.platform-logo-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.platform-logo-copy small {
  color: color-mix(in srgb, var(--accent) 76%, white);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-logo-copy strong {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.platform-logo-woo {
  width: min(100%, 650px);
}

.platform-logo-woo .platform-logo-emblem {
  width: 148px;
  background: #fff;
  border-color: color-mix(in srgb, #96588A 38%, white);
}

.platform-logo-woo img {
  width: 126px;
  height: 76px;
  filter: saturate(1.25) contrast(1.18);
}

.platform-logo-woo .platform-logo-copy small {
  color: #96588A;
}

.platform-logo-woo .platform-logo-copy strong {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
}

.platform-logo-cloudcart {
  width: min(100%, 620px);
}

.platform-logo-cloudcart .platform-logo-emblem,
.platform-logo-wix .platform-logo-emblem {
  width: 138px;
  background: #fff;
}

.platform-logo-cloudcart img,
.platform-logo-wix img {
  width: 112px;
  height: 58px;
  object-fit: contain;
  filter: saturate(1.2) contrast(1.2);
}

.platform-logo-cloudcart .platform-logo-copy strong,
.platform-logo-wix .platform-logo-copy strong {
  font-size: clamp(30px, 3.6vw, 42px);
}

.platform-logo-shopify .platform-logo-copy small,
.platform-logo-shopify .platform-logo-copy small {
  color: #5E8E3E;
}

.platform-logo-shopify .platform-logo-copy strong {
  color: #fff;
}

.platform-wordmark {
  fill: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-shopify-bag {
  fill: #95BF47;
}

.logo-shopify-handle {
  fill: none;
  stroke: #5E8E3E;
  stroke-width: 7;
  stroke-linecap: round;
}

.logo-shopify-s {
  fill: #fff;
}

.logo-woo-bubble,
.logo-woo-tail {
  fill: #7F54B3;
}

.logo-woo-text {
  fill: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
}

.platform-badge-bg {
  fill: color-mix(in srgb, var(--accent) 18%, white);
  opacity: 0.95;
}

.illo-float {
  animation: illoFloat 4.5s ease-in-out infinite;
}

.illo-sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: sparklePulse 1.8s ease-in-out infinite;
}

.illo-delay {
  animation-delay: 420ms;
}

.illo-wc-top {
  animation: blockFloat 3.8s ease-in-out infinite;
}

.illo-gear-a,
.illo-gear-b {
  transform-box: fill-box;
  transform-origin: center;
}

.illo-gear-a {
  animation: gearSpin 16s linear infinite;
}

.illo-gear-b {
  animation: gearSpinReverse 11s linear infinite;
}

.illo-sprout {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: sproutBreath 3.6s ease-in-out infinite;
}

.result-label {
  color: color-mix(in srgb, var(--accent) 70%, white);
  font-weight: 900;
  margin: 0 0 8px;
}

.result-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

body[data-result-code="WC"] .result-hero h1,
body[data-result-code="CLD"] .result-hero h1,
body[data-result-code="WIX"] .result-hero h1,
body[data-result-code="VAL"] .result-hero h1,
body[data-result-code="CU"] .result-hero h1,
body[data-result-code="NR"] .result-hero h1 {
  font-size: clamp(40px, 5.4vw, 66px);
}

.result-hero p {
  color: rgba(255,255,255,0.78);
}

.confidence-chip {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.result-hero .btn-secondary {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.24);
  color: white;
}

.result-hero .btn-secondary:hover,
.result-hero .btn-secondary:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.38);
}

.share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.share-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.share-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: rgba(255,255,255,0.09);
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.share-icon:hover,
.share-icon:focus-visible {
  background: color-mix(in srgb, var(--accent) 30%, rgba(255,255,255,0.08));
  border-color: color-mix(in srgb, var(--accent) 54%, white);
  outline: none;
}

.btn:disabled,
.share-icon[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none !important;
}

.share-icon[aria-disabled="true"] {
  pointer-events: none;
}

.result-score-panel {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.result-score-panel .section-kicker {
  color: color-mix(in srgb, var(--accent) 70%, white);
}

.score-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
}

.score-big span {
  font-size: clamp(44px, 7vw, 66px);
  line-height: 1;
  font-weight: 900;
}

.score-big small {
  color: rgba(255,255,255,0.68);
  font-weight: 900;
}

.score-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.score-row {
  display: grid;
  gap: 6px;
}

.score-row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  font-weight: 900;
}

.score-row.active .score-row-top {
  color: white;
}

.score-line {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.13);
}

.score-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left center;
  animation: growBar 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.score-row.active .score-line {
  background: rgba(255,255,255,0.22);
}

.score-row.active .score-line span {
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 30%, var(--gold)));
}

.score-rule {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  padding: 16px;
  display: grid;
  gap: 6px;
}

.score-rule span {
  color: color-mix(in srgb, var(--accent) 70%, white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-rule strong {
  color: white;
  line-height: 1.25;
}

.score-alt-link {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.score-alt-link:hover,
.score-alt-link:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 56%, white);
  background: color-mix(in srgb, var(--accent) 24%, rgba(255,255,255,0.08));
  outline: none;
}

.score-rule-soft {
  background: rgba(255,255,255,0.045);
}

.score-signals {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.score-signals p {
  margin: 0;
  color: color-mix(in srgb, var(--accent) 70%, white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-signals span {
  display: block;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 800;
}

@keyframes growBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes illoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes sparklePulse {
  0%, 100% { transform: scale(0.78); opacity: 0.48; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes blockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes gearSpin {
  to { transform: rotate(360deg); }
}

@keyframes gearSpinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes sproutBreath {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

.result-badge {
  min-height: 210px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.result-badge strong {
  font-size: 36px;
  line-height: 1.05;
}

.result-badge span {
  color: rgba(255,255,255,0.68);
}

.result-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.result-content {
  display: grid;
  gap: 18px;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benchmark-tile {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.benchmark-tile::before {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 120px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(216,167,70,0.12));
  filter: blur(18px);
}

.benchmark-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20,38,58,0.11);
}

.benchmark-tile span,
.benchmark-tile strong,
.benchmark-tile p {
  position: relative;
}

.benchmark-tile span {
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.benchmark-tile strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
}

.pitfall-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pitfall-item {
  border: 1px solid rgba(229, 184, 92, 0.52);
  border-radius: 16px;
  background: var(--warning-bg);
  padding: 16px;
}

.pitfall-item strong {
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}

.pitfall-item p {
  margin: 0;
  color: #59452A;
}

.result-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.reason-grid {
  display: grid;
  gap: 10px;
}

.reason-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid rgba(220, 229, 234, 0.8);
}

.reason-number {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--accent-dark);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.diagnostic-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 16px;
}

.diagnostic-item span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.diagnostic-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

.diagnostic-item p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.timeline-item:hover {
  transform: translateX(2px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}

.timeline-item span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
}

.note {
  border: 1px solid var(--warning-border);
  background: var(--warning-bg);
  border-radius: 18px;
  padding: 22px;
}

.note-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 19px;
}

.stack-card {
  display: grid;
  gap: 16px;
}

.stack-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: var(--surface-soft);
}

.stack-item-primary {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  background:
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, white), rgba(255,255,255,0.96));
  box-shadow: 0 18px 42px rgba(8, 18, 32, 0.08);
}

.stack-item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 8px;
}

.stack-category {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-rank {
  min-width: 46px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 950;
}

.email-card {
  scroll-margin-top: 110px;
  padding: 22px;
}

[data-glass="primary"],
.email-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(22, 152, 167, 0.18), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(216, 167, 70, 0.18), transparent 32%),
    rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

[data-glass="primary"]::before,
.email-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.38), transparent 42%);
}

[data-glass="primary"] > *,
.email-card > * {
  position: relative;
  z-index: 1;
}

.email-card.is-highlighted {
  border-color: rgba(22, 152, 167, 0.72);
  box-shadow: 0 0 0 4px rgba(22, 152, 167, 0.13), var(--shadow);
}

.email-card .section-kicker {
  margin-bottom: 8px;
}

.email-card h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

.email-card p {
  margin: 10px 0 0;
}

.email-benefits {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.email-benefits span {
  min-height: 42px;
  border: 1px solid rgba(220, 229, 234, 0.84);
  border-radius: 14px;
  background: rgba(255,255,255,0.68);
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.email-benefits strong {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-size: 12px;
  line-height: 1;
}

.email-form {
  margin-top: 16px;
  gap: 10px;
}

.email-card .input {
  min-height: 48px;
}

.email-card .check-row {
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.35;
}

.email-card .btn[type="submit"] {
  margin-top: 2px;
  min-height: 50px;
}

.deliverable-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.deliverable-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.deliverable-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-soft);
}

.admin-page {
  background: var(--bg);
}

.admin-shell {
  padding: 34px 0 70px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: end;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--soft-shadow);
  padding: clamp(24px, 4vw, 42px);
}

.admin-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.admin-hero p {
  color: var(--text-muted);
  max-width: 680px;
}

.admin-token-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.admin-token-card label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.admin-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.admin-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.admin-stat {
  min-height: 132px;
  display: grid;
  align-content: space-between;
}

.admin-stat span {
  color: var(--text-muted);
  font-weight: 900;
}

.admin-stat strong {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.admin-bars {
  display: grid;
  gap: 13px;
  margin-top: 14px;
}

.admin-bar {
  display: grid;
  gap: 7px;
}

.admin-bar div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  font-size: 14px;
}

.admin-bar span {
  color: var(--text-muted);
}

.admin-bar i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #E3EBF0;
  overflow: hidden;
}

.admin-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform-origin: left center;
  animation: growBar 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.admin-leads-card {
  margin-top: 18px;
}

.admin-leads {
  display: grid;
  gap: 10px;
}

.admin-lead {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
  overflow: hidden;
}

.admin-lead summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.admin-lead summary::-webkit-details-marker {
  display: none;
}

.admin-lead summary small,
.admin-lead summary > span:not(:first-child) {
  color: var(--text-muted);
  font-weight: 800;
}

.admin-lead summary small {
  display: block;
}

.admin-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark) !important;
  padding: 0 11px;
  white-space: nowrap;
}

.admin-chip.result-SH {
  background: #E8F8FA;
  color: #087587 !important;
}

.admin-chip.result-WC {
  background: #F0EEFF;
  color: #463AA8 !important;
}

.admin-chip.result-CLD {
  background: #E8F7FC;
  color: #0B7297 !important;
}

.admin-chip.result-WIX {
  background: #EAF2FF;
  color: #0B4DB3 !important;
}

.admin-chip.result-VAL {
  background: #FFF5DC;
  color: #9C6A10 !important;
}

.admin-chip.result-MP {
  background: #EAF8EF;
  color: #1F7748 !important;
}

.admin-chip.result-CU {
  background: #F4EEFF;
  color: #6338AD !important;
}

.admin-chip.result-NR {
  background: #F1F5F9;
  color: #475569 !important;
}

.admin-lead-body {
  border-top: 1px solid var(--border);
  padding: 16px;
}

.admin-lead-body ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.admin-lead-body li span {
  color: var(--text-muted);
  display: block;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--text);
}

.input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  color: var(--text);
  font-size: 16px;
}

.input:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-color: var(--accent);
}

.check-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-status {
  min-height: 22px;
  color: var(--text-muted);
  font-weight: 700;
}

.form-status.error {
  color: #B42318;
}

.form-status.success {
  color: var(--success);
}

.service-card-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: white;
  border-color: rgba(255,255,255,0.08);
}

[data-service-ctas] {
  align-items: stretch;
}

[data-service-ctas] .card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

[data-service-ctas] .service-card-dark {
  color: white;
}

[data-service-ctas] .service-card-dark h3,
[data-service-ctas] .service-card-dark .price {
  color: white;
}

[data-service-ctas] .card p {
  margin-bottom: 22px;
}

[data-service-ctas] .card .service-cost-note {
  margin: -2px 0 18px;
}

[data-service-ctas] .card .btn {
  margin-top: auto;
  white-space: normal;
  text-align: center;
}

.service-card-dark p,
.service-card-dark li {
  color: rgba(255,255,255,0.74);
}

.service-cost-note,
.cost-footnote {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.service-card-dark .service-cost-note,
.service-card-dark .cost-footnote {
  color: rgba(255,255,255,0.62);
}

.cost-footnote {
  max-width: 760px;
  margin: 14px 0 0;
}

.price {
  font-size: clamp(40px, 5.5vw, 58px);
  line-height: 1;
  font-weight: 900;
  margin: 18px 0 6px;
}

.price-note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-muted);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-card-dark .price-note {
  color: rgba(255,255,255,0.64);
}

.legal-content {
  display: grid;
  gap: 18px;
  padding-top: 42px;
  padding-bottom: 56px;
}

.legal-content h1 {
  margin: 0 0 8px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
}

.legal-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 24px;
  width: min(430px, calc(100% - 32px));
  z-index: 100;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(7, 20, 38, 0.94);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}

.cookie-inner p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.cookie-inner h3 {
  color: white;
}

.cookie-actions {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 16px;
}

.core-version-badge {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 95;
  padding: 5px 8px;
  border: 1px solid rgba(11, 27, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(11, 27, 53, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(11, 27, 53, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.text-muted {
  color: var(--text-muted);
}

.price-summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(22, 152, 167, 0.24);
  border-radius: 999px;
  background: rgba(22, 152, 167, 0.09);
  color: var(--navy);
  font-weight: 900;
}

.mt-0 {
  margin-top: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .lp-tilt,
  .lp-magnetic {
    transform: none !important;
  }

  .brand-strip {
    animation: none !important;
  }
}

@media (max-width: 1240px) and (min-width: 1061px) {
  .hero {
    grid-template-columns: minmax(440px, 540px) minmax(0, 1fr);
    gap: clamp(30px, 3.4vw, 44px);
  }

  .hero h1,
  .page-title {
    max-width: 540px;
    font-size: clamp(50px, 4.7vw, 58px);
  }

  .hero p,
  .lead {
    max-width: 520px;
  }

  .hero-visual {
    min-height: 530px;
    transform: translateY(-48px);
  }

  .launch-preview {
    width: min(100%, 600px);
  }

  .hero-placeholder {
    width: min(108%, 620px);
  }

}

@media (max-width: 1060px) {
  .hero,
  .result-hero,
  .result-main,
  .admin-hero,
  .admin-panels {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
    transform: none;
    place-items: center;
  }

  .launch-preview {
    width: min(100%, 720px);
  }

  .preview-quiz {
    margin-left: 0;
  }

  .result-side {
    position: static;
  }

  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-row,
  .benchmark-grid {
    grid-template-columns: 1fr;
  }

  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-lead summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body[data-page="result"] {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .container,
  .narrow {
    width: min(100% - 32px, var(--max));
  }

  .mobile-hidden {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-title {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-actions .btn,
  .btn.mobile-full {
    width: 100%;
  }

  .text-link {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .home-hero .hero-visual {
    transform: none;
    margin-top: 12px;
  }

  .home-hero .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .home-hero .trust-row .pill {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .launch-preview {
    gap: 12px;
  }

  .preview-result,
  .preview-method {
    width: 100%;
    margin-left: 0;
  }

  .visual-card {
    min-height: 410px;
  }

  .desk-scene {
    min-height: 340px;
  }

  .visual-stat {
    width: 150px;
    min-height: 110px;
    padding: 16px;
  }

  .visual-stat strong {
    font-size: 28px;
  }

  .grid-3,
  .grid-5,
  .diagnostic-grid,
  .testimonial-row,
  .benchmark-grid,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .testimonial-row {
    gap: 14px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 18px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  .testimonial-facts {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 0;
  }

  .activity-widget {
    display: none;
  }

  .sticky-cta {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .sticky-cta span {
    padding-left: 0;
    text-align: center;
  }

  .result-sticky-cta.is-ready {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 85;
    display: block;
    border-radius: 16px;
  }

  .result-sticky-copy {
    display: none;
  }

  .result-sticky-cta .btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    border-radius: 16px;
    padding: 0 18px;
    font-size: 15px;
    box-shadow: 0 18px 44px rgba(187, 136, 38, 0.36);
    white-space: nowrap;
  }

  .section-header {
    display: block;
  }

  .brand-marquee {
    width: calc(100vw - 24px);
    justify-self: center;
  }

  .brand-context {
    text-align: center;
  }

  .footer-product {
    order: 3;
    width: 100%;
  }

  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    white-space: normal;
    text-align: center;
  }

  .site-header .btn {
    width: auto;
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 34px;
  }

  .home-hero {
    row-gap: 22px;
  }

  .home-hero .trust-row {
    gap: 8px;
    margin-top: 22px;
  }

  .home-hero .trust-row .pill {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .visual-card {
    min-height: 355px;
  }

  .desk-scene {
    min-height: 300px;
  }

  .laptop {
    width: 86%;
    border-width: 10px;
    border-bottom-width: 18px;
  }

  .screen-ui {
    padding: 16px;
  }

  .screen-tile {
    height: 34px;
  }

  .visual-stat {
    width: 128px;
    min-height: 94px;
    padding: 13px;
  }

  .visual-stat:nth-child(1) {
    left: 0;
    top: 0;
  }

  .visual-stat:nth-child(2) {
    right: 0;
    top: 20%;
  }

  .visual-stat:nth-child(3) {
    left: 22%;
    bottom: 0;
  }

  .visual-stat strong {
    font-size: 24px;
  }

  .visual-stat span {
    font-size: 12px;
  }

  .quiz-shell {
    width: min(100% - 18px, 760px);
    padding-top: 14px;
  }

  .quiz-top {
    padding: 14px 16px;
  }

  .quiz-body {
    padding: 22px 16px 24px;
  }

  .quiz-nav {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .quiz-nav .btn,
  .ghost-btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .result-hero {
    border-radius: 18px;
  }

  .result-illustration {
    width: 100%;
    max-width: 360px;
  }

  .platform-logo-card {
    min-height: 108px;
    gap: 14px;
    padding: 0;
    border-radius: 20px;
  }

  .platform-logo-emblem {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .platform-logo-card img {
    width: 48px;
    height: 48px;
  }

  .platform-logo-woo .platform-logo-emblem {
    width: 100px;
  }

  .platform-logo-woo img {
    width: 86px;
    height: 54px;
  }

  .platform-logo-cloudcart .platform-logo-emblem,
  .platform-logo-wix .platform-logo-emblem {
    width: 108px;
  }

  .platform-logo-cloudcart img,
  .platform-logo-wix img {
    width: 88px;
    height: 46px;
  }

  .platform-logo-copy small {
    font-size: 10px;
  }

  .platform-logo-copy strong,
  .platform-logo-cloudcart .platform-logo-copy strong,
  .platform-logo-wix .platform-logo-copy strong {
    font-size: clamp(26px, 8vw, 34px);
  }

  .share-row,
  .share-icons {
    width: 100%;
    justify-content: center;
  }

  .result-score-panel {
    padding: 18px;
  }

  .result-badge {
    min-height: 150px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .card {
    padding: 18px;
    border-radius: 16px;
  }

  .footer-inner,
  .footer-links {
    display: grid;
    justify-content: start;
  }
}
