/* DentalMarq — design system
   Style: Trust & Authority + Bento grid. Low variance, low density, subtle motion.
   Type: Plus Jakarta Sans (headings + body), Instrument Serif italic for one accent word.
   Colour: white + cloud surfaces, ink text, Marq Blue primary, one soft tint per service. */

:root {
  /* surfaces + text */
  --bg: #FBFAF7;
  --bg-soft: #F3F0EA;
  --card: #FFFFFF;
  --ink: #13213C;
  --ink-2: #3A4458;
  --mute: #6B7280;
  --line: #E9E4DB;
  --line-2: #DAD3C7;
  --ink-hover: #22324F;

  /* brand */
  --blue: #3563F0;   --blue-600: #2A50D4; --blue-50: #EEF2FD; --blue-100: #DCE4FB;
  --lilac: #7C5CFA;  --lilac-50: #F3EFFF;
  --mint: #0FA37A;   --mint-50: #E7F7F1;
  --peach: #F0642F;  --peach-50: #FFF0E9;
  --sun: #F5B100;    --sun-ink: #C98C00; --sun-50: #FFF6DB;
  --navy: #0B1B4D;

  --f-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-accent: "Instrument Serif", Georgia, serif;

  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);
  --sec: clamp(80px, 10vw, 128px);
  --r-sm: 12px; --r-md: 18px; --r-lg: 28px;
  --sh-sm: 0 1px 2px rgba(16,24,40,.05), 0 2px 8px -2px rgba(16,24,40,.06);
  --sh-md: 0 1px 2px rgba(16,24,40,.04), 0 16px 40px -16px rgba(16,24,40,.16);
  --sh-lg: 0 2px 4px rgba(16,24,40,.04), 0 40px 80px -32px rgba(16,24,40,.24);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body { margin: 0; background: var(--bg); color: var(--ink-2); font: 400 17px/1.6 var(--f-sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: #CFF2E6; color: var(--ink); }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--mint) 60%, transparent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: #fff; }
.skip:focus { top: 12px; }
.muted { color: var(--mute); }

/* ---------- type ---------- */
.h2 { font: 700 clamp(32px, 4.2vw, 50px)/1.1 var(--f-sans); letter-spacing: -.025em; color: var(--ink); text-wrap: balance; }
.head { max-width: 640px; display: grid; gap: 18px; justify-items: start; }
.head--center { margin: 0 auto; text-align: center; justify-items: center; max-width: 720px; }
.head__p { font-size: 18px; color: var(--mute); max-width: 58ch; }
.head__p a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--mint); font-weight: 600; text-decoration: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font: 700 13px/1 var(--f-sans); letter-spacing: .02em; color: var(--c, var(--blue)); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.eyebrow--blue { --c: var(--blue); } .eyebrow--mint { --c: var(--mint); } .eyebrow--lilac { --c: var(--lilac); } .eyebrow--peach { --c: var(--peach); }
.fine { margin-top: 12px; font-size: 13px; color: var(--mute); }
.note { padding: 14px 16px; border-radius: var(--r-sm); background: var(--card); border: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent;
  font: 700 15.5px/1 var(--f-sans); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s, color .2s, box-shadow .2s, transform .2s var(--ease); }
.btn svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 8px 20px -12px rgba(19,33,60,.7); }
.btn--primary:hover { background: var(--ink-hover); box-shadow: 0 12px 26px -12px rgba(19,33,60,.8); }
.btn--ghost { background: var(--card); border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #E9FBF5; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14.5px; }
.btn--full { width: 100%; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,250,247,.88); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(16,24,40,.3); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font: 500 21px/1 var(--f-sans); letter-spacing: -.025em; color: var(--ink); }
.logo b { font-weight: 800; }
.logo__mark { width: 36px; height: 36px; }
.nav nav { margin-left: auto; }
.nav__links { display: flex; gap: 6px; }
.nav__links a { display: block; padding: 10px 14px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); text-decoration: none; transition: background-color .2s, color .2s; }
.nav__links a:hover { background: #EFEBE3; color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 104px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(38% 55% at 88% 18%, #EAF7F1, transparent 70%), radial-gradient(30% 45% at 68% 92%, var(--peach-50), transparent 70%), radial-gradient(28% 40% at 100% 70%, var(--lilac-50), transparent 70%); }
.hero__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero__copy > * + * { margin-top: 24px; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-sm); font-weight: 700; font-size: 14px; color: var(--ink); }
.pill__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-50); }
.hero__title { font: 800 clamp(40px, 5vw, 64px)/1.06 var(--f-sans); letter-spacing: -.035em; color: var(--ink); text-wrap: balance; }
.hero__title em { font: italic 400 1.12em/1 var(--f-accent); letter-spacing: -.01em; color: var(--mint); }
.hero__lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 50ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.hero__proof li { display: inline-flex; align-items: center; gap: 7px; }
.hero__proof svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--mint-50); color: var(--mint); }

.hero__visual { position: relative; padding: 36px 24px 48px 36px; }
.browser { background: #fff; border-radius: 20px; box-shadow: var(--sh-lg), 0 0 0 1px var(--line); overflow: hidden; }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #FBFCFE; }
.browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.browser__bar i:nth-child(1) { background: #FF8A80; } .browser__bar i:nth-child(2) { background: #FFD166; } .browser__bar i:nth-child(3) { background: #7BD88F; }
.browser__bar span { margin-left: 12px; padding: 5px 14px; border-radius: 999px; background: var(--bg-soft); font-size: 12px; color: var(--mute); }
.site { padding: 18px 22px 22px; background: #FAF8F4; color: #16302B; }
.site__nav { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; font-size: 12px; }
.site__logo { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; letter-spacing: -.01em; }
.site__logo svg { width: 22px; height: 22px; }
.site__links { display: flex; gap: 14px; margin-left: auto; color: #4A5D58; }
.site__links i { font-style: normal; }
.site__cta { padding: 7px 12px; border-radius: 999px; background: #0E7C66; color: #fff; font-weight: 700; }
.site__hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: center; }
.site__kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #0E7C66; margin-bottom: 8px; }
.site__h { font: 800 clamp(20px, 2vw, 26px)/1.1 var(--f-sans); letter-spacing: -.02em; }
.site__p { font-size: 12px; color: #4A5D58; margin: 8px 0 12px; }
.site__rating { display: inline-flex; gap: 6px; padding: 6px 10px; border-radius: 999px; background: #fff; font-size: 11px; font-weight: 600; box-shadow: var(--sh-sm); }
.site__rating span { color: var(--sun); letter-spacing: 1px; }
.booker { background: #fff; border-radius: 14px; padding: 14px; box-shadow: var(--sh-md); display: grid; gap: 10px; }
.booker__t { font-weight: 800; font-size: 13px; }
.booker__days, .booker__times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.booker__days span { display: grid; justify-items: center; padding: 6px 0; border-radius: 10px; border: 1px solid #E9E4DA; font-size: 9.5px; color: #6B7A76; }
.booker__days b { font-size: 13px; color: #16302B; }
.booker__times span { text-align: center; padding: 6px 0; border-radius: 8px; background: #F4F1EA; font-size: 10.5px; font-weight: 600; }
.booker .is-on { background: #0E7C66; border-color: #0E7C66; color: #fff; }
.booker .is-on b { color: #fff; }
.booker__btn { text-align: center; padding: 9px; border-radius: 10px; background: #16302B; color: #fff; font-size: 11.5px; font-weight: 700; }
.site__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.site__cards span { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 10px; background: #fff; font-size: 11.5px; font-weight: 700; }
.ic { width: 18px; height: 18px; border-radius: 6px; }
.ic--mint { background: var(--mint-50); box-shadow: inset 0 0 0 5px #BDEBD9; } .ic--blue { background: var(--blue-50); box-shadow: inset 0 0 0 5px var(--blue-100); } .ic--peach { background: var(--peach-50); box-shadow: inset 0 0 0 5px #FFD5C2; }

.float { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 16px; background: #fff; box-shadow: var(--sh-md), 0 0 0 1px var(--line); font-size: 14px; animation: floaty 6s ease-in-out infinite; }
.float b { display: block; color: var(--ink); font-weight: 700; }
.float small { display: block; color: var(--mute); font-size: 12.5px; }
.float__ico { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; flex: none; }
.float__ico svg { width: 20px; height: 20px; }
.float__ico--sun { background: var(--sun-50); color: var(--sun); }
.float__ico--mint { background: var(--mint-50); color: var(--mint); }
.float__ico--blue { background: var(--blue-50); color: var(--blue); }
.float--rating { top: 0; right: 0; }
.float--rank { bottom: 64px; left: 0; animation-delay: -2s; }
.float--toast { bottom: 12px; right: 8%; animation-delay: -4s; }
.toast.is-swap > div { animation: fadeUp .4s var(--ease); }
@keyframes floaty { 50% { transform: translateY(-6px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.marq { display: block; aspect-ratio: 200 / 222; }
.marq svg { width: 100%; height: 100%; overflow: visible; }
.marq--hero { position: absolute; z-index: 3; width: clamp(84px, 8vw, 112px); left: -14px; top: -34px; }
.hero__note { position: absolute; right: 24px; bottom: -18px; font-size: 12px; color: var(--mute); }

/* mascot motion */
.marq__bob { animation: bob 3.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-4px); } }
.marq__blink { transform-box: fill-box; transform-origin: center; animation: blink 5s infinite; }
@keyframes blink { 0%, 94%, 100% { transform: scaleY(1); } 96% { transform: scaleY(.1); } }
.marq__look { transition: transform .25s var(--ease); }
.marq__wave { transform-box: view-box; transform-origin: 146px 112px; animation: wave 1.6s ease-in-out infinite alternate; }
@keyframes wave { from { transform: rotate(-8deg); } to { transform: rotate(12deg); } }
.marq__sparkle { transform-box: fill-box; transform-origin: center; animation: twinkle 2.8s ease-in-out infinite; }
.marq__sparkle--2 { animation-delay: -1.4s; }
@keyframes twinkle { 0%, 100% { transform: scale(1) rotate(0); opacity: 1; } 50% { transform: scale(.6) rotate(20deg); opacity: .6; } }

/* ---------- built for ---------- */
.builtfor { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.builtfor__inner { display: flex; align-items: center; gap: 16px 32px; flex-wrap: wrap; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; }
.builtfor p { font-weight: 700; font-size: 14px; color: var(--mute); }
.builtfor ul { display: flex; flex-wrap: wrap; gap: 8px; }
.builtfor li { padding: 8px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-weight: 600; font-size: 14px; color: var(--ink); }

/* ---------- sections ---------- */
.section { padding: var(--sec) 0; }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--bg-soft); }
.section--tight { padding: clamp(64px, 8vw, 96px) 0; }
.section .head + * { margin-top: clamp(40px, 5vw, 64px); }

/* ---------- services bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.card { position: relative; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.card h3 { font: 700 clamp(21px, 2vw, 26px)/1.2 var(--f-sans); letter-spacing: -.02em; color: var(--ink); }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card--blue { background: var(--blue-50); border-color: var(--blue-100); }
.card--lilac { background: var(--lilac-50); border-color: #E4DBFF; }
.card--mint { background: var(--mint-50); border-color: #CDEFE2; }
.card--web { grid-column: span 4; grid-row: span 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: end; }
.card--web .card__top { display: flex; flex-direction: column; gap: 14px; align-self: start; }
.card--brand, .card--seo { grid-column: span 2; }
.card--mini { grid-column: span 2; gap: 10px; }
.card--mini h3 { font-size: 19px; }
.tag { align-self: flex-start; display: inline-flex; padding: 6px 12px; border-radius: 999px; font: 700 12.5px/1.2 var(--f-sans); }
.tag--blue { background: #fff; color: var(--blue); } .tag--lilac { background: #fff; color: var(--lilac); } .tag--mint { background: #fff; color: var(--mint); }
.tag--white { background: rgba(255,255,255,.18); color: #fff; }
.card .tag--lilac, .card .tag--mint, .card .tag--blue { box-shadow: var(--sh-sm); }
.tier .tag--lilac { background: var(--lilac-50); } .tier .tag--mint { background: var(--mint-50); }
.price { margin-top: auto; font-size: 14.5px; color: var(--mute); }
.price b { font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.checks { display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 30px; font-size: 15.5px; color: var(--ink-2); }
.checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 10.5 2.6 2.6L14 7.6' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
.card--blue .checks li::before { background-color: var(--blue); }

.card__art { display: grid; place-items: end center; height: 100%; }
.phone { width: min(100%, 220px); border-radius: 30px; padding: 8px; background: var(--ink); box-shadow: var(--sh-lg); transform: rotate(4deg) translateY(16px); transition: transform .5s var(--ease); }
.card--web:hover .phone { transform: rotate(2deg) translateY(8px); }
.phone__in { border-radius: 23px; background: #FAF8F4; padding: 18px 14px 16px; display: grid; gap: 10px; color: #16302B; min-height: 300px; align-content: start; }
.phone__logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13px; }
.phone__logo i { width: 16px; height: 16px; border-radius: 50%; background: #0E7C66; }
.phone__in b { font-size: 20px; line-height: 1.1; letter-spacing: -.02em; margin-top: 8px; }
.phone__stars { font-size: 12px; color: var(--sun); letter-spacing: 1px; }
.phone__stars em { font-style: normal; color: #16302B; font-weight: 700; }
.phone__slot { margin-top: 10px; padding: 12px; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 700; box-shadow: var(--sh-sm); }
.phone__btn { padding: 12px; border-radius: 999px; background: #0E7C66; color: #fff; text-align: center; font-size: 12.5px; font-weight: 700; }

.brandboard { margin-top: 6px; display: grid; gap: 10px; }
.brandboard__logo { display: flex; align-items: center; gap: 10px; padding: 18px; border-radius: var(--r-md); background: #FAF8F4; font: 800 22px/1 var(--f-sans); letter-spacing: -.02em; color: #16302B; box-shadow: var(--sh-sm); }
.brandboard__logo svg { width: 32px; height: 32px; }
.brandboard__sw { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.brandboard__sw i { height: 38px; border-radius: 10px; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }

.maplist { margin-top: 6px; display: grid; gap: 8px; }
.maplist li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: #fff; font-weight: 600; font-size: 14px; color: var(--ink); box-shadow: var(--sh-sm); }
.maplist b { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); font-size: 12px; color: var(--mute); flex: none; }
.maplist span { margin-left: auto; font-size: 12.5px; color: var(--sun-ink); }
.maplist .is-us { box-shadow: 0 0 0 2px var(--mint), var(--sh-sm); }
.maplist .is-us b { background: var(--mint); color: #fff; }

.mini-ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.mini-ico svg { width: 24px; height: 24px; }
.mini-ico--blue { background: var(--blue-50); color: var(--blue); }
.mini-ico--mint { background: var(--mint-50); color: var(--mint); }
.mini-ico--lilac { background: var(--lilac-50); color: var(--lilac); }
.mini-ico--peach { background: var(--peach-50); color: var(--peach); }
.mini-ico--sun { background: var(--sun-50); color: var(--sun-ink); }

/* ---------- audit ---------- */
.audit__head { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.audit__marq .marq { width: clamp(120px, 14vw, 180px); margin-bottom: -18px; position: relative; z-index: 2; }
.audit__head + .chart { margin-top: 0; }
.chart { margin: 0; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md); overflow: hidden; }
.chart__bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 24px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--mute); }
.chart__bar b { color: var(--ink); margin-right: 6px; }
.chart__status { color: var(--peach); font-weight: 600; }
.chart__status.is-done { color: var(--mint); }
.chart__body { display: grid; grid-template-columns: 1fr 340px; }
.chart__grid { padding: clamp(20px, 3vw, 36px); border-right: 1px solid var(--line); display: grid; align-content: center; gap: 18px; }
#odontogram { width: 100%; height: auto; overflow: visible; }
.chart__legend { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.chart__legend span { display: inline-flex; align-items: center; gap: 8px; }
.sw { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.sw--treat { background: var(--peach); } .sw--sound { background: var(--mint); }
.tooth { cursor: pointer; outline: none; }
.tooth .s { fill: #fff; stroke: #C9D2E3; stroke-width: 1; transition: fill .35s var(--ease), stroke .3s; }
.tooth .frame { fill: none; stroke: transparent; stroke-width: 2; rx: 6; transition: stroke .2s; }
.tooth .num { font: 600 10px var(--f-sans); fill: var(--mute); text-anchor: middle; }
.tooth.is-charted.treat .s.m { fill: var(--peach); stroke: var(--peach); }
.tooth.is-charted.sound .s.m { fill: var(--mint); stroke: var(--mint); }
.tooth.is-probe .frame { stroke: var(--line-2); }
.tooth:hover .frame, .tooth:focus-visible .frame, .tooth.is-active .frame { stroke: var(--ink); }
.tooth.is-active .num, .tooth:hover .num { fill: var(--ink); }
.axis { stroke: var(--line); stroke-width: 1; }
.axis-label { font: 700 10px var(--f-sans); fill: var(--mute); letter-spacing: .04em; }
.readout { padding: 28px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.readout__top { display: flex; align-items: center; justify-content: space-between; }
.readout__num { font: 800 56px/1 var(--f-sans); letter-spacing: -.04em; color: var(--ink); font-variant-numeric: tabular-nums; }
.chip { padding: 7px 12px; border-radius: 999px; font: 700 12px/1 var(--f-sans); background: var(--line); color: var(--mute); }
.chip.treat { background: var(--peach-50); color: #C2451A; }
.chip.sound { background: var(--mint-50); color: #0B7F5F; }
.readout__q { font-size: 13px; font-weight: 600; color: var(--mute); margin-top: 6px; }
.readout__title { font: 700 20px/1.3 var(--f-sans); color: var(--ink); }
.readout__text { font-size: 15px; color: var(--ink-2); min-height: 7.2em; }
.readout__tally { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; color: var(--mute); }
.readout__tally b { font-size: 22px; margin-right: 4px; }
#t-red { color: var(--peach); } #t-blue { color: var(--mint); }
.readout.is-swap .readout__title, .readout.is-swap .readout__text { animation: fadeUp .35s var(--ease); }
.quads { margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quad { border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); padding: 22px; }
.quad__head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.quad__head h3 { font: 700 18px var(--f-sans); color: var(--qc); }
.quad__head span { font-size: 12px; color: var(--mute); }
.quad__desc { font-size: 14px; color: var(--mute); margin: 6px 0 12px; }
.quad ol li { display: grid; grid-template-columns: 30px 1fr; gap: 8px; padding: 7px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.quad ol li b { font-size: 12px; color: var(--mute); padding-top: 2px; }
.quad:nth-child(1) { --qc: var(--lilac); } .quad:nth-child(2) { --qc: var(--blue); } .quad:nth-child(3) { --qc: var(--mint); } .quad:nth-child(4) { --qc: var(--peach); }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps::before { content: ""; position: absolute; left: 10%; right: 10%; top: 28px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 14px); z-index: 0; }
.step { position: relative; z-index: 1; display: grid; gap: 10px; justify-items: start; padding: 0 4px; }
.step__n { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--c50); color: var(--c); font: 800 22px var(--f-sans); border: 4px solid #fff; box-shadow: var(--sh-sm); }
.step h3 { font: 700 19px/1.25 var(--f-sans); color: var(--ink); margin-top: 8px; }
.step p { font-size: 15px; color: var(--mute); }

/* ---------- reporting ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.report { border-radius: var(--r-lg); background: #fff; box-shadow: var(--sh-lg), 0 0 0 1px var(--line); padding: 28px; }
.report__head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 14px; }
.report__head b { color: var(--ink); }
.report__head span { color: var(--mute); font-size: 12.5px; padding: 4px 10px; border-radius: 999px; background: var(--bg-soft); }
.report__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0 24px; }
.k { padding: 14px; border-radius: 14px; background: var(--kb); }
.k dt { font-size: 12px; font-weight: 600; color: var(--mute); min-height: 2.6em; }
.k dd { margin: 6px 0 0; font: 800 28px/1 var(--f-sans); letter-spacing: -.03em; color: var(--kc); }
.k--blue { --kb: var(--blue-50); --kc: var(--blue); } .k--mint { --kb: var(--mint-50); --kc: var(--mint); } .k--lilac { --kb: var(--lilac-50); --kc: var(--lilac); } .k--peach { --kb: var(--peach-50); --kc: var(--peach); }
.report__label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.bars { display: grid; gap: 10px; }
.bars li { display: grid; grid-template-columns: 124px 1fr 28px; gap: 12px; align-items: center; font-size: 14px; }
.bars i { display: block; height: 10px; border-radius: 999px; background: var(--c); transform-origin: left; transform: scaleX(calc(var(--v) * 2.2)); transition: transform 1s var(--ease); }
.report:not(.is-in) .bars i { transform: scaleX(0); }
.bars b { text-align: right; color: var(--ink); }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__card { border-radius: var(--r-lg); padding: 28px; background: #fff; border: 1px solid var(--line); display: grid; gap: 12px; align-content: start; transition: transform .3s var(--ease), box-shadow .3s; }
.why__card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.why__card h3 { font: 700 19px/1.3 var(--f-sans); color: var(--ink); margin-top: 6px; }
.why__card p { font-size: 15px; color: var(--mute); }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { position: relative; border-radius: var(--r-lg); padding: 32px 28px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.tier__price { font-size: 15px; color: var(--mute); }
.tier__price b { font: 800 44px/1 var(--f-sans); letter-spacing: -.035em; color: var(--ink); margin-right: 4px; }
.tier__for { font-size: 15px; color: var(--mute); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tier .checks { flex: 1; margin-bottom: 8px; }
.tier--feature { background: var(--ink); border-color: var(--ink); box-shadow: 0 30px 60px -30px rgba(19,33,60,.55); color: #fff; }
.tier--feature .tier__price, .tier--feature .tier__for { color: rgba(255,255,255,.8); }
.tier--feature .tier__price b { color: #fff; }
.tier--feature .tier__for { border-bottom-color: rgba(255,255,255,.2); }
.tier--feature .checks li { color: #fff; }
.tier--feature .checks li::before { background-color: rgba(255,255,255,.2); }
.tier__flag { position: absolute; top: 24px; right: 24px; padding: 6px 12px; border-radius: 999px; background: #2DD4BF; color: var(--ink); font: 700 12px/1 var(--f-sans); }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq .head { position: sticky; top: 110px; }
.faq__list { display: grid; gap: 12px; }
.faq details { border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); transition: background-color .2s, border-color .2s; }
.faq details[open] { background: #fff; border-color: var(--line); box-shadow: var(--sh-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative; font: 700 17px/1.4 var(--f-sans); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 18px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%2313213C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px no-repeat; box-shadow: var(--sh-sm); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--ink-2); font-size: 15.5px; max-width: 64ch; }

/* ---------- cta + form ---------- */
.cta { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; padding: clamp(28px, 5vw, 56px); border-radius: 36px; background: radial-gradient(60% 70% at 0% 100%, rgba(45,212,191,.16), transparent 70%), var(--ink); color: #fff; overflow: hidden; }
.cta::before { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.08); pointer-events: none; }
.cta__copy { position: relative; display: grid; gap: 18px; align-content: start; }
.cta .h2 { color: #fff; }
.cta__copy > p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 42ch; }
.cta__list { display: grid; gap: 10px; }
.cta__list li { position: relative; padding-left: 30px; font-weight: 600; }
.cta__list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 10.5 2.6 2.6L14 7.6' stroke='white' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
.marq--cta { width: clamp(120px, 12vw, 160px); margin-top: 12px; }
.form { position: relative; background: #fff; color: var(--ink-2); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); display: grid; gap: 16px; box-shadow: var(--sh-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-weight: 700; font-size: 14px; color: var(--ink); padding: 0; }
.opt { font-weight: 500; color: var(--mute); }
.field input:not([type=checkbox]), .field textarea { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field textarea { height: auto; min-height: 90px; padding: 12px 14px; resize: vertical; }
.field input:not([type=checkbox]):hover, .field textarea:hover { border-color: #AEB9CC; }
.field input:not([type=checkbox]):focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px #E3F6EF; }
.field input[aria-invalid=true] { border-color: var(--peach); box-shadow: 0 0 0 4px var(--peach-50); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { margin-bottom: 8px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chips label > span { display: inline-block; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; font-weight: 600; color: var(--ink-2); transition: all .2s var(--ease); }
.chips input:hover + span { border-color: var(--ink); }
.chips input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chips input:focus-visible + span { outline: 3px solid color-mix(in srgb, var(--blue) 55%, transparent); outline-offset: 2px; }
.form__error { color: #C2451A; font-size: 14px; font-weight: 600; }
.form__note { font-size: 13px; color: var(--mute); text-align: center; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 64px 0 28px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.foot__blurb { margin-top: 14px; max-width: 30ch; color: var(--mute); font-size: 15px; }
.foot p { font-weight: 700; color: var(--ink); font-size: 14px; }
.foot ul { margin-top: 12px; display: grid; gap: 8px; font-size: 15px; color: var(--mute); }
.foot ul a { text-decoration: none; color: var(--ink-2); }
.foot ul a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--mint); }
.foot__base { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--mute); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 680px; }
  .card--web { grid-column: span 6; }
  .card--brand, .card--seo { grid-column: span 3; }
  .quads { grid-template-columns: 1fr 1fr; }
  .chart__body { grid-template-columns: 1fr; }
  .chart__grid { border-right: 0; border-bottom: 1px solid var(--line); }
  .readout__text { min-height: 0; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .steps::before { display: none; }
  .why { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .split, .faq, .cta, .tiers, .audit__head { grid-template-columns: 1fr; }
  .faq .head { position: static; }
  .audit__marq { display: none; }
  .card--web { grid-template-columns: 1fr; }
  .card__art { place-items: center; }
  .card--brand, .card--seo, .card--mini { grid-column: span 6; }
  .tiers { max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hide-sm { display: none; }
  .nav__inner { height: 64px; gap: 12px; }
  .logo { font-size: 18px; } .logo__mark { width: 30px; height: 30px; }
  .nav .btn--sm { padding: 0 14px; font-size: 13.5px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .hero__visual { padding: 28px 0 40px; }
  .site__links { display: none; }
  .site__hero { grid-template-columns: 1fr; }
  .site__cards { grid-template-columns: 1fr 1fr; } .site__cards span:last-child { display: none; }
  .float { padding: 9px 12px 9px 9px; font-size: 12.5px; gap: 9px; }
  .float__ico { width: 32px; height: 32px; }
  .float small { font-size: 11px; }
  .float--rank { bottom: 56px; left: auto; right: 0; }
  .float--toast { display: none; }
  .marq--hero { width: 72px; left: -4px; top: -20px; }
  .hero__note { right: 0; bottom: -6px; }
  .builtfor__inner { justify-content: flex-start; }
  .quads, .steps, .why, .foot__grid, .form__row { grid-template-columns: 1fr; }
  .report { padding: 20px; }
  .report__kpis { grid-template-columns: 1fr 1fr; }
  .bars li { grid-template-columns: 1fr 24px; }
  .bars span { grid-column: 1 / -1; }
  .readout__num { font-size: 46px; }
  .cta { border-radius: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- brand logos (client-supplied) ---------- */
.logo img { display: block; height: 30px; width: auto; }
.logo--foot img { height: 34px; }
@media (max-width: 600px) { .logo img { height: 23px; } }

/* dark footer carries the white wordmark */
.foot { background: var(--ink); border-top: 0; color: rgba(255,255,255,.7); }
.foot p { color: #fff; }
.foot__blurb { color: rgba(255,255,255,.65); }
.foot ul { color: rgba(255,255,255,.6); }
.foot ul a { color: rgba(255,255,255,.85); }
.foot ul a:hover { color: #fff; text-decoration-color: #2DD4BF; }
.foot__base { border-top-color: rgba(255,255,255,.12); color: rgba(255,255,255,.55); }

/* emblem beside the wordmark */
.logo { gap: 10px; }
.logo img.logo__icon { height: 38px; width: 38px; }
@media (max-width: 600px) { .logo img.logo__icon { height: 30px; width: 30px; } .logo { gap: 8px; } }

/* =========================================================
   Hero, alive: staged entrance, rotating word, living mockup
   ========================================================= */
.hero::before { content: none; }
.hero { isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .7; }
.blob--a { width: 520px; height: 520px; right: -80px; top: -140px; background: #DDF4EA; animation: drift 22s ease-in-out infinite alternate; }
.blob--b { width: 420px; height: 420px; right: 26%; bottom: -200px; background: #FDE7DB; animation: drift 26s ease-in-out infinite alternate-reverse; }
.blob--c { width: 360px; height: 360px; right: -60px; bottom: 10%; background: #ECE6FF; animation: drift 30s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate(-60px, 50px) scale(1.12); } }
.hero__grain { position: absolute; inset: 0; opacity: .35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* headline: lines rise out of a mask, one after another */
.hero__title { letter-spacing: -.04em; }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .ln > span { display: inline-block; transform: translateY(105%); animation: lineUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero__title .ln:nth-child(2) > span { animation-delay: .08s; }
.hero__title .ln:nth-child(3) > span { animation-delay: .16s; }
.hero__title .ln:nth-child(4) > span { animation-delay: .24s; }
@keyframes lineUp { to { transform: none; } }
.hero__copy > :not(.hero__title) { opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.hero__copy > .hero__lede { animation-delay: .45s; }
.hero__copy > .hero__ctas { animation-delay: .55s; }
.hero__copy > .hero__proof { animation-delay: .65s; }

/* rotating accent word */
.rotor { position: relative; display: inline-grid; vertical-align: bottom; font: italic 400 1.12em/1 var(--f-accent); color: var(--mint); overflow: hidden; padding: 0 .12em .1em 0; }
.rotor__w { grid-area: 1 / 1; transform: translateY(110%); opacity: 0; transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .5s; }
.rotor__w.is-on { transform: none; opacity: 1; }
.rotor__w.is-out { transform: translateY(-110%); opacity: 0; }
.rotor::after { content: ""; position: absolute; left: 0; right: .14em; bottom: .04em; height: .06em; border-radius: 99px; background: currentColor; opacity: .3; transform-origin: left; animation: underline 3.2s ease-in-out infinite; }
@keyframes underline { 0% { transform: scaleX(0); } 40%, 85% { transform: scaleX(1); } 100% { transform: scaleX(0); } }

/* CTA polish: a slow light sweep */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.26), transparent); transform: skewX(-20deg); animation: sheen 5s ease-in-out infinite 2s; }
@keyframes sheen { 0%, 70% { left: -60%; } 100% { left: 130%; } }

/* the mockup: floats in 3D and follows the pointer */
.hero__visual { perspective: 1400px; }
.browser { transform: rotateX(var(--rx, 4deg)) rotateY(var(--ry, -8deg)); transition: transform .8s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 2px 4px rgba(19,33,60,.04), 40px 60px 100px -40px rgba(19,33,60,.35), 0 0 0 1px var(--line);
  opacity: 0; animation: mockIn 1.2s cubic-bezier(.2,.8,.2,1) .3s forwards; }
@keyframes mockIn { from { opacity: 0; translate: 0 40px; } to { opacity: 1; translate: 0 0; } }
.hero .float { opacity: 0; animation: popIn .7s cubic-bezier(.2,1.4,.4,1) forwards, floaty 6s ease-in-out infinite; }
.hero .float--rating { animation-delay: .9s, 1.6s; }
.hero .float--rank { animation-delay: 1.1s, 2.8s; }
.hero .float--toast { animation-delay: 1.3s, 4s; }
@keyframes popIn { from { opacity: 0; scale: .9; } to { opacity: 1; scale: 1; } }
.marq--hero { opacity: 0; animation: peek .9s cubic-bezier(.2,1.4,.4,1) 1.5s forwards; }
@keyframes peek { from { opacity: 0; translate: 0 30px; rotate: -8deg; } to { opacity: 1; translate: 0 0; rotate: 0deg; } }

/* living booking widget */
.booker__days span, .booker__times span { transition: background-color .3s, color .3s, border-color .3s, scale .3s; }
.booker .is-on { scale: 1.06; }
.booker__btn { transition: background-color .35s, scale .2s; }
.booker__btn.is-press { scale: .95; }
.booker__btn.is-done { background: #0E7C66; }
.toast.is-ping { animation: ping .6s cubic-bezier(.2,1.4,.4,1), floaty 6s ease-in-out infinite; opacity: 1; }
@keyframes ping { 0% { scale: .93; } 60% { scale: 1.04; } 100% { scale: 1; } }
.toast .float__ico { position: relative; }
.toast.is-ping .float__ico::after { content: ""; position: absolute; inset: -4px; border-radius: 14px; border: 2px solid var(--mint); animation: ring .8s ease-out forwards; }
@keyframes ring { from { opacity: .8; transform: scale(.8); } to { opacity: 0; transform: scale(1.45); } }
.toast .float__ico--blue { background: var(--mint-50); color: var(--mint); }

@media (prefers-reduced-motion: reduce) {
  .hero__title .ln > span, .browser, .hero .float, .marq--hero, .hero__copy > * { translate: none !important; transform: none !important; opacity: 1 !important; animation: none !important; }
  .rotor::after, .btn--primary::after, .blob { animation: none; }
}

/* rotor alignment: sit on the headline baseline, never wrap */
.rotor { vertical-align: baseline; line-height: 1; margin-bottom: -.12em; }
.hero__title .ln > span { white-space: nowrap; }
@media (max-width: 600px) { .hero__title { font-size: clamp(34px, 10.2vw, 44px); } }
.rotor::after { content: none; }

/* =========================================================
   Brand teal (from the logo) + site-wide life
   ========================================================= */
:root { --mint: #01938E; --mint-50: #E3F4F3; --teal: #01938E; --teal-deep: #017C78; --teal-ink: #015F5C; }
::selection { background: #BFE8E6; }

/* ---------- section headings rise word by word ---------- */
.h2 .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.h2 .w > span { display: inline-block; transform: translateY(105%); transition: transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i) * 45ms); }
.head.is-in .h2 .w > span, .cta.is-in .h2 .w > span { transform: none; }

/* softer, richer reveal */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ---------- built-for marquee ---------- */
.builtfor__inner { flex-wrap: nowrap; }
.builtfor p { flex: none; }
.builtfor__track { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.builtfor__row { display: flex; gap: 8px; width: max-content; animation: marquee 40s linear infinite; flex-wrap: nowrap !important; }
.builtfor__track:hover .builtfor__row { animation-play-state: paused; }
.builtfor li { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- spotlight cards ---------- */
.card, .why__card, .tier, .quad { --mx: 50%; --my: 50%; }
.card::after, .why__card::after, .tier::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(1,147,142,.10), transparent 60%); }
.why__card, .tier { position: relative; }
.card:hover::after, .why__card:hover::after, .tier:hover::after { opacity: 1; }
.tier--feature::after { background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255,255,255,.10), transparent 60%); }
.card { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(19,33,60,.28); }

/* ---------- phone screen scrolls ---------- */
.phone__in { overflow: hidden; height: 300px; min-height: 0; display: block; padding: 0; }
.phone__scroll { display: grid; gap: 10px; padding: 18px 14px 16px; animation: phoneScroll 12s cubic-bezier(.6,0,.4,1) infinite; }
@keyframes phoneScroll { 0%, 22% { transform: translateY(0); } 50%, 72% { transform: translateY(-190px); } 100% { transform: translateY(0); } }
.phone__h { margin-top: 10px; font-weight: 800; font-size: 13px; }
.phone__row { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 700; box-shadow: var(--sh-sm); }
.phone__team { display: flex; gap: 8px; }
.phone__team i { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(160deg, #F2D9C4, #D8B79C); box-shadow: inset 0 -12px 0 #0E7C66; }
.phone__team i:nth-child(2) { background: linear-gradient(160deg, #E6C3A5, #B98D6B); }
.phone__team i:nth-child(3) { background: linear-gradient(160deg, #F6E3D2, #E2C0A3); }

/* ---------- map list: climb to #1 ---------- */
.maplist li { transition: transform .9s cubic-bezier(.3,1.3,.5,1), box-shadow .4s; }
.maplist:not(.is-live) .is-us { transform: translateY(calc(200% + 16px)); box-shadow: var(--sh-sm); }
.maplist:not(.is-live) .is-them { transform: translateY(calc(-100% - 8px)); }
.maplist.is-live .is-us { transition-delay: .1s; }

/* ---------- process: the line draws, steps light up in turn ---------- */
.steps::before { background: var(--line-2); height: 2px; }
.steps::after { content: ""; position: absolute; left: 10%; right: 10%; top: 28px; height: 2px; background: var(--teal); transform-origin: left; transform: scaleX(0); transition: transform 1.8s cubic-bezier(.4,0,.2,1) .2s; z-index: 0; }
.steps.is-in::after { transform: scaleX(1); }
.step__n { transition: transform .5s cubic-bezier(.2,1.4,.4,1), background-color .4s, color .4s; }
.steps:not(.is-in) .step__n { transform: scale(.6); }
.steps .step:nth-child(2) .step__n { transition-delay: .35s; } .steps .step:nth-child(3) .step__n { transition-delay: .7s; }
.steps .step:nth-child(4) .step__n { transition-delay: 1.05s; } .steps .step:nth-child(5) .step__n { transition-delay: 1.4s; }
.step:hover .step__n { background: var(--c); color: #fff; transform: translateY(-3px); }

/* ---------- report ---------- */
.report { transition: transform .6s var(--ease), box-shadow .6s; }
.report:hover { transform: translateY(-4px) rotate(-.3deg); }
.k { transition: transform .3s var(--ease); }
.k:hover { transform: translateY(-3px); }

/* ---------- FAQ opens smoothly ---------- */
:root { interpolate-size: allow-keywords; }
.faq details::details-content { block-size: 0; overflow: hidden; transition: block-size .4s var(--ease), content-visibility .4s allow-discrete; }
.faq details[open]::details-content { block-size: auto; }
.faq summary { transition: color .2s; }
.faq summary:hover { color: var(--teal); }

/* ---------- CTA: a slow teal glow drifts ---------- */
.cta { background: var(--ink); isolation: isolate; }
.cta::before { width: 70%; right: -20%; top: -40%; background: radial-gradient(circle, rgba(1,147,142,.45), transparent 65%); filter: blur(10px); animation: glow 14s ease-in-out infinite alternate; z-index: -1; }
.cta::after { content: ""; position: absolute; left: -15%; bottom: -45%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(1,147,142,.25), transparent 65%); animation: glow 18s ease-in-out infinite alternate-reverse; z-index: -1; pointer-events: none; }
@keyframes glow { to { transform: translate(-60px, 60px) scale(1.15); } }
.cta__list li::before { background-color: var(--teal); }

/* brand-teal accents */
.tier__flag { background: var(--teal); color: #fff; }
.btn--white { color: var(--teal-ink); }
.nav__progress { display: none; }
.nav::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--teal); transform-origin: left; transform: scaleX(var(--p, 0)); }

/* ---------- footer: logo teal ---------- */
.foot { background: var(--teal); color: rgba(255,255,255,.85); position: relative; overflow: hidden; isolation: isolate; }
.foot::before { content: ""; position: absolute; right: -10%; top: -60%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 65%); z-index: -1; pointer-events: none; }
.foot p { color: #fff; }
.foot__blurb { color: rgba(255,255,255,.85); }
.foot ul { color: rgba(255,255,255,.8); }
.foot ul a { color: #fff; }
.foot ul a:hover { color: #fff; text-decoration-color: rgba(255,255,255,.7); }
.foot__base { border-top-color: rgba(255,255,255,.22); color: rgba(255,255,255,.8); }

@media (max-width: 600px) {
  .builtfor__inner { flex-wrap: wrap; }
  .builtfor__track { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .h2 .w > span, .maplist li, .steps .step__n { transform: none !important; }
  .steps::after { transform: scaleX(1); }
  .reveal { filter: none; }
  .builtfor__row, .phone__scroll, .cta::before, .cta::after { animation: none; }
}
.steps::before, .steps::after { left: 28px; right: calc(20% - 28px); }

/* ---------- GSAP blending: sections become transparent over one tinted backdrop ---------- */
.has-blend .section, .has-blend .section--soft, .has-blend .section--blue, .has-blend .builtfor { background: transparent; }
.has-blend .builtfor { border-color: rgba(19,33,60,.07); }
.has-blend .nav { background: rgba(255,255,255,.72); }
.has-blend .section > .wrap { will-change: transform, opacity; transform-origin: 50% 30%; }
.has-blend .foot { will-change: clip-path; }

/* ---------- section wave dividers (built by transitions.js) ---------- */
.has-divider { position: relative; padding-bottom: calc(var(--sec) + 110px) !important; }
.divider { position: absolute; left: 0; right: 0; bottom: -1px; height: clamp(90px, 11vw, 170px); overflow: hidden; pointer-events: none; z-index: 0; }
.divider__l { position: absolute; left: 0; bottom: 0; width: 200%; height: 100%; transform-origin: 50% 100%; will-change: transform; }
.divider__l--2 { filter: drop-shadow(0 -10px 18px rgba(19,33,60,.08)); }
.has-divider > .wrap { position: relative; z-index: 1; }
.has-blend .foot { will-change: auto; margin-top: -1px; }
.divider__l { max-width: none; }

/* divider shapes: every child svg fills the strip; peak/wave layers are double width for drift */
.divider > svg { position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; max-width: none; }
.divider > svg.pk { width: 200%; will-change: transform; }
.divider--cusps, .divider--bars, .divider--bubbles { height: clamp(100px, 12vw, 180px); }
.divider svg * { transform-box: fill-box; }

/* ---------- hero badge: who this is for, impossible to miss ---------- */
.badge { position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 6px 6px 6px 6px; border-radius: 999px; overflow: hidden; isolation: isolate;
  background: #E3F4F3; border: 1px solid rgba(1,147,142,.28); color: var(--teal-ink); text-decoration: none; font-size: 15px; font-weight: 600;
  box-shadow: 0 10px 24px -14px rgba(1,147,142,.55); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.badge:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(1,147,142,.7); }
.badge::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.75) 50%, transparent 70%); transform: translateX(-120%); animation: badgeSheen 4.5s ease-in-out infinite 1.2s; }
@keyframes badgeSheen { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.badge__ico { position: relative; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; flex: none; }
.badge__ico svg { width: 18px; height: 18px; }
.badge__ico::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--teal); opacity: 0; animation: badgePulse 2.4s ease-out infinite; }
@keyframes badgePulse { 0% { opacity: .6; transform: scale(.85); } 100% { opacity: 0; transform: scale(1.35); } }
.badge__txt b { font-weight: 800; color: var(--teal); }
.badge__cta { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; font-size: 14px; box-shadow: 0 2px 6px -2px rgba(19,33,60,.15); }
.badge__cta svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.badge:hover .badge__cta svg { transform: translateX(3px); }
@media (max-width: 600px) {
  .badge { font-size: 13.5px; gap: 9px; padding-right: 14px; }
  .badge__cta { display: none; }
  .badge__ico { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) { .badge::after, .badge__ico::before { animation: none; } }
.badge__txt, .badge__cta { white-space: nowrap; }
.badge { max-width: 100%; }
.badge__cta svg { flex: none; width: 15px; height: 15px; }

/* ---------- animated navigation ---------- */
.nav__links a { position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }
section[tabindex="-1"]:focus { outline: none; }

/* ---------- web design card: no dead space ---------- */
.card--web { align-items: stretch; }
.card--web .card__top { height: 100%; }
.card--web .price { margin-top: 18px; }
.card__art { place-items: center; }
.card--web .phone { width: min(100%, 240px); transform: rotate(4deg); }
.card--web:hover .phone { transform: rotate(2deg) translateY(-6px); }
.card--web .phone__in { height: 440px; }
.webx { display: grid; gap: 10px; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--blue-100); }
.webx__h { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
.webx__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.webx__chips li { padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--blue-100); font-size: 13px; font-weight: 600; color: var(--ink); }
.scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.score { position: relative; display: grid; justify-items: center; gap: 4px; padding: 12px 8px; border-radius: 14px; background: #fff; box-shadow: var(--sh-sm); }
.score svg { width: 52px; height: 52px; transform: rotate(-90deg); }
.score circle { fill: none; stroke: #EEF1F6; stroke-width: 4; }
.score .score__arc { stroke: var(--c); stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.4s var(--ease) .2s; }
.card--web.is-in .score__arc { stroke-dashoffset: calc(100 - var(--v)); }
.score b { position: absolute; top: 12px; height: 52px; display: grid; place-items: center; font-size: 15px; color: var(--ink); }
.score span { font-size: 12px; font-weight: 600; color: var(--mute); }
@media (max-width: 860px) { .card--web .phone__in { height: 340px; } }
@media (prefers-reduced-motion: reduce) { .score .score__arc { stroke-dashoffset: calc(100 - var(--v)); } }
.foot__nobody { display: inline-block; margin-top: 6px; padding: 3px 11px; border-radius: 999px; background: #FFD166; color: #13213C; font-weight: 800; letter-spacing: -.01em; box-shadow: 0 6px 16px -8px rgba(0,0,0,.35); }
.foot__hello { font-weight: 800; }

/* ---------- footer legal links ---------- */
.foot__legal { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.foot__legal a { color: #fff; text-decoration: none; font-weight: 600; }
.foot__legal a:hover, .foot__legal a[aria-current] { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #FFD166; }

/* ---------- legal pages ---------- */
.legal { padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 120px); }
.legal__wrap { max-width: 820px; }
.legal__title { font: 800 clamp(38px, 5vw, 58px)/1.05 var(--f-sans); letter-spacing: -.035em; color: var(--ink); margin: 16px 0 10px; }
.legal__date { color: var(--mute); font-size: 14.5px; }
.legal__tabs { display: flex; gap: 8px; margin: 28px 0 40px; flex-wrap: wrap; }
.legal__tabs a { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--card); text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.legal__tabs a[aria-current] { background: var(--teal); border-color: var(--teal); color: #fff; }
.legal__body { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--sh-sm); }
.legal__lede { font-size: 18.5px; color: var(--ink); line-height: 1.6; }
.legal__body h2 { font: 700 21px/1.3 var(--f-sans); color: var(--ink); margin: 34px 0 10px; letter-spacing: -.01em; }
.legal__body p, .legal__body li { font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.legal__body p + p { margin-top: 10px; }
.legal__body ul { list-style: disc; padding-left: 22px; margin-top: 8px; display: grid; gap: 4px; }
.legal__body a { color: var(--teal-ink); font-weight: 600; text-underline-offset: 3px; }
.legal-page .nav { position: sticky; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: stretch; }
.founder { margin: 0; position: relative; padding: clamp(26px, 3.5vw, 44px); border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-md); display: grid; gap: 22px; align-content: start; }
.founder::before { content: "\201C"; position: absolute; right: 28px; top: 4px; font: italic 400 150px/1 var(--f-accent); color: var(--mint-50); pointer-events: none; }
.founder__top { display: flex; align-items: center; gap: 14px; position: relative; }
.founder__avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; font-weight: 800; font-size: 18px; box-shadow: 0 0 0 4px var(--mint-50); flex: none; }
.founder__name { display: block; font-size: 18px; color: var(--ink); }
.founder__role { display: block; font-size: 14px; color: var(--mute); }
.founder__note { margin: 0; display: grid; gap: 14px; position: relative; }
.founder__note p { font-size: 17.5px; line-height: 1.7; color: var(--ink-2); }
.founder__note p:first-child { font-size: 20px; line-height: 1.55; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.founder__sign { font: italic 400 26px/1.2 var(--f-accent); color: var(--teal); padding-top: 16px; border-top: 1px solid var(--line); }
.founder__sign span { font: 400 14px var(--f-sans); color: var(--mute); }

.vision { position: relative; display: grid; gap: 12px; align-content: start; padding: clamp(24px, 3vw, 36px); border-radius: var(--r-lg); background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.vision::before { content: ""; position: absolute; right: -30%; bottom: -30%; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(1,147,142,.4), transparent 65%); z-index: -1; }
.vision__h { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6FD8D2; margin-bottom: 4px; }
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); transition: background-color .3s, transform .3s var(--ease); }
.pillar:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.pillar__n { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--c50); color: var(--c); font-weight: 800; font-size: 14px; }
.pillar h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.pillar p { font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.5; }
.marq--about { width: 104px; justify-self: end; margin: 4px -4px -10px 0; }
.vision .marq svg { filter: drop-shadow(0 0 1px rgba(255,255,255,.5)); }

.fall { margin-top: clamp(48px, 6vw, 80px); }
.fall__head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 26px; }
.fall__title { font: 800 clamp(26px, 3vw, 36px)/1.15 var(--f-sans); letter-spacing: -.025em; color: var(--ink); }
.fall__head p { color: var(--mute); font-size: 17px; }
.fall__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fall__col { border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 30px); background: var(--card); border: 1px solid var(--line); }
.fall__col--design { border-top: 4px solid var(--blue); }
.fall__col--seo { border-top: 4px solid var(--teal); }
.fall__label { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.fall__col .tag--blue { background: var(--blue-50); } .fall__col .tag--mint { background: var(--mint-50); }
.fall__legend { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--mute); font-weight: 600; }
.lg { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.lg--x { background: var(--peach); } .lg--v { background: var(--teal); }
.fall__list { display: grid; gap: 12px; }
.fall__list li { display: grid; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.flaw, .fix { display: grid; grid-template-columns: 26px 1fr; gap: 10px; padding: 12px 14px; align-items: start; }
.flaw { background: #FFF6F2; }
.fix { background: #F1FAF9; border-top: 1px dashed var(--line-2); }
.flaw p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.flaw b { color: #B8431A; }
.fix p { font-size: 14.5px; color: var(--teal-ink); font-weight: 600; line-height: 1.5; }
.flaw__ico, .fix__ico { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; }
.flaw__ico { background: var(--peach-50); color: var(--peach); }
.fix__ico { background: var(--teal); color: #fff; }
.flaw__ico svg, .fix__ico svg { width: 14px; height: 14px; }
.fall__list li .fix { transition: background-color .3s; }
.fall__list li:hover .fix { background: #E3F4F3; }
.fall__cta { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.fall__cta p { font-weight: 700; color: var(--ink); font-size: 17px; }

@media (max-width: 960px) {
  .about, .fall__grid, .fall__head { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .founder__note p:first-child { font-size: 18px; }
  .founder::before { font-size: 110px; }
}

/* ---------- audit call to action ---------- */
.audit__head { margin-bottom: clamp(28px, 4vw, 44px); }
.auditcta { display: flex; align-items: center; gap: 18px 24px; flex-wrap: wrap; margin-top: 6px; }
.btn--audit { position: relative; min-height: 60px; padding: 0 26px 0 10px; gap: 12px; font-size: 17px; background: var(--teal); color: #fff; box-shadow: 0 14px 30px -14px rgba(1,147,142,.8); isolation: isolate; }
.btn--audit:hover { background: var(--teal-deep); box-shadow: 0 18px 36px -14px rgba(1,147,142,.9); transform: translateY(-2px); }
.btn--audit::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(1,147,142,.45); animation: auditPulse 2.6s ease-out infinite; z-index: -1; }
@keyframes auditPulse { 0% { box-shadow: 0 0 0 0 rgba(1,147,142,.45); } 70%, 100% { box-shadow: 0 0 0 14px rgba(1,147,142,0); } }
.btn--audit__ico { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--teal); flex: none; }
.btn--audit__ico svg { width: 22px; height: 22px; transition: transform .4s var(--ease); }
.btn--audit:hover .btn--audit__ico svg { transform: rotate(-12deg) scale(1.08); }
.btn--audit__arrow { width: 19px; height: 19px; }
.auditcta__notes { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.auditcta__notes li { position: relative; padding-left: 24px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.auditcta__notes li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--mint-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m6 10.5 2.6 2.6L14 7.6' stroke='%2301938E' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat; }
@media (max-width: 600px) { .btn--audit { width: 100%; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .btn--audit::before { animation: none; } }

/* team avatar stack: design, SEO, strategy */
.team { display: flex; flex: none; }
.team i { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 15px; color: #fff; border: 3px solid var(--card); }
.team i + i { margin-left: -12px; }
.team__a { background: var(--blue); } .team__b { background: var(--teal); } .team__c { background: var(--lilac); }
.team i svg { width: 20px; height: 20px; }

/* ---------- footer: we're hiring ---------- */
.hiring { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding: 9px 16px 9px 12px; border-radius: 999px; background: #fff; color: var(--teal-ink); font-weight: 800; font-size: 14.5px; text-decoration: none; box-shadow: 0 10px 24px -12px rgba(0,0,0,.35); transition: transform .25s var(--ease), box-shadow .25s; }
.hiring:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0,0,0,.45); }
.hiring svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.hiring:hover svg { transform: translateX(3px); }
.hiring__dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #FFB938; }
.hiring__dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #FFB938; animation: badgePulse 2s ease-out infinite; }

/* ---------- careers page ---------- */
.careers-page .legal, .careers { padding: 0; }
.careers__hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 72px); overflow: hidden; isolation: isolate; }
.careers__hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(40% 60% at 85% 30%, #DDF4EA, transparent 70%), radial-gradient(30% 50% at 70% 100%, #FDE7DB, transparent 70%), radial-gradient(30% 40% at 100% 80%, #ECE6FF, transparent 70%); }
.careers__heroGrid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.careers__title { font: 800 clamp(38px, 5vw, 62px)/1.06 var(--f-sans); letter-spacing: -.035em; color: var(--ink); margin: 16px 0 18px; text-wrap: balance; }
.careers__lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); max-width: 58ch; margin-bottom: 28px; }
.careers__marq .marq { width: clamp(140px, 16vw, 220px); margin: 0 auto; }
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.perk { padding: 26px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; transition: transform .3s var(--ease), box-shadow .3s; }
.perk:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.perk h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 6px; }
.perk p { font-size: 15px; color: var(--mute); }

.roles__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.roles__wrap .head { position: sticky; top: 110px; }
.roles { display: grid; gap: 12px; margin-top: 0 !important; }
.role { border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.role[open] { box-shadow: var(--sh-md); border-color: var(--rc); }
.role summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto auto; gap: 14px; align-items: center; padding: 18px 20px; }
.role summary::-webkit-details-marker { display: none; }
.role__team { padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--rc50); color: var(--rc); }
.role summary b { font-size: 17px; color: var(--ink); }
.role__meta { font-size: 13px; color: var(--mute); }
.role__plus { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%2313213C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px no-repeat; transition: transform .3s var(--ease); }
.role[open] .role__plus { transform: rotate(45deg); }
.role__body { padding: 0 20px 22px; display: grid; gap: 12px; justify-items: start; }
.role__body > p:first-child { color: var(--ink-2); font-size: 15.5px; }
.role__h { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--rc); }
.role .checks li::before { background-color: var(--rc); }
.role--blue { --rc: var(--blue); --rc50: var(--blue-50); } .role--lilac { --rc: var(--lilac); --rc50: var(--lilac-50); }
.role--mint { --rc: var(--teal); --rc50: var(--mint-50); } .role--peach { --rc: var(--peach); --rc50: var(--peach-50); } .role--sun { --rc: var(--sun-ink); --rc50: var(--sun-50); }
.role::details-content { block-size: 0; overflow: hidden; transition: block-size .4s var(--ease), content-visibility .4s allow-discrete; }
.role[open]::details-content { block-size: auto; }

.steps--4 { grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.steps--4::before, .steps--4::after { display: none; }
.cta--careers { grid-template-columns: 1fr auto; align-items: center; }
.cta__actions .btn b { font-weight: 800; }
.cta__actions .btn { min-height: 56px; }

@media (max-width: 960px) {
  .perks { grid-template-columns: 1fr 1fr; }
  .roles__wrap, .careers__heroGrid, .cta--careers { grid-template-columns: 1fr; }
  .roles__wrap .head { position: static; }
  .careers__marq { display: none; }
  .steps--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .perks, .steps--4 { grid-template-columns: 1fr; }
  .role summary { grid-template-columns: 1fr auto; }
  .role__team { grid-column: 1; justify-self: start; }
  .role__meta { display: none; }
  .role summary b { grid-column: 1; }
  .role__plus { grid-column: 2; grid-row: 1 / span 2; }
}
@media (prefers-reduced-motion: reduce) { .hiring__dot::after { animation: none; } }

/* ---------- header CTA: inviting, elite ---------- */
.btn--nav { position: relative; overflow: hidden; isolation: isolate; min-height: 48px; padding: 0 6px 0 22px; gap: 12px; font-size: 15px; font-weight: 700; color: #fff; background: var(--ink);
  box-shadow: 0 0 0 4px rgba(1,147,142,.12), 0 12px 26px -12px rgba(19,33,60,.7); transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.btn--nav::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: var(--teal); transform: translateX(101%); transition: transform .5s cubic-bezier(.7,0,.2,1); }
.btn--nav:hover::before { transform: none; }
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 0 0 5px rgba(1,147,142,.2), 0 16px 30px -12px rgba(1,147,142,.7); }
.btn--nav__arrow { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--teal); flex: none; transition: transform .45s var(--ease); }
.btn--nav__arrow svg { width: 17px; height: 17px; transition: transform .45s var(--ease); }
.btn--nav:hover .btn--nav__arrow { transform: rotate(-45deg); }
.btn--nav:active { transform: scale(.98); }
@media (max-width: 600px) { .btn--nav { min-height: 42px; padding-left: 14px; gap: 8px; font-size: 13.5px; } .btn--nav__arrow { width: 30px; height: 30px; } }

/* careers: steps show without the homepage pop-in */
.careers .steps .step__n { transform: none; }

/* ---------- pricing that sells ---------- */
.tiers--sell { align-items: center; gap: 22px; }
.tiers--sell .tier { padding: 30px 28px 28px; gap: 12px; }
.tier__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.tier__time { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--mute); }
.tier__time svg { width: 16px; height: 16px; }
.tier__name { font: 800 22px/1.2 var(--f-sans); letter-spacing: -.02em; color: var(--ink); margin-top: 6px; }
.tier__best { font-size: 14.5px; color: var(--mute); }
.tier__best b { color: var(--ink); }
.tiers--sell .tier__price { display: flex; align-items: baseline; gap: 8px; padding: 14px 0 4px; border-top: 1px solid var(--line); margin-top: 4px; }
.tiers--sell .tier__price b { font-size: 50px; }
.tiers--sell .tier__price span { font-size: 15px; font-weight: 600; color: var(--mute); }
.tier__note { margin-top: -6px; font-size: 13.5px; font-weight: 700; color: var(--teal); }
.tier__incl { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }
.tiers--sell .checks b { color: var(--ink); }
.tier__btn { margin-top: 10px; min-height: 54px; font-size: 16px; }
.tier__btn svg { width: 18px; height: 18px; }
.tiers--sell .tier .btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* the featured plan: raised, glowing, unmistakable */
.tiers--sell .tier--feature { padding-top: 44px; transform: scale(1.04); z-index: 2;
  box-shadow: 0 0 0 1px rgba(1,147,142,.55), 0 0 0 7px rgba(1,147,142,.12), 0 40px 80px -36px rgba(19,33,60,.7); }
.tiers--sell .tier--feature .tier__name, .tiers--sell .tier--feature .tier__price b, .tiers--sell .tier--feature .checks b, .tiers--sell .tier--feature .tier__best b { color: #fff; }
.tiers--sell .tier--feature .tier__best, .tiers--sell .tier--feature .tier__time, .tiers--sell .tier--feature .tier__price span, .tiers--sell .tier--feature .tier__incl { color: rgba(255,255,255,.72); }
.tiers--sell .tier--feature .tier__price { border-top-color: rgba(255,255,255,.14); }
.tiers--sell .tier--feature .checks li::before { background-color: var(--teal); }
.tier__ribbon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); padding: 7px 16px; border-radius: 0 0 12px 12px; background: var(--teal); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.tier__bundle { display: grid; gap: 2px; padding: 12px 14px; border-radius: 14px; background: rgba(1,147,142,.18); border: 1px dashed rgba(111,216,210,.6); }
.tier__bundle b { color: #fff; font-size: 14.5px; }
.tier__bundle span { color: #9FE6E1; font-size: 13px; font-weight: 600; }
.tiers--sell .tier--feature .btn--white { color: var(--ink); font-weight: 800; box-shadow: 0 12px 26px -12px rgba(0,0,0,.6); }
.tiers--sell .tier--feature .btn--white:hover { background: var(--teal); color: #fff; }
.tiers--sell .tier--feature .tier__flag { display: none; }

/* reassurance strip */
.assure { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.assure li { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2); }
.assure b { color: var(--ink); margin-right: 3px; }
.assure__ico { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; flex: none; }
.assure__ico svg { width: 15px; height: 15px; }
.notsure { margin-top: 22px; text-align: center; font-size: 16px; color: var(--mute); }
.notsure a { color: var(--teal-ink); font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 1080px) { .assure { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .tiers--sell .tier--feature { transform: none; } }
@media (max-width: 600px) { .assure { grid-template-columns: 1fr; } .tiers--sell .tier__price b { font-size: 44px; } }

/* ---------- booking card: fill the left column ---------- */
.cta__copy { gap: 22px; }
.next { position: relative; display: grid; gap: 14px; margin-top: 6px; }
.next::before { content: ""; position: absolute; left: 15px; top: 16px; bottom: 16px; width: 2px; background: linear-gradient(var(--teal), rgba(1,147,142,.15)); }
.next li { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.next__n { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; font-weight: 800; font-size: 14px; box-shadow: 0 0 0 5px rgba(1,147,142,.18); }
.next b { display: block; color: #fff; font-size: 16px; }
.next small { color: rgba(255,255,255,.7); font-size: 14px; }
.minichart { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.minichart__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; font-size: 13px; }
.minichart__top b { color: #fff; }
.minichart__top span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); }
.minichart__top span i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-left: 6px; }
.minichart__grid { display: grid; grid-template-columns: repeat(16, 1fr); gap: 5px; }
.minichart__grid i { aspect-ratio: 1; border-radius: 4px; background: rgba(255,255,255,.12); }
.minichart i.t { background: var(--peach); } .minichart i.s { background: var(--teal); }
.cta.is-in .minichart__grid i { animation: cellIn .5s var(--ease) both; }
.cta.is-in .minichart__grid i:nth-child(n) { animation-delay: calc(var(--d, 0) * 1ms); }
@keyframes cellIn { from { transform: scale(0); opacity: 0; } to { transform: none; opacity: 1; } }
.cta__marq { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.cta__marq .marq--cta { width: 104px; margin: 0; }
.bubble2 { position: relative; padding: 10px 14px; border-radius: 14px 14px 14px 4px; background: #fff; color: var(--ink); font-weight: 700; font-size: 14px; box-shadow: 0 12px 24px -14px rgba(0,0,0,.5); }
@media (max-width: 600px) { .minichart__grid { grid-template-columns: repeat(8, 1fr); } }
@media (prefers-reduced-motion: reduce) { .cta.is-in .minichart__grid i { animation: none; } }
.form__call { margin-top: -6px; text-align: center; font-size: 14.5px; color: var(--ink-2); }
.form__call a { color: var(--teal-ink); font-weight: 800; text-decoration: none; }
.form__call a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* phone icon */
.tel { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.ico-phone { width: 20px; height: 20px; padding: 4px; border-radius: 50%; background: var(--teal); color: #fff; flex: none; }
.foot .ico-phone { background: #fff; color: var(--teal); }
.tel:hover .ico-phone { animation: ring .5s ease-in-out; }
@keyframes ring { 0%,100% { transform: rotate(0); } 20%,60% { transform: rotate(-14deg); } 40%,80% { transform: rotate(14deg); } }
@media (prefers-reduced-motion: reduce) { .tel:hover .ico-phone { animation: none; } }
.ico-mail { width: 20px; height: 20px; padding: 3.5px; border-radius: 50%; background: var(--teal); color: #fff; flex: none; }
.foot .ico-mail { background: #fff; color: var(--teal); }
.tel:hover .ico-mail { animation: ring .5s ease-in-out; }
.legal__body .tel, .head__p .tel { vertical-align: -4px; }

/* ---------- FAQ contact card ---------- */
.ask { margin-top: 10px; width: 100%; max-width: 380px; padding: 18px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-md); display: grid; gap: 10px; transition: transform .4s var(--ease), box-shadow .4s; }
.ask:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -30px rgba(19,33,60,.35); }
.ask__title { font-weight: 800; font-size: 16px; color: var(--ink); padding: 0 4px 2px; }
.ask__row { display: grid; grid-template-columns: 46px 1fr 20px; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; background: var(--bg-soft); text-decoration: none; transition: background-color .3s, transform .3s var(--ease); }
.ask__row:hover { background: var(--mint-50); transform: translateX(3px); }
.ask__ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 20px -10px rgba(1,147,142,.8); }
.ask__ico svg { width: 22px; height: 22px; }
.ask__ico--mail { background: var(--teal); }
.ask__ico--tel { background: var(--ink); }
.ask__row:hover .ask__ico { animation: ring .5s ease-in-out; }
.ask__txt small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--mute); }
.ask__txt b { display: block; font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.ask__txt b strong { font-weight: 800; }
.ask__arrow { width: 20px; height: 20px; color: var(--teal); transition: transform .3s var(--ease); }
.ask__row:hover .ask__arrow { transform: translateX(4px); }
.ask__live { display: flex; align-items: center; gap: 9px; padding: 4px 4px 0; font-size: 13.5px; font-weight: 600; color: var(--mute); }
.ask__dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #22C55E; }
.ask__dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #22C55E; animation: badgePulse 2s ease-out infinite; }
@media (prefers-reduced-motion: reduce) { .ask__dot::after { animation: none; } }

/* ---------- nav: call button ---------- */
.navcall { display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 16px 0 6px; border-radius: 999px; background: #fff; border: 1px solid var(--line-2); color: var(--ink); font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.navcall:hover { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(1,147,142,.12); transform: translateY(-1px); }
.navcall__ico { position: relative; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-50); color: var(--teal); flex: none; transition: background-color .3s, color .3s; }
.navcall__ico svg { width: 18px; height: 18px; }
.navcall:hover .navcall__ico { background: var(--teal); color: #fff; }
.navcall:hover .navcall__ico svg { animation: ring .5s ease-in-out; }
.navcall__ico::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--teal); opacity: 0; animation: badgePulse 2.6s ease-out infinite; }
.nav__inner { gap: 14px; }
.nav nav { margin-right: 10px; }
@media (max-width: 1180px) { .navcall__num { display: none; } .navcall { padding: 0 6px; } }
@media (max-width: 600px) { .navcall { min-height: 42px; } .navcall__ico { width: 30px; height: 30px; } .nav__inner { gap: 8px; } .logo { margin-right: auto; } }
@media (prefers-reduced-motion: reduce) { .navcall__ico::after { animation: none; } }
.nav__links a { white-space: nowrap; }
.nav__links { gap: 2px; }
.nav__links a { padding: 10px 11px; }
@media (max-width: 1340px) { .navcall__num { display: none; } .navcall { padding: 0 6px; } }

/* ---------- nav call button v2: sunshine, alive ---------- */
.navcall { position: relative; overflow: hidden; isolation: isolate; min-height: 50px; padding: 0 18px 0 6px; gap: 10px; border: 0; background: #FFC93C; color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,201,60,.28), 0 12px 26px -12px rgba(201,140,0,.75); }
.navcall::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.65) 50%, transparent 70%); transform: translateX(-120%); animation: badgeSheen 5s ease-in-out infinite 1.5s; }
.navcall:hover { border: 0; transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(255,201,60,.35), 0 18px 32px -12px rgba(201,140,0,.85); }
.navcall__ico { width: 38px; height: 38px; background: var(--ink); color: #FFC93C; }
.navcall:hover .navcall__ico { background: var(--ink); color: #fff; }
.navcall__ico svg { animation: autoRing 4s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes autoRing { 0%, 76%, 100% { transform: rotate(0); } 80%, 88% { transform: rotate(-16deg); } 84%, 92% { transform: rotate(16deg); } }
.navcall__ico::after { border-color: var(--ink); animation: callPulse 4s ease-out infinite; }
.navcall__ico::before { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--ink); opacity: 0; animation: callPulse 4s ease-out infinite .35s; }
@keyframes callPulse { 0%, 74% { opacity: 0; transform: scale(.9); } 78% { opacity: .55; } 100% { opacity: 0; transform: scale(1.45); } }
.navcall__txt { display: grid; line-height: 1.1; }
.navcall__txt small { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(19,33,60,.7); }
.navcall__live { width: 7px; height: 7px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 0 0 rgba(22,163,74,.6); animation: livePing 1.8s ease-out infinite; }
@keyframes livePing { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.55); } 100% { box-shadow: 0 0 0 7px rgba(22,163,74,0); } }
.navcall__num { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; }
@media (max-width: 1340px) { .navcall__txt { display: none; } .navcall { padding: 0 6px; } }
@media (prefers-reduced-motion: reduce) { .navcall::before, .navcall__ico svg, .navcall__ico::before, .navcall__ico::after, .navcall__live { animation: none; } }

/* call button: coral */
.navcall { background: #F0642F; color: #fff; box-shadow: 0 0 0 4px rgba(240,100,47,.22), 0 12px 26px -12px rgba(200,70,25,.8); }
.navcall:hover { background: #E4561F; box-shadow: 0 0 0 6px rgba(240,100,47,.3), 0 18px 32px -12px rgba(200,70,25,.9); }
.navcall::before { background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); }
.navcall__ico, .navcall:hover .navcall__ico { background: #fff; color: #F0642F; }
.navcall__ico::after, .navcall__ico::before { border-color: #fff; }
.navcall__txt small { color: rgba(255,255,255,.85); }
.navcall__live { background: #fff; animation-name: livePingW; }
@keyframes livePingW { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); } 100% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } }

/* audit quadrants: four clearly different colours */
.quad:nth-child(1) { --qc: #D6336C; --qb: #FDECF2; }
.quad:nth-child(2) { --qc: #3563F0; --qb: #EEF2FD; }
.quad:nth-child(3) { --qc: #01938E; --qb: #E3F4F3; }
.quad:nth-child(4) { --qc: #E08600; --qb: #FFF4E0; }
.quad { position: relative; overflow: hidden; border-top: 0; }
.quad::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--qc); }
.quad__head span { padding: 3px 9px; border-radius: 999px; background: var(--qb); color: var(--qc); font-weight: 700; }
.quad ol li b { color: var(--qc); }
.quad__head { flex-wrap: wrap; row-gap: 6px; }
.quad__head span { white-space: nowrap; font-size: 11.5px; }

/* ---------- form: "or call" card ---------- */
.orcall { display: grid; gap: 12px; margin-top: 2px; }
.orcall__or { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.orcall__or::before, .orcall__or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.orcall__card { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 10px 10px 10px 10px; border-radius: 16px; border: 1px solid var(--line); background: var(--bg-soft); text-decoration: none; transition: border-color .3s, background-color .3s, transform .3s var(--ease), box-shadow .3s; }
.orcall__card:hover { border-color: #F0642F; background: #FFF4EF; transform: translateY(-2px); box-shadow: 0 14px 28px -18px rgba(200,70,25,.7); }
.orcall__ico { position: relative; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #F0642F; color: #fff; }
.orcall__ico svg { width: 20px; height: 20px; animation: autoRing 4s ease-in-out infinite 1s; }
.orcall__ico::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid #F0642F; opacity: 0; animation: callPulse 4s ease-out infinite 1s; }
.orcall__txt small { display: block; font-size: 12.5px; font-weight: 600; color: var(--mute); }
.orcall__txt b { display: block; font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.orcall__go { padding: 9px 14px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 700; transition: background-color .3s; }
.orcall__card:hover .orcall__go { background: #F0642F; }
@media (prefers-reduced-motion: reduce) { .orcall__ico svg, .orcall__ico::after { animation: none; } }

/* "32-point" highlight */
.k32 { font-weight: 800; color: #F0642F; white-space: nowrap; }
.h2 .k32 { color: #F0642F; }
.badge .k32, .btn .k32 { color: inherit; }
.cta .k32, .vision .k32, .tier--feature .k32 { color: #FF9A6E; }

/* ---------- emblem watermarks ---------- */
.emblem { position: absolute; pointer-events: none; z-index: 0; aspect-ratio: 1;
  -webkit-mask: url(brand/dentalmarq-emblem-mask.png) center / contain no-repeat; mask: url(brand/dentalmarq-emblem-mask.png) center / contain no-repeat; }
#about { position: relative; overflow: hidden; }
#about > .wrap { position: relative; z-index: 1; }
.emblem--about { width: min(62vw, 760px); right: -8%; top: 4%; background: var(--teal); opacity: .06; will-change: transform; }
.cta > *:not(.emblem) { position: relative; z-index: 1; }
.emblem--cta { width: min(46vw, 520px); left: -10%; bottom: -22%; background: #fff; opacity: .07; animation: emblemTurn 60s linear infinite; }
@keyframes emblemTurn { to { transform: rotate(360deg); } }
@media (max-width: 860px) { .emblem--about { width: 90vw; right: -30%; } .emblem--cta { width: 80vw; } }
@media (prefers-reduced-motion: reduce) { .emblem--cta { animation: none; } }
.emblem--about { opacity: .075; }
.emblem--cta { opacity: .09; }

/* ---------- process, live ---------- */
.lsteps { --p: 0; position: relative; margin-top: clamp(40px, 5vw, 64px); }
.lsteps__rail { position: absolute; left: 10%; right: 10%; top: 27px; height: 4px; border-radius: 4px; background: var(--line); }
.lsteps__fill { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--p) * 100%); border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--teal), var(--lilac), var(--peach), #E08600); transition: width .9s cubic-bezier(.6,0,.2,1); }
.lsteps__dot { position: absolute; top: 50%; left: calc(var(--p) * 100%); width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: #fff; border: 4px solid var(--ink); box-shadow: 0 0 0 6px rgba(19,33,60,.08), 0 6px 14px -4px rgba(19,33,60,.4); transition: left .9s cubic-bezier(.6,0,.2,1); }
.lsteps__list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.lstep { display: grid; justify-items: center; gap: 18px; cursor: pointer; }
.lstep__node { position: relative; z-index: 1; }
.lstep__n { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: #fff; color: var(--c); font: 800 22px var(--f-sans); border: 2px solid var(--line); box-shadow: var(--sh-sm);
  transition: background-color .5s, color .5s, border-color .5s, transform .5s cubic-bezier(.2,1.4,.4,1), box-shadow .5s; }
.lstep.is-done .lstep__n { background: var(--c50); border-color: transparent; }
.lstep.is-active .lstep__n { background: var(--c); color: #fff; border-color: transparent; transform: scale(1.12) translateY(-2px); box-shadow: 0 0 0 7px var(--c50), 0 14px 28px -10px var(--c); }
.lstep__card { width: 100%; padding: 20px 18px 22px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; min-height: 100%;
  transition: transform .6s var(--ease), box-shadow .6s, border-color .6s, background-color .6s; }
.lstep.is-active .lstep__card { transform: translateY(-8px); border-color: var(--c); box-shadow: 0 30px 50px -30px rgba(19,33,60,.45), 0 0 0 4px var(--c50); }
.lstep__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lstep__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--c50); color: var(--c); transition: background-color .5s, color .5s; }
.lstep__ico svg { width: 22px; height: 22px; }
.lstep.is-active .lstep__ico { background: var(--c); color: #fff; }
.lstep__when { padding: 4px 10px; border-radius: 999px; background: var(--bg-soft); font-size: 12px; font-weight: 700; color: var(--mute); white-space: nowrap; transition: background-color .5s, color .5s; }
.lstep.is-active .lstep__when { background: var(--c50); color: var(--c); }
.lstep h3 { font: 800 19px/1.25 var(--f-sans); color: var(--ink); letter-spacing: -.015em; }
.lstep p { font-size: 14.5px; line-height: 1.55; color: var(--mute); }
@media (max-width: 1080px) {
  .lsteps__rail { display: none; }
  .lsteps__list { grid-template-columns: 1fr 1fr; }
  .lstep { justify-items: start; grid-template-columns: auto 1fr; align-items: start; }
  .lstep__n { width: 46px; height: 46px; font-size: 18px; }
}
@media (max-width: 600px) { .lsteps__list { grid-template-columns: 1fr; } }

/* ---------- process: refined ---------- */
.lstep { --c: var(--teal) !important; --c50: transparent !important; }
.lsteps__rail { top: 7px; height: 1px; left: calc(10% - 0px); right: 10%; background: var(--line-2); border-radius: 0; }
.lsteps__fill { background: var(--teal); transition: width 1.2s cubic-bezier(.65,0,.35,1); }
.lsteps__dot { width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border: 0; background: var(--teal); box-shadow: 0 0 0 5px rgba(1,147,142,.14); transition: left 1.2s cubic-bezier(.65,0,.35,1); }
.lsteps__list { gap: 28px; }
.lstep { justify-items: stretch; gap: 26px; }
.lstep__node { justify-self: center; }
.lstep__n { width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line-2); box-shadow: none; font-size: 0; transition: border-color .8s, background-color .8s; }
.lstep__n i { display: none; }
.lstep.is-done .lstep__n { background: var(--teal); border-color: var(--teal); }
.lstep.is-active .lstep__n { transform: none; background: #fff; border: 4px solid var(--teal); box-shadow: 0 0 0 6px rgba(1,147,142,.1); }
.lstep__card { position: relative; padding: 26px 22px 24px; border-radius: 4px; background: transparent; border: 0; border-top: 1px solid var(--line-2); gap: 12px; transition: border-color .8s; }
.lstep__card::before { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 100%; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.65,0,.35,1); }
.lstep.is-active .lstep__card { transform: none; box-shadow: none; border-color: var(--line-2); }
.lstep.is-active .lstep__card::before { transform: scaleX(1); }
.lstep__top { order: 0; }
.lstep__card::after { content: attr(data-num); }
.lstep[data-num] .lstep__card { counter-reset: none; }
.lstep__ico { width: 26px; height: 26px; border-radius: 0; background: none !important; color: var(--mute); transition: color .8s; }
.lstep__ico svg { width: 22px; height: 22px; stroke-width: 1.6; }
.lstep.is-active .lstep__ico { color: var(--teal); }
.lstep__when { padding: 0; background: none !important; border-radius: 0; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mute) !important; }
.lstep h3 { font: 700 20px/1.25 var(--f-sans); color: var(--mute); transition: color .8s; }
.lstep h3::before { content: attr(data-num); }
.lstep.is-active h3, .lstep.is-done h3 { color: var(--ink); }
.lstep p { color: var(--mute); transition: color .8s; }
.lstep.is-active p { color: var(--ink-2); }
.lstep .k32 { color: inherit; }
.lnum { display: block; font: 600 13px var(--f-sans); letter-spacing: .14em; color: var(--mute); margin-bottom: -4px; transition: color .8s; }
.lstep.is-active .lnum { color: var(--teal); }
@media (max-width: 1080px) { .lstep { grid-template-columns: 1fr; } .lstep__node { display: none; } }
.lstep__node { display: flex; height: 15px; line-height: 0; }
.lstep { align-content: start; }

/* ---------- process: a touch of colour per step ---------- */
.lstep:nth-child(1) { --a: #3563F0; --aw: rgba(53,99,240,.06); }
.lstep:nth-child(2) { --a: #01938E; --aw: rgba(1,147,142,.07); }
.lstep:nth-child(3) { --a: #7C5CFA; --aw: rgba(124,92,250,.06); }
.lstep:nth-child(4) { --a: #F0642F; --aw: rgba(240,100,47,.06); }
.lstep:nth-child(5) { --a: #E08600; --aw: rgba(224,134,0,.07); }
.lstep__card { transition: border-color .8s, background-color .8s; }
.lstep.is-active .lstep__card { background: linear-gradient(180deg, var(--aw), transparent 85%); }
.lstep__card::before { background: var(--a); }
.lstep.is-active .lstep__ico, .lstep.is-active .lnum { color: var(--a); }
.lstep.is-done .lstep__n { background: var(--a); border-color: var(--a); }
.lstep.is-active .lstep__n { border-color: var(--a); box-shadow: 0 0 0 6px var(--aw); }
.lstep.is-active .lstep__when { color: var(--a) !important; }
.lsteps__dot { display: none; }

/* ---------- reporting, refined ---------- */
.rmetrics { display: grid; gap: 2px; width: 100%; margin-top: 4px; border-top: 1px solid var(--line-2); }
.rm { position: relative; display: grid; grid-template-columns: 3px 1fr; gap: 16px; padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line-2); cursor: default; transition: background-color .4s, padding .4s var(--ease); }
.rm__bar { border-radius: 3px; background: var(--rc); opacity: .35; transition: opacity .4s; }
.rm b { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink); }
.rm small { display: block; font-size: 14.5px; color: var(--mute); margin-top: 2px; }
.rm.is-lit { padding-left: 10px; background: linear-gradient(90deg, rgba(255,255,255,.8), transparent); }
.rm.is-lit .rm__bar { opacity: 1; }
.rm.reveal { transition-property: opacity, transform, filter, background-color, padding; }
.k { transition: transform .4s var(--ease), box-shadow .4s; }
.k.is-lit { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 26px -14px rgba(19,33,60,.45), 0 0 0 2px var(--kc); }
.rdeliver { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.rdeliver__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.rdeliver__dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--teal); animation: badgePulse 2.2s ease-out infinite; }
.rnote { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; width: 100%; padding: 16px 18px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--teal); box-shadow: var(--sh-sm); }
.rnote__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--mint-50); color: var(--teal); }
.rnote__ico svg { width: 21px; height: 21px; }
.rnote p { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.rnote b { color: var(--ink); }
#reporting .note { display: none; }
@media (prefers-reduced-motion: reduce) { .rdeliver__dot::after { animation: none; } }

/* ---------- service pages ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: var(--mute); margin-bottom: 22px; }
.crumbs a { color: var(--mute); text-decoration: none; }
.crumbs a:hover { color: var(--teal); }
.crumbs b { color: var(--ink); font-weight: 600; }
.sp__title { max-width: 18ch; }
.sp__title em { font: italic 400 1.1em/1 var(--f-accent); color: var(--teal); }
.sp__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: -6px 0 28px; }
.sp__meta span { padding: 8px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-2); }
.sp__meta b { color: var(--teal-ink); font-weight: 800; }
.sp__split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.sp__probs { display: grid; gap: 12px; margin-top: 0 !important; }
.sp__probs li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 18px; border-radius: 18px; background: var(--card); border: 1px solid var(--line); }
.sp__x { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--peach-50); color: var(--peach); }
.sp__x svg, .sp__chk svg { width: 16px; height: 16px; }
.sp__probs b { display: block; color: var(--ink); font-size: 16.5px; }
.sp__probs p { color: var(--mute); font-size: 15px; margin-top: 2px; }
.sp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sp__card { position: relative; padding: 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); display: grid; gap: 8px; align-content: start; transition: transform .35s var(--ease), box-shadow .35s; }
.sp__card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.sp__chk { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--teal); color: #fff; }
.sp__card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 6px; }
.sp__card p { font-size: 15px; color: var(--mute); }
.sp__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sp__steps li { padding-top: 18px; border-top: 2px solid var(--line-2); display: grid; gap: 8px; align-content: start; transition: border-color .4s; }
.sp__steps li:hover { border-top-color: var(--teal); }
.sp__n { font: 600 13px var(--f-sans); letter-spacing: .14em; color: var(--teal); }
.sp__steps h3 { font-size: 19px; font-weight: 800; color: var(--ink); }
.sp__steps p { font-size: 15px; color: var(--mute); }
.sp__cta { margin-top: 10px; padding: 20px; border-radius: 20px; background: var(--ink); color: rgba(255,255,255,.8); display: grid; gap: 14px; justify-items: start; }
.sp__cta b { color: #fff; }
.sp__cta .btn--primary { background: var(--teal); }
.sp__more { margin-top: 56px; display: grid; gap: 12px; }
.sp__more > p { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.sp__more > div { display: flex; flex-wrap: wrap; gap: 10px; }
.sp__other { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-weight: 700; color: var(--ink); text-decoration: none; transition: border-color .3s, color .3s, transform .3s var(--ease); }
.sp__other svg { width: 16px; height: 16px; color: var(--teal); transition: transform .3s var(--ease); }
.sp__other:hover { border-color: var(--teal); color: var(--teal-ink); transform: translateY(-2px); }
.sp__other:hover svg { transform: translateX(3px); }
.more { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 14.5px; font-weight: 700; color: var(--teal-ink); text-decoration: none; }
.more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.more:hover svg { transform: translateX(3px); }
.more--h { color: inherit; font-size: inherit; margin: 0; }
.nf__wrap { display: grid; justify-items: center; text-align: center; }
.nf__wrap .careers__lede { margin-left: auto; margin-right: auto; }
.nf__marq { width: 140px; margin-bottom: 10px; }
.nf__links > div { justify-content: center; }
@media (max-width: 960px) { .sp__split { grid-template-columns: 1fr; } .sp__grid, .sp__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sp__grid, .sp__steps { grid-template-columns: 1fr; } }

/* ---------- form sending + success ---------- */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { position: relative; }
.form__spin { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .8s linear infinite; }
.form__submit.is-busy .form__spin { display: inline-block; }
.form__submit.is-busy .form__label::after { content: "…"; }
.form__submit:disabled { opacity: .85; cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }
.sent { position: relative; z-index: 1; background: #fff; color: var(--ink-2); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); display: grid; gap: 14px; justify-items: center; text-align: center; box-shadow: var(--sh-lg); outline: none; animation: sentIn .6s cubic-bezier(.2,1.2,.4,1); }
.sent[hidden] { display: none; }
.sent__marq { width: 120px; }
.sent h3 { font: 800 26px/1.2 var(--f-sans); color: var(--ink); letter-spacing: -.02em; }
.sent p { font-size: 16px; max-width: 38ch; }
.sent b { color: var(--teal-ink); }
.sent__alt { font-size: 14.5px; color: var(--mute); }
@keyframes sentIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

/* =========================================================
   Phone edit: only what matters, tighter rhythm
   ========================================================= */
@media (max-width: 600px) {
  :root { --sec: 64px; }
  .section, .section--tight { padding-top: 56px !important; padding-bottom: 56px !important; }
  .has-divider { padding-bottom: 96px !important; }
  .divider { height: 64px !important; }
  .head .head__p, .sec-head__p { font-size: 16px; }
  .h2 { font-size: clamp(28px, 8vw, 34px); }

  /* hero: keep the message + CTA; smaller mockup */
  .hero { padding-bottom: 24px; }
  .hero__visual { padding: 18px 0 30px; }
  .site__cards, .site__p, .hero__note, .float--rank { display: none !important; }

  /* services: drop the extras, keep the offer */
  .webx, .card--web .card__art { display: none; }
  .card--mini { padding: 18px; display: grid; grid-template-columns: 46px 1fr; column-gap: 14px; row-gap: 2px; align-items: center; }
  .card--mini .mini-ico { grid-row: span 2; }
  .card--mini h3 { font-size: 16.5px; }
  .card--mini p { font-size: 14px; }
  .bento { gap: 12px; }

  /* audit: the chart tells the story; the 32-line lists are desktop-only */
  .quads { display: none; }
  .audit__head { gap: 12px; }

  /* process: compact timeline */
  .lstep__card { padding: 16px 0 14px; }
  .lstep p { font-size: 14px; }
  .lsteps__list { gap: 4px; }

  /* reporting: the sample report carries it */
  .rmetrics { display: none; }

  /* why: tighter cards */
  .why { gap: 10px; }
  .why__card { padding: 18px; grid-template-columns: 46px 1fr; column-gap: 14px; display: grid; }
  .why__card .mini-ico { grid-row: span 2; }
  .why__card h3 { margin-top: 0; font-size: 16.5px; }
  .why__card p { font-size: 14px; }

  /* about: one paragraph + pillars; three examples per column */
  .founder__note p:not(:first-child) { display: none; }
  .fall__list li:nth-child(n+4) { display: none; }
  .fall__head p { font-size: 15px; }
  .marq--about { display: none; }

  /* pricing */
  .assure { gap: 8px; }
  .assure li { padding: 10px 14px; }

  /* FAQ: heading no longer sticks */
  .faq .head, .sec-head--side { position: static !important; }
  .ask { max-width: none; }

  /* booking */
  .next small { display: none; }
  .cta__marq { display: none; }
  .orcall__card { grid-template-columns: 40px 1fr; }
  .orcall__go { display: none; }
  .orcall__txt b { white-space: nowrap; }

  /* footer: two columns, contact full width */
  .foot__grid { grid-template-columns: 1fr 1fr !important; gap: 26px 18px; }
  .foot__grid > div:first-child, .foot__grid > div:last-child { grid-column: 1 / -1; }
  .foot__base { flex-direction: column; align-items: flex-start; }
}

/* ================= Mobile menu + quick-contact bar ================= */
.menubtn, .mbar, .swipe-dots, .swipe-hint { display: none; }
.mnav[hidden] { display: none; }
@media (max-width: 900px) {
  .nav__inner > .navcall, .nav__inner > .btn--nav { display: none; }
  .logo { margin-right: auto; }
  .menubtn { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 16px 0 14px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font: 700 14px var(--f-sans); letter-spacing: .02em; cursor: pointer; }
  .menubtn__lines { display: grid; gap: 4px; width: 18px; }
  .menubtn__lines i { display: block; height: 2px; border-radius: 2px; background: currentColor; }
  .menubtn__lines i:nth-child(2) { width: 70%; justify-self: end; }
  .menubtn:focus-visible, .mnav a:focus-visible, .mnav button:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

  .mnav { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; background: #FBFAF7; opacity: 0; transform: translateY(-12px); transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1); overflow-y: auto; overscroll-behavior: contain; }
  .mnav.is-open { opacity: 1; transform: none; }
  .mnav__top { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 20px; border-bottom: 1px solid var(--line); flex: none; }
  .mnav__top .logo img { height: 26px; width: auto; }
  .mnav__close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; }
  .mnav__close svg { width: 20px; height: 20px; }
  .mnav__body { padding: 18px 20px 8px; flex: 1; }
  .mnav__h { font: 700 11.5px var(--f-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin: 10px 0 4px; }
  .mnav__list { list-style: none; margin: 0 0 12px; padding: 0; }
  .mnav__list a { display: flex; align-items: center; justify-content: space-between; min-height: 48px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font: 600 17px var(--f-sans); }
  .mnav__list--big a { font-size: 21px; font-weight: 800; letter-spacing: -.02em; min-height: 54px; }
  .mnav__list a svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
  .mnav__list--big li:nth-child(2) a svg { color: #7C5CE0; } .mnav__list--big li:nth-child(3) a svg { color: #3563F0; } .mnav__list--big li:nth-child(4) a svg { color: #F0642F; }
  .mnav__actions { position: sticky; bottom: 0; display: grid; gap: 10px; padding: 14px 20px calc(16px + env(safe-area-inset-bottom)); background: #FBFAF7; border-top: 1px solid var(--line); }
  .mact { display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 8px 18px 8px 8px; border-radius: 18px; text-decoration: none; }
  .mact small { display: block; font: 600 12px var(--f-sans); opacity: .85; }
  .mact b { display: block; font: 800 17px var(--f-sans); letter-spacing: -.01em; }
  .mact__ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none; background: rgba(255,255,255,.2); }
  .mact__ico svg { width: 22px; height: 22px; }
  .mact--call { background: #F0642F; color: #fff; }
  .mact--book { background: var(--ink); color: #fff; }
  .mact--book .mact__ico { background: var(--teal); }
  html.menu-open, html.menu-open body { overflow: hidden; }

  .mbar { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px; position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 90; padding: 6px; border-radius: 20px; background: rgba(19,33,60,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 18px 40px -16px rgba(19,33,60,.7); transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s; }
  .mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 15px; text-decoration: none; font: 800 15.5px var(--f-sans); color: #fff; }
  .mbar svg { width: 19px; height: 19px; }
  .mbar__call { background: #F0642F; }
  .mbar__book { background: var(--teal); }
  .mbar.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
  html.menu-open .mbar { opacity: 0; pointer-events: none; }
  .foot { padding-bottom: calc(84px + env(safe-area-inset-bottom)) !important; }
}

/* ================= Phones: swipe rows instead of long stacks ================= */
@media (max-width: 600px) {
  .swipe { display: grid !important; grid-auto-flow: column; grid-template-columns: none !important; grid-auto-columns: 84%; gap: 12px !important; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: 20px; margin-inline: -20px; padding: 6px 20px 14px !important; scrollbar-width: none; align-items: stretch; }
  .swipe::-webkit-scrollbar { display: none; }
  .swipe > * { scroll-snap-align: start; min-width: 0; margin: 0 !important; transform: none !important; }
  .swipe > .card--mini, .swipe > .marq, .swipe > .vision__h { display: none; }
  .swipe-dots { display: flex; justify-content: center; gap: 6px; margin: 2px 0 8px; }
  .swipe-dots i { width: 7px; height: 7px; border-radius: 99px; background: var(--line-2); transition: width .3s, background-color .3s; }
  .swipe-dots i.is-on { width: 22px; background: var(--teal); }
  .swipe-hint { display: block; text-align: center; font: 600 12.5px var(--f-sans); color: var(--mute); margin-top: -2px; }

  /* process: every step readable in the swipe row */
  .lsteps { margin-top: 20px; }
  .lsteps__rail { display: none; }
  .lstep, .lstep.is-active, .lstep.is-done { opacity: 1 !important; }
  .lstep .lstep__card { height: 100%; transform: none !important; }
  .lstep .lstep__card::before { transform: scaleX(1) !important; }
  .lstep h3, .lstep .lnum { color: var(--ink) !important; }
  .lstep .lnum { color: var(--a, var(--teal)) !important; }
  .lstep p { color: var(--ink-2) !important; }

  /* trim what repeats elsewhere */
  .hero__proof, .cta__list, .float--rating, .fall__cta { display: none !important; }
  .tier { height: 100%; }
  .fall__col, .why__card, .pillar { height: 100%; }
}

/* sample label on the hero mockup: unmistakable, on every screen size */
.browser__bar { flex-wrap: nowrap; }
.browser__bar span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.browser__sample { margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; background: #FFF4D6; color: #7A5200; border: 1px solid #F3D48A; font: 700 11.5px var(--f-sans); letter-spacing: .01em; white-space: nowrap; }
.browser__sample::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #E0A100; }
@media (max-width: 600px) { .browser__bar span { display: none; } .browser__sample { margin-left: 8px; font-size: 11px; } }

/* swipe rows: cancel desktop grid spans so cards size to their own content */
@media (max-width: 600px) {
  .swipe { grid-template-rows: none !important; grid-auto-rows: auto !important; }
  .swipe > * { grid-row: auto !important; grid-column: auto !important; min-height: 0 !important; }
  .fall__grid.swipe .fall__list li:nth-child(n+3) { display: none; }
  .vision .pillar { padding-block: 14px; }
}
@media (max-width: 600px) {
  .card--web .checks li:nth-child(n+4) { display: none; }
  #audit .readout, #reporting .bars, #reporting .report__label { display: none !important; }
  .vision.swipe { grid-auto-columns: 78%; }
}
@media (max-width: 600px) {
  .lsteps__dot, .lsteps__fill { display: none !important; }
  .card--web .checks { display: none; }
}

/* swipe affordance: arrows + dots, edge fades, pricing tabs and hint */
.swipe-ctl, .plan-tabs { display: none; }
@media (max-width: 600px) {
  .swipe-ctl { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 4px 0 10px; }
  .swipe-ctl .swipe-dots { margin: 0; }
  .swipe-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); background: #fff; color: var(--ink); cursor: pointer; box-shadow: 0 6px 14px -8px rgba(19,33,60,.35); transition: opacity .25s, background-color .25s, color .25s; }
  .swipe-btn svg { width: 18px; height: 18px; }
  .swipe-btn[data-dir="1"]:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
  .swipe-btn:disabled { opacity: .35; cursor: default; box-shadow: none; }
  .swipe-btn:focus-visible, .plan-tabs button:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
  /* soft fade on the edge that still has more cards */
  .swipe { -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); }
  .swipe.at-end:not(.at-start) { -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%); mask-image: linear-gradient(90deg, transparent, #000 12%); }
  .swipe:not(.at-start):not(.at-end) { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

  .plan-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; margin: 0 0 10px; border-radius: 16px; background: #fff; border: 1px solid var(--line-2); box-shadow: 0 10px 24px -18px rgba(19,33,60,.5); }
  .plan-tabs button { min-height: 44px; border: 0; border-radius: 12px; background: transparent; color: var(--ink-2); font: 700 13px/1.15 var(--f-sans); cursor: pointer; transition: background-color .25s, color .25s; }
  .plan-tabs button.is-on { background: var(--ink); color: #fff; }
  .swipe-hint--pricing { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0 0 6px; font: 700 13px var(--f-sans); color: var(--teal-ink); }
  .swipe-hint--pricing span { display: inline-grid; animation: hintNudge 1.4s ease-in-out infinite; }
  .swipe-hint--pricing svg { width: 16px; height: 16px; }
  .swipe-ctl--big .swipe-btn { width: 48px; height: 48px; }
  .swipe-ctl--big .swipe-btn svg { width: 20px; height: 20px; }
}
@keyframes hintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@media (prefers-reduced-motion: reduce) { .swipe-hint--pricing span { animation: none; } }

/* quick-contact bar: full-width, docked to the bottom edge */
@media (max-width: 900px) {
  .mbar { left: 0; right: 0; bottom: 0; border-radius: 0; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; border-top: 1px solid var(--line-2); box-shadow: 0 -10px 28px -14px rgba(19,33,60,.35); }
  .mbar a { border-radius: 14px; min-height: 50px; }
  .mbar.is-hidden { transform: translateY(100%); }
  .foot { padding-bottom: calc(80px + env(safe-area-inset-bottom)) !important; }
}

/* after sending: the form goes away and the thank-you panel takes its place */
.form[hidden] { display: none !important; }
.sent { align-self: start; }
