/* ScanReviews — scanreviews.co.uk
   Design tokens and layout lifted from the approved design export, rebuilt as
   plain CSS so the site paints immediately instead of waiting on a CDN. */

/* Self-hosted so no visitor data reaches a third-party font CDN and the type
   never blocks on someone else's uptime. One variable file covers 200–800. */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0A0A0B;
  --ink-2: #141416;
  --ink-3: #1C1C1F;
  --hair-dark: #232326;
  --blue: #4285F4;
  --blue-dark: #1B66E0;
  --blue-soft: rgba(66, 133, 244, .1);
  --text: #0A0A0B;
  --text-2: #57575D;
  --text-3: #6B6B71;
  --text-4: #8E8E96;
  --text-5: #A0A0A8;
  --line: #EDEDE9;
  --line-2: #EAEAE5;
  --line-3: #E4E4DF;
  --line-4: #E1E1DC;
  --line-5: #DEDED8;
  --surface: #FFFFFF;
  --surface-2: #FAFAF8;
  --surface-3: #F7F7F5;
  --surface-4: #F4F4F1;
  --surface-5: #F2F2EF;
  --star: #F5B22D;
  --ease: cubic-bezier(.16, .84, .3, 1);
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

/* Author `display` rules (.btn is inline-flex, .row is flex, …) outrank the
   UA stylesheet's [hidden] rule, so anything hidden from JS would still show.
   This makes the hidden attribute mean what it says everywhere. */
[hidden] { display: none !important; }

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -.032em; line-height: 1.04; font-weight: 800; }
p { margin: 0; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
img { max-width: 100%; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

@keyframes sr-scan {
  0%, 100% { transform: translateY(-6%); opacity: 0; }
  12% { opacity: .9; }
  50% { transform: translateY(96%); opacity: .55; }
  66% { opacity: 0; }
}
@keyframes sr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes sr-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes sr-pop {
  from { transform: translateY(10px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes sr-spin { to { transform: rotate(360deg); } }

/* ---------- layout primitives ---------- */

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.shell-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.grid { display: grid; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.wrap { flex-wrap: wrap; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-4);
}
.lede { font-size: 17px; color: var(--text-3); }
.muted { color: var(--text-3); }
.hr { height: 1px; background: var(--line-3); }

/* Views are stacked in the document so the page still works without JS;
   once JS boots, only the active one shows. */
.sr-js .view { display: none; }
.sr-js .view.is-active { display: block; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 14px; border: 1px solid transparent;
  font-size: 16px; font-weight: 700; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s, background .25s;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 22px 40px -20px rgba(10, 10, 11, .75); }
.btn-light { background: #fff; border-color: var(--line-4); color: var(--ink); }
.btn-light:hover { color: var(--ink); transform: translateY(-2px); border-color: var(--ink); box-shadow: 0 16px 30px -22px rgba(10, 10, 11, .5); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 18px 30px -18px rgba(255, 255, 255, .45); }
.btn-sm { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .4; cursor: not-allowed; }
.btn[disabled]:hover, .btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; }
.btn.is-busy { opacity: .7; cursor: progress; }

.spinner {
  width: 15px; height: 15px; border-radius: 999px; flex: none;
  border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  animation: sr-spin .7s linear infinite;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  max-width: var(--shell); margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; gap: clamp(10px, 1.8vw, 28px);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { display: block; height: 22px; width: auto; }
.nav {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
  flex-wrap: nowrap; justify-content: flex-end; min-width: 0;
  overflow-x: auto; scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  padding: 8px 10px; border-radius: 10px; font-size: 15px; font-weight: 600;
  white-space: nowrap; color: var(--text-3); transition: background .2s, color .2s;
}
.nav a:hover { background: var(--surface-4); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 9px; flex: none; }
.basket-btn {
  position: relative; display: flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 12px; border: 1px solid var(--line-3);
  background: #fff; font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.basket-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -12px rgba(10, 10, 11, .35); border-color: var(--ink); }
.basket-count {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}
.header-cta {
  padding: 10px 17px; border-radius: 12px; background: var(--ink); color: #fff;
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.header-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 14px 26px -14px rgba(10, 10, 11, .7); }

/* Hamburger + slide-down menu. Hidden on desktop; the inline nav hides and
   these take over below 880px. */
.menu-btn {
  display: none; width: 41px; height: 41px; border-radius: 12px;
  border: 1px solid var(--line-3); background: #fff; place-items: center;
  transition: border-color .2s;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn .ic-close { display: none; }
.menu-open .menu-btn .ic-open { display: none; }
.menu-open .menu-btn .ic-close { display: block; }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 10px 16px 18px; border-top: 1px solid var(--line); background: #fff;
}
.mobile-menu a:not(.btn) {
  padding: 14px 12px; border-radius: 12px;
  font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.mobile-menu a:not(.btn):hover { background: var(--surface-4); color: var(--ink); }
.mobile-menu a[aria-current="page"] { color: var(--blue-dark); }
.menu-open .mobile-menu { display: flex; }
/* The menu lives inside the sticky header, so it scrolls if a phone is short. */
.menu-open .site-header { max-height: 100dvh; overflow-y: auto; }

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-btn { display: grid; }
}
@media (max-width: 460px) {
  .header-cta { display: none; }   /* burger + basket is plenty on a phone */
  .site-header .bar { padding: 11px 16px; }
  .brand img { height: 19px; }
  .hero h1 { font-size: clamp(34px, 11.5vw, 44px); }
  .hero-sub { font-size: 16px; }
}

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -240px; right: -120px; width: 820px; height: 720px;
  background: radial-gradient(48% 48% at 60% 40%, rgba(66, 133, 244, .13), rgba(66, 133, 244, 0) 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) 24px clamp(56px, 7vw, 104px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(36px, 5vw, 76px); align-items: center;
}
.hero h1 { margin: 22px 0 0; font-size: clamp(44px, 6vw, 80px); }
.hero-sub { margin: 22px 0 0; font-size: clamp(17px, 1.4vw, 20px); color: var(--text-2); max-width: 30em; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px; border: 1px solid var(--line-3);
  background: #fff; font-size: 13px; font-weight: 600; letter-spacing: -.01em;
  box-shadow: 0 6px 18px -14px rgba(10, 10, 11, .4);
}
.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--blue); display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px;
  border-radius: 999px; background: var(--surface-4); font-size: 14px; font-weight: 600;
}
.chip-blue { background: var(--blue-soft); color: var(--blue-dark); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 0; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin: 30px 0 0; flex-wrap: wrap; }
.stars { color: var(--star); letter-spacing: 2px; }

.hero-art { perspective: 1400px; display: flex; justify-content: center; }
.hero-card {
  position: relative; width: min(400px, 84vw);
  transform-style: preserve-3d; transition: transform .5s var(--ease);
}
.hero-card > img {
  position: relative; display: block; width: 100%; height: auto; border-radius: 26px;
  box-shadow: 0 46px 80px -34px rgba(10, 10, 11, .55), 0 0 0 1px rgba(10, 10, 11, .08);
}
.hero-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -26px; height: 60px;
  background: rgba(10, 10, 11, .28); filter: blur(34px); border-radius: 999px;
}
.hero-sheen { position: absolute; inset: 0; border-radius: 26px; overflow: hidden; pointer-events: none; }
.hero-sheen > div {
  position: absolute; left: 0; right: 0; height: 38%;
  background: linear-gradient(180deg, rgba(66, 133, 244, 0), rgba(66, 133, 244, .2), rgba(255, 255, 255, .35));
  animation: sr-scan 4.4s cubic-bezier(.5, 0, .5, 1) infinite;
}
.hero-tag {
  position: absolute; padding: 11px 15px; border-radius: 14px; background: #fff;
  box-shadow: 0 20px 40px -22px rgba(10, 10, 11, .5), 0 0 0 1px rgba(10, 10, 11, .06);
  animation: sr-float 6s ease-in-out infinite;
}
.hero-tag-a { top: 16%; left: -14%; }
.hero-tag-b { bottom: 12%; right: -12%; background: var(--ink); color: #fff; animation-delay: .9s; box-shadow: 0 20px 40px -22px rgba(10, 10, 11, .7); }
.hero-tag .k { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.hero-tag-b .k { color: var(--text-4); }
.hero-tag .v { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }

/* ---------- marquee ---------- */

.marquee-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface-2); overflow: hidden;
}
.marquee-band .shell { display: flex; align-items: center; gap: 28px; padding-top: 20px; padding-bottom: 20px; }
.marquee-mask {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: sr-marquee 34s linear infinite; }
.marquee-track > div {
  display: flex; gap: 44px; padding-right: 44px;
  font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: #4C4C52;
}

/* ---------- sections ---------- */

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-sm { padding: clamp(56px, 7vw, 100px) 0; }
.section-top { padding: clamp(40px, 5vw, 76px) 0 0; }
.section-tinted { background: var(--surface-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-soft { background: var(--surface-2); border-top: 1px solid var(--line); }
.section-dark { background: var(--ink); color: #fff; }
.section-head { max-width: 620px; }
.section-head h2 { margin: 14px 0 0; font-size: clamp(32px, 3.9vw, 52px); }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 14px; margin: 44px 0 0;
}
.feature {
  padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--line-2);
  box-shadow: 0 1px 2px rgba(10, 10, 11, .03);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -30px rgba(10, 10, 11, .4); border-color: var(--line-5); }
.feature h3 { margin: 18px 0 0; font-size: 20px; }
.feature p { margin: 9px 0 0; font-size: 16px; color: var(--text-3); }
.feature-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.feature-dark:hover { box-shadow: 0 26px 48px -28px rgba(10, 10, 11, .7); border-color: var(--ink); }
.feature-dark p { color: var(--text-5); }
.icon-tile { width: 42px; height: 42px; border-radius: 13px; background: var(--surface-4); display: grid; place-items: center; }
.feature-dark .icon-tile { background: rgba(255, 255, 255, .1); }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px; margin: 44px 0 0;
}
.step { position: relative; padding: 30px; border-radius: 22px; background: #fff; border: 1px solid var(--line-2); }
.step h3 { margin: 22px 0 0; font-size: 22px; }
.step p { margin: 10px 0 0; font-size: 16px; color: var(--text-3); }
.step-num {
  width: 36px; height: 36px; border-radius: 11px; background: var(--ink); color: #fff;
  font-size: 15px; font-weight: 700; display: grid; place-items: center;
}
.step-num-blue { background: var(--blue); }

/* ---------- pricing ---------- */

.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px; margin: 44px 0 0;
}
.tier {
  padding: 32px; border-radius: 24px; background: #fff; border: 1px solid var(--line-2);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 30px 54px -34px rgba(10, 10, 11, .4); }
.tier-dark {
  background: var(--ink); color: #fff; border-color: var(--ink); position: relative;
  box-shadow: 0 34px 60px -34px rgba(10, 10, 11, .6);
}
.tier-dark:hover { transform: translateY(-6px); }
.tier .amount { font-size: 44px; font-weight: 800; letter-spacing: -.04em; }
.tier .was { font-size: 16px; color: var(--text-4); text-decoration: line-through; }
.tier .note { margin: 12px 0 0; font-size: 15px; color: var(--text-3); }
.tier-dark .note { color: var(--text-5); }
.tier button { margin: 24px 0 0; }
.badge-best {
  padding: 5px 11px; border-radius: 999px; background: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: .02em; color: #fff;
}

/* ---------- promise band (replaces the placeholder testimonials) ---------- */

.promise-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px; margin: 44px 0 0;
}
.promise {
  margin: 0; padding: 30px; border-radius: 22px;
  background: var(--ink-2); border: 1px solid var(--hair-dark);
}
.promise h3 { margin: 18px 0 0; font-size: 20px; }
.promise p { margin: 10px 0 0; font-size: 16px; color: var(--text-5); }
.promise .icon-tile { background: rgba(255, 255, 255, .07); }

/* ---------- CTA band ---------- */

.cta-band {
  border-radius: 28px; border: 1px solid var(--line-2); background: var(--surface-3);
  padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 32px; align-items: center;
}
.cta-band h2 { font-size: clamp(28px, 3.2vw, 42px); }
.cta-band p { margin: 14px 0 0; font-size: 17px; color: var(--text-3); max-width: 32em; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ---------- shop ---------- */

.shop-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 28px; align-items: end; margin: 14px 0 0;
}
.shop-head h1 { font-size: clamp(36px, 4.4vw, 58px); }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 18px;
}
.product {
  display: flex; flex-direction: column; padding: 18px; border-radius: 24px;
  background: #fff; border: 1px solid var(--line-2);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.product:hover { transform: translateY(-5px); box-shadow: 0 32px 56px -34px rgba(10, 10, 11, .42); border-color: var(--line-5); }
.product-media {
  position: relative; border-radius: 18px; background: var(--surface-5);
  padding: 26px; display: flex; justify-content: center; overflow: hidden;
}
.product-media img { display: block; width: min(240px, 92%); height: auto; }
.product-tag {
  position: absolute; top: 14px; left: 14px; padding: 5px 11px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; z-index: 2;
}
.product-body { padding: 22px 8px 8px; display: flex; flex-direction: column; flex: 1; }
.product-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.product-title h2 { font-size: 19px; }
.product-price { font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.product-blurb { margin: 10px 0 0; font-size: 15px; color: var(--text-3); }
.product-note {
  display: flex; align-items: center; gap: 8px; margin: 16px 0 20px;
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.product .btn { margin-top: auto; padding: 14px; border-radius: 13px; font-size: 15px; }
.product .btn.in-cart { background: var(--blue); }
.product .btn.in-cart:hover { box-shadow: 0 16px 28px -16px rgba(66, 133, 244, .8); }

.examples {
  margin: 44px 0 0; padding: clamp(26px, 3.4vw, 44px); border-radius: 24px;
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.examples h2 { margin: 14px 0 0; font-size: clamp(26px, 2.8vw, 36px); }
.examples p { margin: 14px 0 0; font-size: 17px; color: var(--text-5); max-width: 30em; }
.examples-art { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.examples-art figure { margin: 0; text-align: center; }
.examples-art img { display: block; width: min(240px, 42vw); height: auto; }
.examples-art figcaption { margin: 8px 0 0; font-size: 13px; font-weight: 600; color: var(--text-4); }

.spec-strip {
  margin: 16px 0 0; padding: 28px; border-radius: 22px; background: var(--surface-3);
  border: 1px solid var(--line-2);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 24px;
}
.spec-strip h3 { font-size: 16px; }
.spec-strip p { margin: 8px 0 0; font-size: 15px; color: var(--text-3); }

/* ---------- how it works ---------- */

.how-rows { display: flex; flex-direction: column; gap: 16px; }
.how-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(28px, 3.4vw, 44px); border-radius: 24px; border: 1px solid var(--line-2);
}
.how-row h2 { margin: 20px 0 0; font-size: clamp(26px, 2.8vw, 36px); }
.how-row p { margin: 12px 0 0; font-size: 17px; color: var(--text-3); }
.how-row-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.how-row-dark p { color: var(--text-5); }
.how-num { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 700; display: grid; place-items: center; }
.how-num-blue { background: var(--blue); }
.tick-list { display: flex; flex-direction: column; gap: 10px; }
.tick-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: 14px; background: var(--ink-2); border: 1px solid var(--hair-dark);
  font-size: 15px; font-weight: 600;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 12px 18px; border-radius: 14px; background: var(--surface-4); font-weight: 700; font-size: 15px; }
.tag-dark { background: var(--ink); color: #fff; }
.dash-list { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dash-list li { display: flex; gap: 12px; font-size: 16px; }
.dash-list li::before { content: "—"; color: var(--blue); font-weight: 800; }
.place-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.place-chips span {
  padding: 9px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line-3); font-size: 14px; font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.faq-aside { position: sticky; top: 110px; }
.faq-aside h1 { margin: 14px 0 0; font-size: clamp(34px, 4vw, 54px); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line-2); border-radius: 18px; background: #fff;
  overflow: hidden; transition: border-color .25s;
}
.faq-item[open], .faq-item.is-open { border-color: #D6D6CF; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  background: none; border: none; text-align: left;
  font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.faq-q > span:first-child { flex: 1; }
.faq-chevron {
  flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--surface-4);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .25s;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; opacity: 0; overflow: hidden;
  transition: grid-template-rows .34s var(--ease), opacity .3s;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a > div { min-height: 0; }
.faq-a p { padding: 0 22px 22px; font-size: 16px; color: var(--text-3); max-width: 44em; }

/* ---------- contact ---------- */

.contact-layout {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.contact-layout h1 { margin: 14px 0 0; font-size: clamp(34px, 4vw, 54px); }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin: 32px 0 0; }
.contact-method {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: 18px;
  border: 1px solid var(--line-2); color: var(--ink);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.contact-method:hover { color: var(--ink); transform: translateY(-2px); border-color: var(--ink); box-shadow: 0 20px 36px -26px rgba(10, 10, 11, .5); }
.contact-method .icon-tile { flex: none; }
.contact-method .k { display: block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-4); }
.contact-method .v { display: block; font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.panel {
  padding: clamp(26px, 3vw, 38px); border-radius: 24px;
  background: var(--surface-3); border: 1px solid var(--line-2);
}
.panel h2 { font-size: 22px; }

/* ---------- forms ---------- */

.field { display: block; }
.field > span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 13px; border: 1px solid var(--line-4);
  background: #fff; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(66, 133, 244, .14);
}
.field input[data-invalid="true"], .field textarea[data-invalid="true"] {
  border-color: #D93025; box-shadow: 0 0 0 3px rgba(217, 48, 37, .12);
}
.field .err { display: none; margin-top: 6px; font-size: 13px; font-weight: 600; color: #D93025; }
.field.has-error .err { display: block; }
.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 14px; }
.field-grid-sm { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.form-note { font-size: 13px; color: var(--text-4); }
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; }
.form-status.ok { color: var(--blue-dark); }
.form-status.bad { color: #D93025; }

/* ---------- checkout ---------- */

.checkout-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px;
  border-radius: 11px; border: 1px solid var(--line-3); background: #fff;
  font-size: 14px; font-weight: 600; color: var(--ink); transition: border-color .2s;
}
.back-btn:hover { border-color: var(--ink); color: var(--ink); }
.stepper { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; font-weight: 700; }
.stepper .sep { color: #C9C9CE; }
.stepper span.pip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; background: var(--surface-4); color: var(--text-4);
  transition: background .25s, color .25s;
}
.stepper span.pip.is-current { background: var(--ink); color: #fff; }
.stepper span.pip.is-done { background: var(--blue-soft); color: var(--blue-dark); }
.checkout-layout {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(24px, 3vw, 44px); margin: 32px 0 0; align-items: start;
}
.checkout-layout h1 { font-size: clamp(28px, 3.2vw, 40px); }
.link-card { padding: 20px; border-radius: 20px; border: 1px solid var(--line-2); background: #fff; }
.link-card .head { display: flex; align-items: center; gap: 12px; }
.link-card img { width: 34px; height: 34px; border-radius: 10px; flex: none; }
.link-card .name { font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.link-card .sub { font-size: 13px; color: var(--text-4); }
.link-card input {
  width: 100%; margin: 16px 0 0; padding: 15px 16px; border-radius: 13px;
  border: 1px solid var(--line-4); background: var(--surface-2); font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.link-card input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(66, 133, 244, .14); }
.link-card.is-ready input { border-color: var(--blue); }
.link-card.is-bad input { border-color: #D93025; }
.link-card .hint { margin: 10px 0 0; font-size: 13px; color: var(--text-4); }
.state-badge {
  padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--surface-4); color: var(--text-4);
}
.link-card.is-ready .state-badge { background: var(--blue-soft); color: var(--blue-dark); }
.summary {
  position: sticky; top: 110px; padding: 24px; border-radius: 22px;
  background: var(--surface-3); border: 1px solid var(--line-2);
}
.summary h2 { font-size: 17px; }
.summary-lines { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; }
.summary-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px; }
.summary-line .k { font-weight: 600; }
.summary-line .v { color: var(--text-3); }
.summary-meta { display: flex; justify-content: space-between; font-size: 15px; color: var(--text-3); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0 0; }
.summary-total .k { font-size: 16px; font-weight: 700; }
.summary-total .v { font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.save { color: var(--blue); font-weight: 700; }

.pay-panel {
  margin: 28px 0 0; padding: 24px; border-radius: 20px; border: 1px solid var(--line-2);
  background: #fff; display: flex; flex-direction: column; gap: 16px;
}
.pay-review { display: flex; flex-direction: column; gap: 10px; }
.pay-review-row {
  display: flex; gap: 12px; align-items: baseline; font-size: 15px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.pay-review-row:last-child { border-bottom: none; padding-bottom: 0; }
.pay-review-row .k { flex: none; width: 108px; font-weight: 700; color: var(--text-4); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.pay-review-row .v { flex: 1; min-width: 0; word-break: break-word; }
.secure-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-4); }
.done-panel { animation: sr-pop .5s var(--ease) both; }
.done-tick { width: 52px; height: 52px; border-radius: 16px; background: var(--blue); display: grid; place-items: center; }
.done-panel h1 { margin: 22px 0 0; }
.order-box { margin: 26px 0 0; padding: 22px; border-radius: 20px; background: var(--surface-3); border: 1px solid var(--line-2); }
.order-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  border-radius: 13px; background: #fff; border: 1px solid var(--line-2);
}
.order-row .n { font-size: 14px; font-weight: 700; flex: none; }
.order-row .u { font-size: 13px; color: var(--text-4); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.notice {
  padding: 16px 18px; border-radius: 16px; font-size: 14px; font-weight: 600;
  background: var(--blue-soft); border: 1px solid rgba(66, 133, 244, .25); color: var(--blue-dark);
}
.notice-bad { background: rgba(217, 48, 37, .07); border-color: rgba(217, 48, 37, .3); color: #B3261E; }

/* ---------- legal ---------- */

.legal h1 { font-size: clamp(32px, 3.6vw, 46px); }
.legal h2 { margin: 34px 0 0; font-size: 22px; }
.legal h3 { margin: 24px 0 0; font-size: 17px; }
.legal p, .legal li { margin: 12px 0 0; font-size: 16px; color: var(--text-3); }
.legal ul { margin: 12px 0 0; padding-left: 20px; }
.legal .updated { margin: 10px 0 0; font-size: 14px; color: var(--text-4); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: #fff; padding: clamp(52px, 6vw, 84px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 36px; }
.site-footer img { display: block; height: 26px; width: auto; }
.site-footer h3 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-4); }
.footer-col { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; }
.footer-col a, .footer-col span { font-size: 15px; color: #fff; }
.footer-col a:hover { color: var(--blue); }
.footer-col span { color: var(--text-4); }
.footer-blurb { margin: 16px 0 0; font-size: 15px; color: var(--text-4); max-width: 24em; }
.socials { display: flex; gap: 8px; margin: 20px 0 0; }
.socials a {
  width: 38px; height: 38px; border-radius: 11px; background: var(--ink-2);
  border: 1px solid var(--hair-dark); display: grid; place-items: center; color: #fff;
  font-weight: 800; font-size: 13px; transition: background .2s;
}
.socials a:hover { background: var(--ink-3); color: #fff; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin: 44px 0 0; padding: 22px 0 0; border-top: 1px solid var(--hair-dark);
}
.footer-base span { font-size: 13px; color: #6B6B71; }

/* ---------- basket drawer ---------- */

.drawer { position: fixed; inset: 0; z-index: 90; pointer-events: none; visibility: hidden; }
.drawer.is-open { pointer-events: auto; visibility: visible; }
.drawer-scrim {
  position: absolute; inset: 0; background: rgba(10, 10, 11, .42);
  backdrop-filter: blur(3px); transition: opacity .35s ease; opacity: 0;
}
.drawer.is-open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: #fff; box-shadow: -30px 0 60px -30px rgba(10, 10, 11, .45);
  display: flex; flex-direction: column;
  transition: transform .42s var(--ease); transform: translateX(104%);
}
.drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 19px; }
.icon-btn {
  width: 34px; height: 34px; border-radius: 11px; border: 1px solid var(--line-3);
  background: #fff; display: grid; place-items: center; transition: border-color .2s;
}
.icon-btn:hover { border-color: var(--ink); }
.drawer-body { flex: 1; overflow: auto; padding: 20px 24px; }
.drawer-empty { padding: 40px 0; text-align: center; }
.drawer-lines { display: flex; flex-direction: column; gap: 12px; }
.drawer-line { display: flex; gap: 14px; align-items: center; padding: 14px; border-radius: 18px; border: 1px solid var(--line-2); }
.drawer-line img { width: 44px; height: 44px; border-radius: 10px; flex: none; }
.drawer-line .name { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.drawer-line .each { font-size: 13px; color: var(--text-4); }
.qty { display: flex; align-items: center; gap: 8px; margin: 9px 0 0; }
.qty button {
  width: 28px; height: 28px; border-radius: 9px; border: 1px solid var(--line-3);
  background: #fff; display: grid; place-items: center; font-weight: 700; transition: border-color .2s;
}
.qty button:hover { border-color: var(--ink); }
.qty .n { min-width: 18px; text-align: center; font-size: 15px; font-weight: 700; }
.upsell {
  margin: 14px 0 0; padding: 16px; border-radius: 16px; background: rgba(66, 133, 244, .08);
  border: 1px solid rgba(66, 133, 244, .25); font-size: 14px; font-weight: 600; color: var(--blue-dark);
}
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--surface-2); }
.drawer-foot .meta { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-3); }
.drawer-foot .total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0 0; }
.drawer-foot .total .k { font-size: 15px; font-weight: 700; }
.drawer-foot .total .v { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }

/* ---------- toast ---------- */

.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 95;
  transform: translateX(-50%) translateY(18px); opacity: 0;
  transition: transform .4s var(--ease), opacity .3s; pointer-events: none;
}
.toast.is-on { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast > div {
  display: flex; align-items: center; gap: 10px; padding: 13px 20px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 24px 44px -22px rgba(10, 10, 11, .7);
}

/* ---------- reveal on scroll ---------- */

.sr-js [data-reveal] { opacity: 0; transform: translateY(22px); }
.sr-js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- trust ticks (hero) ---------- */

.tick-inline { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 30px 0 0; }
.tick-inline span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-3); }

/* ---------- industries ---------- */

.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
  gap: 10px; margin: 40px 0 0;
}
.industry {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--line-2);
  font-size: 14.5px; font-weight: 700; letter-spacing: -.01em;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.industry:hover { transform: translateY(-3px); border-color: var(--line-5); box-shadow: 0 18px 30px -24px rgba(10, 10, 11, .35); }
.industry .icon-tile { width: 36px; height: 36px; border-radius: 11px; }

/* ---------- product close-up strip ---------- */

.card-strip-wrap {
  margin: 40px 0 0; overflow-x: auto; scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 94%, transparent);
}
.card-strip-wrap::-webkit-scrollbar { display: none; }
.card-strip { display: flex; gap: 16px; width: max-content; padding: 6px 2px 22px; }
.card-strip figure { margin: 0; width: 176px; flex: none; scroll-snap-align: start; }
.card-strip img {
  display: block; width: 100%; height: auto; border-radius: 16px;
  box-shadow: 0 24px 44px -26px rgba(10, 10, 11, .5), 0 0 0 1px rgba(10, 10, 11, .07);
  transition: transform .35s var(--ease);
}
.card-strip figure:hover img { transform: translateY(-6px); }
.card-strip figcaption { margin: 12px 0 0; font-size: 13px; font-weight: 700; color: var(--text-4); text-align: center; }
.box-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; }
.box-list span {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px;
  border-radius: 999px; background: #fff; border: 1px solid var(--line-3);
  font-size: 14px; font-weight: 600;
}

/* ---------- comparison table ---------- */

.compare-wrap {
  margin: 44px 0 0; overflow-x: auto; border-radius: 24px;
  border: 1px solid var(--line-2); background: #fff;
}
.compare { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 15px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare thead th { font-size: 14px; letter-spacing: -.01em; padding-top: 20px; padding-bottom: 14px; }
.compare tbody th { font-weight: 600; color: var(--text-3); font-size: 14px; max-width: 200px; }
.compare td.us { background: var(--ink); color: #fff; font-weight: 600; }
.compare thead .us { background: var(--ink); color: #fff; border-radius: 0; }
.compare td { color: var(--text-3); }
.compare .tick { color: var(--blue); font-weight: 800; }
.compare td.us .tick { color: #7EABF8; }

/* ---------- pricing extras ---------- */

.tier .percard { margin: 6px 0 0; font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.tier-dark .percard { color: #7EABF8; }
.tier-ticks { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tier-ticks li { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--text-3); }
.tier-dark .tier-ticks li { color: var(--text-5); }
.tier-ticks svg { flex: none; }

/* ---------- order timeline (CTA band) ---------- */

.timeline { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.timeline span {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px;
  border-radius: 999px; background: #fff; border: 1px solid var(--line-3);
  font-size: 14px; font-weight: 600;
}
.timeline .tl-k { color: var(--text-4); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- find-my-link toggle (checkout) ---------- */

.find-toggle {
  margin: 10px 0 0; background: none; border: none; padding: 0;
  font-size: 13.5px; font-weight: 700; color: var(--blue-dark); cursor: pointer;
  text-align: left;
}
.find-toggle:hover { text-decoration: underline; }
.link-card.is-find input { border-color: var(--line-4); background: #fff; }
.link-card.is-find.is-ready input { border-color: var(--blue); }

/* ---------- mini FAQ (home teaser) ---------- */

[data-faq-mini] { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 720px) {
  .hero-tag-a { left: -4%; }
  .hero-tag-b { right: -2%; }
  .cta-band .actions { justify-content: flex-start; }
  .summary { position: static; }
  .faq-aside { position: static; }

  /* Checkout header: back button on its own line, steps as one tidy row.
     The pip labels shrink to numbers so nothing wraps at 320-430px. */
  .checkout-top { align-items: stretch; flex-direction: column; gap: 12px; }
  .back-btn { align-self: flex-start; }
  .stepper { gap: 6px; }
  .stepper span.pip { flex: 1; justify-content: center; padding: 9px 6px; text-align: center; }
  .stepper .sep { display: none; }

  /* Give small screens back some horizontal breathing room. */
  .shell, .shell-narrow { padding-left: 18px; padding-right: 18px; }
  .link-card { padding: 16px; }
  .pay-review-row { flex-direction: column; gap: 3px; }
  .pay-review-row .k { width: auto; }

  /* Big finger-friendly product buttons already exist; tighten tile padding. */
  .product { padding: 14px; }
  .product-body { padding: 18px 4px 4px; }

  /* Footer: stack the base line instead of a squeezed two-ender. */
  .footer-base { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .sr-js [data-reveal] { opacity: 1; transform: none; }
}
