/* ============================================================
   VHOO - "Soft Shelf" design system  ·  v2
   One surface language across the whole site:
     light theme  → neumorphic panels (soft dual shadows)
     dark theme   → glass panels over a living aurora
   Colour psychology:
     slate navy  = authority, stability      (trust the operator)
     teal        = growth, clarity, movement (the brand)
     amber       = action, optimism, warmth  (every CTA, nothing else)
   ============================================================ */

:root {
  color-scheme: light;

  /* Brand - sampled from the logo */
  --slate:       #4A566B;
  --slate-deep:  #333D4E;
  --teal:        #35A9BC;
  --teal-deep:   #0E7183;   /* text-safe teal */
  --amber:       #F2A50C;
  --amber-deep:  #7E5000;   /* amber as text - darkened to clear 4.5:1 */

  /* Light theme surface */
  --bg:          #E7ECF4;
  --bg-2:        #DDE4EF;
  --surface:     #EDF1F8;
  --ink:         #1B2333;
  --ink-2:       #4A5568;
  --ink-3:       #5A6577;
  --hair:        rgba(74, 86, 107, .14);

  /* Neumorphic shadow pair */
  --lift:  -7px -7px 16px rgba(255,255,255,.92), 8px 8px 20px rgba(70,92,130,.20);
  --lift-lg: -10px -10px 26px rgba(255,255,255,.95), 14px 14px 34px rgba(70,92,130,.24);
  --press: inset -4px -4px 10px rgba(255,255,255,.85), inset 5px 5px 12px rgba(70,92,130,.20);
  --glow:  0 18px 40px -14px rgba(53,169,188,.45);

  --r-sm: 14px;
  --r:    22px;
  --r-lg: 30px;

  --display: 'Sora', system-ui, sans-serif;
  --body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px; --s6: 96px;
  --shell: 1240px;

  --aurora-1: rgba(53,169,188,.30);
  --aurora-2: rgba(74,86,107,.26);
  --aurora-3: rgba(242,165,12,.18);
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg:      #0B1220;
  --bg-2:    #0F1828;
  --surface: rgba(255,255,255,.055);
  --ink:     #F2F6FC;
  --ink-2:   #B4C0D4;
  --ink-3:   #8391A8;
  --hair:    rgba(255,255,255,.13);
  --teal-deep: #5BC7D8;
  --amber-deep: #FFC658;

  --lift:  0 10px 30px -8px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.10);
  --lift-lg: 0 22px 54px -14px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.14);
  --press: inset 0 2px 10px rgba(0,0,0,.55);
  --glow:  0 20px 50px -16px rgba(53,169,188,.55);

  --aurora-1: rgba(53,169,188,.34);
  --aurora-2: rgba(96,116,255,.24);
  --aurora-3: rgba(242,165,12,.16);
}

/* ---------- Cross-page view transitions ----------
   Chrome/Edge morph between pages instead of blinking white. Every other
   browser ignores the at-rule entirely and navigates as normal. */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation-duration: .28s; }
::view-transition-new(root) { animation-duration: .28s; }

/* The header and the logo persist, so they slide rather than cross-fade */
.nav { view-transition-name: sitenav; }
.brand { view-transition-name: sitelogo; }

@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .45s ease, color .45s ease;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: #06131A; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

/* ---------- The theme: a living aurora behind everything ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute; border-radius: 50%; filter: blur(90px);
  will-change: transform;
}
.aurora span:nth-child(1) { width: 46vw; height: 46vw; left: -8vw;  top: -10vw;  background: var(--aurora-1); animation: drift1 26s ease-in-out infinite alternate; }
.aurora span:nth-child(2) { width: 40vw; height: 40vw; right: -6vw; top: 22vh;   background: var(--aurora-2); animation: drift2 32s ease-in-out infinite alternate; }
.aurora span:nth-child(3) { width: 34vw; height: 34vw; left: 28vw;  bottom: -12vw; background: var(--aurora-3); animation: drift3 29s ease-in-out infinite alternate; }

@keyframes drift1 { to { transform: translate3d(9vw, 7vh, 0) scale(1.16); } }
@keyframes drift2 { to { transform: translate3d(-11vw, -6vh, 0) scale(1.1); } }
@keyframes drift3 { to { transform: translate3d(6vw, -9vh, 0) scale(1.2); } }

@media (prefers-reduced-motion: reduce) {
  .aurora span { animation: none; }
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
}
.d1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); letter-spacing: -0.04em; }
.d2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
.d3 { font-size: clamp(1.4rem, 2.1vw, 1.85rem); letter-spacing: -0.025em; }
.d4 { font-size: 1.18rem; letter-spacing: -0.02em; line-height: 1.25; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--ink-2); max-width: 54ch; }
.small { font-size: .92rem; color: var(--ink-2); }

.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal-deep);
}
.tag--muted { color: var(--ink-3); }

/* ---------- Shell ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--s3); }
.band { padding-block: clamp(64px, 9vw, 112px); position: relative; }

.sec-head { max-width: 62ch; margin-bottom: var(--s5); }
.sec-head h2 { margin: 10px 0 14px; }

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

/* ============================================================
   THE surface primitive - every card on the site is one of these
   ============================================================ */
.panel {
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--lift);
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.2,.8,.3,1), background .45s ease;
}
:root[data-theme='dark'] .panel {
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid var(--hair);
}
.panel--pad { padding: var(--s3); }
.panel--hover:hover { transform: translateY(-6px); box-shadow: var(--lift-lg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px; border: 0; cursor: pointer;
  font-family: var(--body); font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  white-space: nowrap;
  border-radius: 100px; background: var(--surface); color: var(--ink);
  box-shadow: var(--lift);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, filter .22s ease;
}
:root[data-theme='dark'] .btn { border: 1px solid var(--hair); backdrop-filter: blur(12px); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--lift-lg); }
.btn:active { transform: translateY(0); box-shadow: var(--press); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--cta {
  background: linear-gradient(135deg, var(--amber), #FFC24D);
  color: #241700; box-shadow: 0 14px 30px -10px rgba(242,165,12,.6);
}
.btn--cta:hover { box-shadow: 0 20px 42px -12px rgba(242,165,12,.75); filter: saturate(1.08); }
:root[data-theme='dark'] .btn--cta { border-color: transparent; }

.btn--teal {
  background: linear-gradient(135deg, var(--teal), #4FC6D8);
  color: #04222A; box-shadow: var(--glow);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--hair);
}
.nav__in {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--s3);
  height: 76px; display: flex; align-items: center; gap: var(--s3);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }
.nav__panel { display: none; }
.logo-dark { display: none; }
:root[data-theme='dark'] .logo-light { display: none; }
:root[data-theme='dark'] .logo-dark { display: block; }

.nav__links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav__links a {
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
  padding: 10px 14px; border-radius: 100px; transition: background .2s, color .2s;
}
.nav__links a:hover { color: var(--ink); background: color-mix(in srgb, var(--slate) 12%, transparent); }

.nav__act { display: flex; align-items: center; gap: 10px; margin-left: var(--s2); }
.nav .btn { min-height: 46px; padding: 0 20px; font-size: .88rem; }

.tog {
  width: 46px; height: 46px; border-radius: 50%; border: 0; flex: none;
  background: var(--surface); box-shadow: var(--lift); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .22s;
}
:root[data-theme='dark'] .tog { border: 1px solid var(--hair); }
.tog:hover { transform: rotate(-18deg); }
.tog:active { box-shadow: var(--press); }
.tog svg { width: 20px; height: 20px; }
.tog .moon { display: none; }
:root[data-theme='dark'] .tog .sun { display: none; }
:root[data-theme='dark'] .tog .moon { display: block; }

.nav__toggle { display: none; }

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__act { margin-left: auto; }
  .nav__toggle {
    display: grid; place-items: center; width: 46px; height: 46px; border: 0; border-radius: 50%;
    background: var(--surface); box-shadow: var(--lift); color: var(--ink); cursor: pointer;
  }
  .nav__panel { display: none; padding: var(--s2) var(--s3) var(--s3); border-top: 1px solid var(--hair); }
  .nav__panel[data-open='true'] { display: block; }
  .nav__panel a { display: block; padding: 15px 4px; font-weight: 600; border-bottom: 1px solid var(--hair); }
  .nav__panel .btn { margin-top: var(--s3); width: 100%; }
}

/* Below this the header runs out of room - the CTA lives in the menu panel */
@media (max-width: 620px) {
  .nav__act > .btn--cta { display: none; }
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; inset: 0 0 auto; height: 3px; z-index: 100;
  background: transparent; pointer-events: none;
}
.progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  box-shadow: 0 0 12px color-mix(in srgb, var(--teal) 60%, transparent);
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(48px, 6vw, 80px); }
.hero__intro { text-align: center; max-width: 760px; margin: 0 auto clamp(28px, 4vw, 44px); }
.hero__intro .pill { margin-bottom: var(--s3); }
.hero__intro .lede { margin: 18px auto 0; }

/* ---------- Service switcher ---------- */
.switch {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  max-width: 620px; margin: 0 auto clamp(28px, 4vw, 44px);
  padding: 8px; border-radius: 100px; background: var(--surface); box-shadow: var(--press);
}
:root[data-theme='dark'] .switch { background: rgba(0,0,0,.28); border: 1px solid var(--hair); }

.switch__btn {
  position: relative; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border: 0; background: transparent; cursor: pointer;
  border-radius: 100px; text-align: left; color: var(--ink-3);
  font-family: var(--body); transition: color .3s ease;
}
.switch__btn[aria-selected='true'] { color: var(--ink); }
.switch__ico {
  width: 40px; height: 40px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: var(--bg-2); transition: background .35s ease, box-shadow .35s ease;
}
:root[data-theme='dark'] .switch__ico { background: rgba(255,255,255,.07); }
.switch__ico svg { width: 20px; height: 20px; stroke: currentColor; }
.switch__btn[aria-selected='true'] .switch__ico {
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A; box-shadow: var(--glow);
}
.switch__txt b { display: block; font-size: .96rem; font-weight: 700; line-height: 1.2; }
.switch__txt small { font-size: .78rem; color: var(--ink-3); }
.switch__btn[aria-selected='false'] { color: var(--ink-2); }

/* the sliding pill that follows the active tab */
.switch__ink {
  position: absolute; z-index: 1; top: 8px; bottom: 8px; left: 8px;
  width: calc(50% - 12px); border-radius: 100px;
  background: var(--surface); box-shadow: var(--lift);
  transition: transform .45s cubic-bezier(.65,.05,.15,1);
}
:root[data-theme='dark'] .switch__ink { border: 1px solid var(--hair); }
/* Digital Marketing is the first tab, Marketplace Listing the second, so the
   pill only slides right when Listing is chosen. */
.switch[data-lane='listing'] .switch__ink { transform: translateX(calc(100% + 8px)); }

@media (max-width: 620px) {
  .switch { grid-template-columns: 1fr; border-radius: var(--r); }
  .switch__ink { display: none; }
  .switch__btn[aria-selected='true'] { background: var(--surface); box-shadow: var(--lift); }
}
@media (prefers-reduced-motion: reduce) { .switch__ink { transition: none; } }

/* Hint above the switcher - people miss tabs, so say it out loud.
   JS drops [data-hint] after the first switch, and it fades away. */
.switch__hint {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 0 auto 14px; max-width: 620px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  transition: opacity .5s ease;
}
.switch__hint svg { width: 16px; height: 16px; color: var(--teal-deep); flex: none; }
.switch__hint[data-hint='live'] svg { animation: nudge 1.9s ease-in-out infinite; }
.switch__hint:not([data-hint]) { opacity: 0; pointer-events: none; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Until the visitor has switched once, the unselected tab breathes so it
   reads as pressable rather than as a label. */
.switch[data-untouched='true'] .switch__btn[aria-selected='false'] .switch__ico {
  animation: beckon 2.4s ease-in-out infinite;
}
@keyframes beckon {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--teal) 45%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--teal) 0%, transparent); }
}

@media (prefers-reduced-motion: reduce) {
  .switch__hint svg, .switch[data-untouched='true'] .switch__btn .switch__ico { animation: none; }
}

/* Cross-link to the other service, at the foot of each lane */
.cross {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  margin-top: var(--s3); padding: 16px 20px; cursor: pointer;
  border: 1px dashed color-mix(in srgb, var(--teal) 45%, transparent);
  border-radius: var(--r); background: color-mix(in srgb, var(--teal) 7%, transparent);
  font-family: var(--body); color: var(--ink);
  transition: background .22s ease, border-color .22s ease, transform .22s cubic-bezier(.2,.8,.3,1);
}
.cross:hover {
  background: color-mix(in srgb, var(--teal) 14%, transparent);
  border-color: var(--teal); transform: translateY(-2px);
}
.cross__ico {
  width: 40px; height: 40px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A;
}
.cross__ico svg { width: 20px; height: 20px; stroke: currentColor; }
.cross__txt { font-size: .88rem; color: var(--ink-2); line-height: 1.35; }
.cross__txt b { display: block; font-size: .98rem; color: var(--teal-deep); }
.cross__arrow { width: 18px; height: 18px; margin-left: auto; flex: none; color: var(--teal-deep); transition: transform .22s cubic-bezier(.2,.8,.3,1); }
.cross:hover .cross__arrow { transform: translateX(4px); }

/* ---------- Lanes ----------
   The switcher drives the whole page, not just the hero. Anything marked
   [data-for] belongs to one lane; JS toggles `hidden` on the rest. */
[hidden] { display: none !important; }

.lane { display: none; }
.lane[data-active='true'] { display: block; }
.lane__grid {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 1040px) { .lane__grid { grid-template-columns: 1fr; } }
.lane__copy h2 { margin-bottom: 14px; }
.lane__copy > p { color: var(--ink-2); max-width: 52ch; }
.lane__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s3); }

.ticks { list-style: none; margin: var(--s3) 0 0; padding: 0; display: grid; gap: 10px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--ink-2); }
.ticks li::before {
  content: ''; flex: none; width: 21px; height: 21px; border-radius: 7px; margin-top: 2px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304222A' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l6 6L20 5'/%3E%3C/svg%3E") center / 11px no-repeat,
    linear-gradient(135deg, var(--teal), #4FC6D8);
}

.lane__visual { position: relative; }
.shot { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--lift-lg); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot--tuck {
  position: absolute; right: -14px; bottom: -46px; width: 44%; max-width: 260px;
  aspect-ratio: 4/3; border: 5px solid var(--bg); z-index: 3;
}
:root[data-theme='dark'] .shot--tuck { border-color: var(--bg); }
@media (max-width: 1040px) { .shot--tuck { position: static; width: 100%; max-width: none; margin-top: 18px; border-width: 0; } }

/* ---------- Growth Console (marketing twin of the machine) ---------- */
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: var(--s3); }
.kpi { text-align: center; padding: 14px 8px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .kpi { border: 1px solid var(--hair); }
.kpi b {
  display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.035em; line-height: 1;
  background: linear-gradient(140deg, var(--teal-deep), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi span { font-size: .72rem; font-weight: 600; color: var(--ink-3); }

.bars { display: flex; align-items: flex-end; gap: 8px; height: 132px; padding-top: 8px; }
.bars span {
  flex: 1; height: var(--h); border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--slate) 55%, transparent), color-mix(in srgb, var(--slate) 25%, transparent));
  transform-origin: bottom; transition: height .5s;
}
.bars span[data-peak] { background: linear-gradient(180deg, var(--amber), #FFC24D); }
.bars__cap { margin: 12px 0 0; font-size: .76rem; color: var(--ink-3); font-weight: 600; text-align: center; }

/* ---------- Ticker ---------- */
.ticker-sec { padding-block: clamp(10px, 2vw, 26px); }
.ticker {
  display: flex; overflow: hidden; gap: 14px;
  /* The belt clips horizontally, so it needs vertical room for the chips'
     soft shadows - without this padding they get sliced flat at the edges. */
  padding-block: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker__track {
  display: flex; gap: 14px; flex: none; padding-right: 14px;
  animation: tick 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

.tk {
  display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; flex: none;
  padding: 14px 24px 14px 14px; border-radius: 100px;
  background: var(--surface); box-shadow: var(--lift);
  font-size: .95rem; font-weight: 700; color: var(--ink-2);
}
:root[data-theme='dark'] .tk { border: 1px solid var(--hair); }
.tk i {
  width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center;
  font-style: normal; font-size: .85rem; font-weight: 800; color: #fff; flex: none;
}

/* Official brand marks sit on a constant white tile so their own colours stay
   legible in both themes - brand blues vanish against the dark ground otherwise. */
.tk__logo {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
}
.tk__logo img { width: 20px; height: 20px; display: block; object-fit: contain; }

/* Wordmarks need a wider plate than square app icons do */
.tk__logo--wide { width: 54px; padding: 0 7px; }
.tk__logo--wide img { width: auto; height: auto; max-width: 100%; max-height: 20px; }
.tk__logo--icon svg { width: 19px; height: 19px; stroke: var(--slate); fill: none; }

/* ---------- Journey (scroll piece) ---------- */
.journey { position: relative; }
.journey__pin { padding-block: clamp(44px, 5vw, 66px); overflow: hidden; }
.journey__head { margin-bottom: clamp(22px, 3vw, 32px); }
.journey__head h2 { margin: 8px 0 16px; max-width: 18ch; font-size: clamp(1.8rem, 3.1vw, 2.6rem); }
.journey__rail { height: 4px; border-radius: 100px; background: var(--bg-2); overflow: hidden; max-width: 420px; }
:root[data-theme='dark'] .journey__rail { background: rgba(255,255,255,.1); }
.journey__rail i { display: block; height: 100%; width: 25%; border-radius: 100px; background: linear-gradient(90deg, var(--teal), var(--amber)); transition: width .2s linear; }

.journey__track { display: flex; gap: 28px; padding-inline: max(24px, calc((100vw - var(--shell)) / 2)); will-change: transform; }
.jstep {
  flex: none; width: min(78vw, 440px); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--lift);
}
:root[data-theme='dark'] .jstep { border: 1px solid var(--hair); backdrop-filter: blur(18px) saturate(1.5); }
.jstep__img { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.jstep__img img { width: 100%; height: 100%; object-fit: cover; }

/* Drawn scenes rather than stock photos, where the step is an idea
   (found, chosen, bought) that no photograph states plainly. */
.jstep__art { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
:root[data-theme='dark'] .jstep__art { background: rgba(255,255,255,.04); }
.jstep__art svg { width: 100%; height: 100%; display: block; }
.jstep__body { padding: 26px; }
.jstep__n {
  display: inline-block; font-family: var(--display); font-size: .82rem; font-weight: 700;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A;
}
.jstep h3 { margin-bottom: 10px; }
.jstep p { color: var(--ink-2); font-size: .94rem; margin: 0; }

/* Closing panel on the belt */
.jstep--end {
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  padding: 40px; text-align: left;
  background: linear-gradient(150deg, var(--slate), var(--slate-deep));
  color: #fff;
}
.jstep--end h3 { color: #fff; }
.jstep--end p { color: rgba(255,255,255,.78); }
.jstep--end .btn { align-self: flex-start; }

/* On a phone the pinned block must fit the viewport height, or the last card
   is cut off while the section is pinned. Smaller cards, shorter images. */
@media (max-width: 760px) {
  /* A 7-item horizontal anchor scroller is awkward on a phone and it collides
     with the pinned journey. The page nav already covers navigation. */
  .subnav { display: none; }
  /* Clear the sticky header so the pinned heading is not hidden behind it */
  .journey__pin { padding-block: 84px 24px; }
  .journey__head { margin-bottom: 18px; }
  .journey__head h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); margin: 6px 0 12px; }
  .journey__track { gap: 16px; padding-inline: 20px; }
  .jstep { width: 78vw; max-width: 320px; }
  .jstep__img { aspect-ratio: 16/10; }
  .jstep__body { padding: 16px 18px 20px; }
  .jstep__n { margin-bottom: 8px; padding: 4px 11px; font-size: .74rem; }
  .jstep h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .jstep p { font-size: .86rem; }
  .jstep--end { padding: 24px; gap: 12px; }
}

/* When JS pinning is unavailable, fall back to a plain scroller */
.journey__track.is-static { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
.journey__track.is-static .jstep { scroll-snap-align: center; }

/* ---------- Add-ons bento ---------- */
.bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr; } }
.feat { overflow: hidden; display: flex; flex-direction: column; }
.feat__img { margin: 0; aspect-ratio: 16/9; overflow: hidden; }
.feat__img img { width: 100%; height: 100%; object-fit: cover; }
.feat__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.feat__body h3 { margin: 2px 0 0; }
.feat__body p { margin: 0; color: var(--ink-2); font-size: .95rem; }

.pillrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.pillrow span {
  font-size: .78rem; font-weight: 600; padding: 7px 13px; border-radius: 100px;
  background: color-mix(in srgb, var(--slate) 10%, transparent); color: var(--ink-2);
}
:root[data-theme='dark'] .pillrow span { background: rgba(255,255,255,.08); }
.pillrow--sm span { font-size: .74rem; padding: 6px 11px; }

/* ---------- Before / after comparison ----------
   Two stacked layers; the top one is clipped to the handle position.
   A real range input drives it, so keyboard and screen readers work. */
.ba { margin: 0; }
.ba__stage {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--lift-lg); cursor: ew-resize; touch-action: pan-y;
  --split: 52%;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer svg { width: 100%; height: 100%; display: block; }
.ba__layer--after { clip-path: inset(0 0 0 var(--split)); }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--split);
  width: 3px; margin-left: -1.5px; background: #fff;
  box-shadow: 0 0 0 1px rgba(10,16,28,.18), 0 0 18px rgba(10,16,28,.28);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--slate);
  box-shadow: 0 6px 18px rgba(10,16,28,.28);
}
.ba__grip svg { width: 20px; height: 20px; }

/* The range is the actual control - visually minimal, fully operable */
.ba__srlabel {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.ba__range {
  width: 100%; margin: 14px 0 0; accent-color: var(--teal); cursor: ew-resize;
}
.ba__range:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 6px; }
.ba__cap { margin-top: 8px; font-size: .84rem; color: var(--ink-3); text-align: center; font-weight: 600; }

/* ---------- Growth calculator ---------- */
.calc {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 3vw, 40px); padding: clamp(24px, 3vw, 36px);
}
@media (max-width: 900px) { .calc { grid-template-columns: minmax(0, 1fr); } }

/* Grid items default to min-width:auto and refuse to shrink below their
   content, which blows the track out past the viewport on small screens. */
/* Applied at every nesting level - a single min-width:0 on the outer item is
   not enough, because each nested grid re-introduces min-width:auto. */
.calc > *, .finder > *,
.calc__out > *, .calc__ins > *,
.cbars > *, .cbar > *, .cstats > *,
.finder__out > *, .finder__qs > * { min-width: 0; }
.calc__ins { display: grid; gap: var(--s3); align-content: start; min-width: 0; }
.cin, .cin__top, .cin input[type=range] { min-width: 0; max-width: 100%; }
.cin__top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.cin__label { font-size: .9rem; font-weight: 700; }
.cin__val { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--teal-deep); }
.cin input[type=range] { width: 100%; accent-color: var(--teal); cursor: grab; }
.cin input[type=range]:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 6px; }

.calc__out {
  border-radius: var(--r); background: var(--bg); box-shadow: var(--press); padding: var(--s3);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; align-content: start;
}
:root[data-theme='dark'] .calc__out { background: rgba(0,0,0,.24); }

.cbars { display: grid; gap: 12px; }
.cbar__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.cbar__name { font-size: .82rem; font-weight: 700; color: var(--ink-2); }
.cbar__fig { font-family: var(--display); font-size: 1rem; font-weight: 700; }
.cbar__track { height: 12px; border-radius: 100px; background: var(--bg-2); overflow: hidden; }
:root[data-theme='dark'] .cbar__track { background: rgba(255,255,255,.08); }
.cbar__fill { height: 100%; border-radius: 100px; width: 0; transition: width .5s cubic-bezier(.2,.8,.3,1); }
.cbar--now .cbar__fill { background: linear-gradient(90deg, var(--slate), #6C7A93); }
.cbar--opt .cbar__fill { background: linear-gradient(90deg, var(--teal), #4FC6D8); }
.cbar--opt .cbar__fig { color: var(--teal-deep); }

.cstats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 560px) { .cstats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cstat { padding: 14px 12px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); text-align: center; }
:root[data-theme='dark'] .cstat { border: 1px solid var(--hair); }
.cstat b {
  display: block; font-family: var(--display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(.95rem, 3.4vw, 1.15rem);
}
.cstat span { font-size: .72rem; font-weight: 600; color: var(--ink-3); }

.calc__note { font-size: .78rem; color: var(--ink-3); line-height: 1.45; }

/* Long CTA labels inside a narrow panel must wrap, not spill past the pill */
.calc__out .btn, .fitres__cta {
  white-space: normal; text-align: center; line-height: 1.25; padding-block: 14px;
}

/* ---------- Marketplace fit finder ---------- */
.finder {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 40px); padding: clamp(24px, 3vw, 36px);
}
@media (max-width: 900px) { .finder { grid-template-columns: minmax(0, 1fr); } }

.finder__qs { display: grid; gap: var(--s3); align-content: start; }
.fq { border: 0; margin: 0; padding: 0; }
.fq__label { font-size: .9rem; font-weight: 700; color: var(--ink); padding: 0 0 10px; }
.fq__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.fq__opt {
  font-family: var(--body); font-size: .84rem; font-weight: 600; cursor: pointer;
  padding: 10px 15px; border-radius: 100px; border: 1px solid var(--hair);
  background: transparent; color: var(--ink-2);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s cubic-bezier(.2,.8,.3,1);
}
.fq__opt:hover { border-color: var(--teal); color: var(--ink); transform: translateY(-1px); }
.fq__opt[aria-pressed='true'] {
  background: linear-gradient(135deg, var(--teal), #4FC6D8);
  border-color: transparent; color: #04222A;
}

.finder__out {
  border-radius: var(--r); background: var(--bg); box-shadow: var(--press);
  padding: var(--s3); min-height: 260px; display: grid; align-content: start;
}
:root[data-theme='dark'] .finder__out { background: rgba(0,0,0,.24); }
.finder__hint { margin: auto; text-align: center; color: var(--ink-3); font-size: .9rem; font-weight: 600; }

.fitres { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.fitres__tier { border-radius: var(--r-sm); padding: 14px 16px; background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .fitres__tier { border: 1px solid var(--hair); }
.fitres__tier[data-tier='strong'] { box-shadow: var(--lift), inset 0 0 0 2px color-mix(in srgb, var(--teal) 55%, transparent); }
.fitres__tier[data-tier='skip'] { opacity: .72; }
.fitres__head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.fitres__head b { font-family: var(--display); font-size: .95rem; }
.fitres__head span { font-size: .78rem; color: var(--ink-3); }
.fitres__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.fitres__item { display: flex; align-items: center; gap: 12px; }
.fitres__mark { width: 46px; height: 22px; flex: none; display: grid; place-items: center; }
.fitres__mark img { max-width: 100%; max-height: 20px; width: auto; object-fit: contain; }
.fitres__mark--text { font-family: var(--display); font-weight: 700; font-size: .72rem; color: var(--ink-2); }
:root[data-theme='dark'] .fitres__mark img:not(.is-badge) { filter: brightness(0) invert(1); }
.fitres__txt { font-size: .82rem; color: var(--ink-3); line-height: 1.35; }
.fitres__txt b { display: block; font-size: .9rem; color: var(--ink); }
.fitres__cta { width: 100%; margin-top: 4px; }

/* ---------- Trust ---------- */
.trust { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(24px, 3.5vw, 44px); align-items: stretch; }
@media (max-width: 940px) { .trust { grid-template-columns: 1fr; } }
.trust__img { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--lift-lg); min-height: 320px; }
.trust__img img { width: 100%; height: 100%; object-fit: cover; }
.trust__cards { display: grid; gap: 16px; align-content: start; }
.tcard { display: flex; gap: 16px; padding: 22px; align-items: flex-start; }
.tcard__ico {
  width: 44px; height: 44px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--teal) 18%, transparent);
}
.tcard__ico svg { width: 20px; height: 20px; stroke: var(--teal-deep); }
.tcard h3 { margin-bottom: 5px; }
.tcard p { margin: 0; font-size: .92rem; color: var(--ink-2); }

.certs { margin-top: clamp(28px, 4vw, 44px); text-align: center; }
.certs__row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 16px; }

/* ---------- Work cover photos ---------- */
.wcard__cover img { width: 100%; height: 100%; object-fit: cover; }
.wcard__cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,28,.05) 40%, rgba(10,16,28,.55));
}
.wcard__stat {
  position: absolute; right: 14px; bottom: 14px; z-index: 2; text-align: right;
  padding: 9px 15px; border-radius: 14px; color: #fff;
  background: rgba(12,20,34,.5); backdrop-filter: blur(12px);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3;
}
.wcard__stat b { display: block; font-family: var(--display); font-size: 1.4rem; letter-spacing: -.03em; text-transform: none; }
.wcard__badge { z-index: 2; }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px 9px 12px;
  border-radius: 100px; background: var(--surface); box-shadow: var(--lift);
  font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: var(--s3);
}
:root[data-theme='dark'] .pill { border: 1px solid var(--hair); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; animation: blip 2.4s ease-in-out infinite; }
@keyframes blip { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(53,169,188,.6); } 50% { opacity: .55; box-shadow: 0 0 0 7px rgba(53,169,188,0); } }
@media (prefers-reduced-motion: reduce) { .pill .dot { animation: none; } }

.hero h1 em {
  font-style: normal;
  background: linear-gradient(115deg, var(--teal-deep), var(--teal) 55%, var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s4); }

.hero__strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s4); align-items: center; }
.hero__strip .small { color: var(--ink-3); font-weight: 600; }

/* ---------- Stat pods ---------- */
.pods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: var(--s4); }
@media (max-width: 520px) { .pods { grid-template-columns: 1fr; } }
.pod { padding: 18px 20px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .pod { border: 1px solid var(--hair); }
.pod strong { display: block; font-family: var(--display); font-size: 1.75rem; font-weight: 700; line-height: 1; letter-spacing: -.035em; }
.pod span { font-size: .78rem; font-weight: 600; color: var(--ink-3); }

/* ============================================================
   SIGNATURE - the Listing Machine, as a soft device
   ============================================================ */
.machine {
  border-radius: var(--r-lg); background: var(--surface);
  box-shadow: var(--lift-lg); padding: 10px; position: relative;
}
:root[data-theme='dark'] .machine { border: 1px solid var(--hair); backdrop-filter: blur(20px) saturate(1.6); }

.machine__bar {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px 16px;
}
.machine__dots { display: flex; gap: 6px; }
.machine__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--hair); }
.machine__dots i:first-child { background: color-mix(in srgb, var(--amber) 70%, transparent); }
.machine__title { font-size: .8rem; font-weight: 700; color: var(--ink-3); letter-spacing: .02em; }
.machine__state {
  margin-left: auto; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 100px; background: var(--bg-2); color: var(--ink-2);
  box-shadow: var(--press); white-space: nowrap;
  transition: background .4s, color .4s, box-shadow .4s;
}
.machine__state[data-live='true'] {
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A;
  box-shadow: var(--glow);
}

.machine__screen {
  border-radius: var(--r); background: var(--bg); box-shadow: var(--press); padding: var(--s3);
}
:root[data-theme='dark'] .machine__screen { background: rgba(6,12,22,.5); }

.card { display: grid; grid-template-columns: 116px 1fr; gap: 20px; align-items: start; }
@media (max-width: 440px) { .card { grid-template-columns: 88px 1fr; gap: 14px; } }

.card__shot {
  aspect-ratio: 1; border-radius: var(--r-sm); background: var(--surface);
  box-shadow: var(--lift); display: grid; place-items: center; position: relative; overflow: hidden;
  transition: box-shadow .5s;
}
.card__shot .pkg { width: 62%; height: 62%; transition: opacity .5s, transform .5s; opacity: .3; }
.card__shot[data-done='true'] { box-shadow: var(--lift), inset 0 0 0 2px color-mix(in srgb, var(--teal) 55%, transparent); }
.card__shot[data-done='true'] .pkg { opacity: 1; transform: scale(1.04); }
.card__shot::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-130%);
  background: linear-gradient(105deg, transparent 42%, color-mix(in srgb, var(--teal) 45%, transparent) 50%, transparent 58%);
}
.card__shot[data-scan='true']::after { animation: scan 1s ease-in-out; }
@keyframes scan { to { transform: translateX(130%); } }

.line { height: 13px; border-radius: 100px; background: var(--bg-2); margin-bottom: 11px; position: relative; overflow: hidden; }
:root[data-theme='dark'] .line { background: rgba(255,255,255,.07); }
.line--title { height: 22px; width: 94%; }
.line--sm { width: 68%; }
.line--xs { width: 44%; }
.line__fill {
  position: absolute; inset: 0; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--slate), var(--slate-deep));
  display: flex; align-items: center; padding-left: 12px; overflow: hidden;
}
.line--kw .line__fill { background: linear-gradient(90deg, var(--teal-deep), var(--teal)); }
.line__fill span { font-size: .68rem; font-weight: 600; color: #fff; white-space: nowrap; opacity: 0; }
.line--title .line__fill span { font-size: .78rem; font-weight: 700; }

.machine__steps { margin-top: var(--s3); display: grid; gap: 9px; }
.step { display: flex; align-items: center; gap: 12px; font-size: .84rem; font-weight: 600; color: var(--ink-3); transition: color .3s; }
.step__box {
  width: 22px; height: 22px; border-radius: 7px; flex: none; display: grid; place-items: center;
  background: var(--bg-2); box-shadow: var(--press); transition: background .3s, box-shadow .3s;
}
:root[data-theme='dark'] .step__box { background: rgba(255,255,255,.08); }
.step__box svg { width: 11px; height: 11px; opacity: 0; transform: scale(.4); stroke: #04222A; transition: opacity .25s, transform .3s cubic-bezier(.2,1.7,.4,1); }
.step[data-done='true'] { color: var(--ink); }
.step[data-done='true'] .step__box { background: linear-gradient(135deg, var(--teal), #4FC6D8); box-shadow: var(--glow); }
.step[data-done='true'] .step__box svg { opacity: 1; transform: scale(1); }

.machine__foot { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 8px 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 700; padding: 7px 13px 7px 8px; border-radius: 100px;
  background: var(--surface); box-shadow: var(--lift); opacity: 0; transform: translateY(10px);
}
:root[data-theme='dark'] .chip { border: 1px solid var(--hair); }
.chip i { width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; font-style: normal; font-size: .62rem; font-weight: 800; color: #fff; flex: none; }
.chip__logo {
  width: 30px; height: 18px; flex: none; display: grid; place-items: center;
}
.chip__logo img { max-width: 100%; max-height: 13px; width: auto; height: auto; object-fit: contain; }
.chip__logo--icon { width: 18px; }
.chip__logo--icon svg { width: 12px; height: 12px; stroke: var(--slate); }

/* ---------- Platform logo wall ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 900px) { .pf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
.pf {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 22px 12px; border-radius: var(--r); background: var(--surface); box-shadow: var(--lift);
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s;
}
:root[data-theme='dark'] .pf { border: 1px solid var(--hair); }
.pf:hover { transform: translateY(-6px); box-shadow: var(--lift-lg); }
/* Logos sit straight on the panel - no plate, no box. In dark mode the
   wordmarks flip to white so they stay legible; brands whose logo is already
   a self-coloured badge (Blinkit, Meesho) are exempt and keep their colour. */
.pf__mark {
  width: 100%; height: 46px; display: grid; place-items: center; padding: 0 8px;
}
.pf__mark img { max-width: 100%; max-height: 32px; width: auto; height: auto; object-fit: contain; }
:root[data-theme='dark'] .pf__mark img:not(.is-badge),
:root[data-theme='dark'] .tk__logo img:not(.is-badge),
:root[data-theme='dark'] .chip__logo img:not(.is-badge) {
  filter: brightness(0) invert(1);
}

/* One exception: a mark that mixes a coloured icon with dark text can be
   neither flipped nor left alone, so it gets a light plate in dark mode only. */
:root[data-theme='dark'] .is-plated {
  background: rgba(255,255,255,.92); border-radius: 7px; padding: 4px 6px;
}
.pf__mark--text {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em;
}
.pf__name { font-size: .82rem; font-weight: 700; color: var(--ink-2); text-align: center; }

/* ---------- Services ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 940px) { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.svc { padding: var(--s3); display: flex; flex-direction: column; gap: 14px; }
.svc__art { border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--press); background: var(--bg); }
.svc__art svg { width: 100%; height: auto; display: block; }
.svc h3 { letter-spacing: -.02em; }
.svc p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.svc__ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg, color-mix(in srgb, var(--teal) 22%, transparent), transparent);
  box-shadow: var(--lift);
}
.svc__ico svg { width: 21px; height: 21px; stroke: var(--teal-deep); }

/* Inline "learn more" link with a nudging arrow */
.linkarrow {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 12px;
  font-size: .88rem; font-weight: 700; color: var(--teal-deep);
}
.linkarrow svg { width: 15px; height: 15px; transition: transform .22s cubic-bezier(.2,.8,.3,1); }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---------- Split feature (listing) ---------- */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: clamp(28px,4vw,60px); align-items: center; }
@media (max-width: 1000px) { .split { grid-template-columns: 1fr; } }

.deliver { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.deliver li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; padding: 16px 18px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .deliver li { border: 1px solid var(--hair); }
.deliver .n {
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: .85rem; color: #04222A;
  background: linear-gradient(135deg, var(--teal), #4FC6D8);
}
.deliver h4 { font-size: 1.02rem; margin-bottom: 3px; }
.deliver p { font-size: .89rem; color: var(--ink-2); margin: 0; }

.turn { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
@media (max-width: 520px) { .turn { grid-template-columns: 1fr; } }
.turn div { padding: 20px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .turn div { border: 1px solid var(--hair); }
.turn strong { display: block; font-family: var(--display); font-size: 1.6rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; color: var(--teal-deep); }
.turn span { font-size: .8rem; color: var(--ink-3); font-weight: 600; }

/* ---------- Metrics ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 940px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric { padding: 26px 22px; text-align: center; }
.metric strong {
  display: block; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  background: linear-gradient(140deg, var(--teal-deep), var(--teal) 60%, var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metric span { display: block; margin-top: 10px; font-size: .86rem; color: var(--ink-2); font-weight: 600; }

/* ---------- Work showcase ---------- */
.work { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
@media (max-width: 1000px) { .work { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px) { .work { grid-template-columns: 1fr; } }

.wcard { overflow: hidden; display: flex; flex-direction: column; }
.wcard__cover { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.wcard__cover svg { width: 100%; height: 100%; display: block; }
.wcard__badge {
  position: absolute; left: 16px; top: 16px; padding: 7px 14px; border-radius: 100px;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.9); color: #1B2333; backdrop-filter: blur(10px);
}
.wcard__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.wcard h3 { font-size: 1.3rem; }
.wcard p { font-size: .93rem; color: var(--ink-2); margin: 0; }
.wcard__res { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.res {
  padding: 8px 13px; border-radius: 100px; font-size: .78rem; font-weight: 700;
  background: color-mix(in srgb, var(--teal) 16%, transparent); color: var(--teal-deep);
}
.res--amber { background: color-mix(in srgb, var(--amber) 20%, transparent); color: var(--amber-deep); }

/* ---------- Quotes ---------- */
.quote { padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.quote__stars { display: flex; gap: 3px; }
.quote__stars svg { width: 16px; height: 16px; fill: var(--amber); }
.quote p { font-size: 1.02rem; color: var(--ink); margin: 0; }
.quote footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: #fff; font-size: .95rem;
  background: linear-gradient(135deg, var(--slate), var(--teal));
}
.quote cite { font-style: normal; font-weight: 700; display: block; font-size: .94rem; }
.quote small { font-size: .78rem; color: var(--ink-3); font-weight: 600; }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(28px,4vw,56px); align-items: center; }
@media (max-width: 940px) { .founder { grid-template-columns: 1fr; } }
.portrait { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--lift-lg); position: relative; aspect-ratio: 4/5; background: var(--surface); }
.portrait svg { width: 100%; height: 100%; }
.portrait__note {
  position: absolute; inset: auto 14px 14px; padding: 12px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px); color: #1B2333;
  font-size: .78rem; font-weight: 600; text-align: center;
}

.cred { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: var(--s3); }
@media (max-width: 560px) { .cred { grid-template-columns: 1fr; } }
.cred div { padding: 18px 20px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .cred div { border: 1px solid var(--hair); }
.cred dt { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 6px; }
.cred dd { margin: 0; font-size: .92rem; color: var(--ink-2); }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s3); }
.badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 100px;
  font-size: .8rem; font-weight: 700; background: var(--surface); box-shadow: var(--lift); color: var(--ink-2);
}
:root[data-theme='dark'] .badge { border: 1px solid var(--hair); }
.badge svg { width: 14px; height: 14px; stroke: var(--teal-deep); flex: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details { border-radius: var(--r); background: var(--surface); box-shadow: var(--lift); overflow: hidden; }
:root[data-theme='dark'] .faq details { border: 1px solid var(--hair); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; margin-left: auto; flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-2); box-shadow: var(--press);
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 11px 2px, 2px 11px; background-position: center, center; background-repeat: no-repeat;
  transition: transform .28s cubic-bezier(.2,.8,.3,1);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq p { padding: 0 24px 24px; color: var(--ink-2); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(28px,4vw,56px); }
@media (max-width: 1000px) { .contact { grid-template-columns: 1fr; } }

.form { display: grid; gap: 18px; padding: clamp(24px, 3vw, 36px); }
.field { display: grid; gap: 8px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid transparent; box-shadow: var(--press);
  border-radius: var(--r-sm); padding: 15px 16px; min-height: 54px; width: 100%;
  transition: box-shadow .2s, border-color .2s;
}
:root[data-theme='dark'] .field input, :root[data-theme='dark'] .field select, :root[data-theme='dark'] .field textarea { background: rgba(0,0,0,.28); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: var(--press), 0 0 0 4px color-mix(in srgb, var(--teal) 26%, transparent);
}
.field .hint { font-size: .8rem; color: var(--ink-3); }
.field .err { font-size: .8rem; font-weight: 600; color: #C2410C; display: none; }
:root[data-theme='dark'] .field .err { color: #FCA5A5; }
.field[data-invalid='true'] input, .field[data-invalid='true'] select { border-color: #C2410C; }
.field[data-invalid='true'] .err { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
/* Honeypot - off-screen rather than display:none, which some bots detect */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__err {
  display: none; margin: 0; padding: 14px 16px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600;
  background: color-mix(in srgb, #C2410C 12%, transparent); color: #8A2C08;
}
:root[data-theme='dark'] .form__err { background: rgba(252,165,165,.12); color: #FCA5A5; }
.form__err[data-show='true'] { display: block; }

.btn:disabled { opacity: .6; cursor: progress; transform: none; }

/* Keep the layout in CSS, not inline - an inline `display` would beat the
   [data-sent] rule below and leave the fields on screen after submitting. */
.form__fields { display: grid; gap: 18px; }
.form__ok { display: none; padding: 26px; border-radius: var(--r); background: color-mix(in srgb, var(--teal) 14%, transparent); }
.form[data-sent='true'] .form__ok { display: block; }
.form[data-sent='true'] .form__fields { display: none; }

.cfacts { display: grid; gap: 12px; margin-top: var(--s3); }
.cfact { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--r-sm); background: var(--surface); box-shadow: var(--lift); }
:root[data-theme='dark'] .cfact { border: 1px solid var(--hair); }
.cfact__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--teal) 18%, transparent); flex: none; }
.cfact__ico svg { width: 18px; height: 18px; stroke: var(--teal-deep); }
.cfact b { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- Footer ---------- */
.foot { padding-block: var(--s5) var(--s3); border-top: 1px solid var(--hair); margin-top: var(--s5); }
.foot__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--s4); }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot img { height: 46px; width: auto; margin-bottom: 14px; }
.foot h4 { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li a { display: block; padding: 6px 0; font-size: .93rem; color: var(--ink-2); transition: color .2s; }
.foot li a:hover { color: var(--teal-deep); }
.foot__bar { margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: var(--ink-3); }

/* ---------- Placeholder marker ---------- */
.todo {
  padding: 20px 24px; border-radius: var(--r); font-size: .88rem; font-weight: 600;
  background: color-mix(in srgb, var(--amber) 16%, transparent); color: var(--amber-deep);
  border: 1px dashed color-mix(in srgb, var(--amber) 60%, transparent);
}
.todo b { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }

/* ============================================================
   Interior pages
   ============================================================ */

.nav__links a[aria-current='page'] { color: var(--ink); background: color-mix(in srgb, var(--slate) 12%, transparent); }

/* Page header */
.phead { padding-block: clamp(44px, 6vw, 84px) clamp(28px, 4vw, 48px); }
.phead__in { max-width: 62ch; }
.phead h1 { margin: 12px 0 18px; font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.phead .lede { max-width: 56ch; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--ink-3); }
.crumb a:hover { color: var(--teal-deep); }
.crumb svg { width: 13px; height: 13px; stroke: currentColor; opacity: .6; }

/* Anchor sub-nav inside a long page */
.subnav {
  position: sticky; top: 76px; z-index: 40; margin-bottom: clamp(28px, 4vw, 44px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.5);
  border-block: 1px solid var(--hair);
}
.subnav__in { display: flex; gap: 6px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.subnav__in::-webkit-scrollbar { display: none; }
.subnav a {
  white-space: nowrap; font-size: .87rem; font-weight: 600; color: var(--ink-2);
  padding: 9px 15px; border-radius: 100px; transition: background .2s, color .2s;
}
.subnav a:hover { color: var(--ink); background: color-mix(in srgb, var(--slate) 12%, transparent); }

/* Alternating detail rows */
.row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px); align-items: center;
  padding-block: clamp(32px, 4vw, 56px);
}
.row + .row { border-top: 1px solid var(--hair); }
@media (max-width: 900px) { .row { grid-template-columns: 1fr; } }
.row--flip .row__media { order: -1; }
@media (max-width: 900px) { .row--flip .row__media { order: 0; } }
.row__body h2 { margin: 10px 0 14px; }
.row__body > p { color: var(--ink-2); max-width: 54ch; }
.row__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--lift-lg); margin: 0; aspect-ratio: 4/3; }
.row__media img { width: 100%; height: 100%; object-fit: cover; }

/* Drawn scene instead of a photo, where the section is a capability
   (SEO, automation, lifecycle) that no stock photo states plainly. */
.row__art {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-2); box-shadow: var(--lift);
}
:root[data-theme='dark'] .row__art { background: rgba(255,255,255,.04); border: 1px solid var(--hair); }
.row__art svg { width: 100%; height: 100%; display: block; }

/* Numbered process list */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 14px; }
.steps li {
  counter-increment: s; display: grid; grid-template-columns: 46px 1fr; gap: 18px;
  padding: 22px 24px; border-radius: var(--r); background: var(--surface); box-shadow: var(--lift);
}
:root[data-theme='dark'] .steps li { border: 1px solid var(--hair); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 5px; }
.steps p { margin: 0; font-size: .93rem; color: var(--ink-2); }

/* Deliverables table */
.dtable { width: 100%; border-collapse: collapse; font-size: .94rem; }
.dtable caption { text-align: left; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 14px; }
.dtable th, .dtable td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--hair); vertical-align: top; }
.dtable th { font-weight: 700; color: var(--ink); width: 38%; }
.dtable td { color: var(--ink-2); }
.dtable tr:last-child th, .dtable tr:last-child td { border-bottom: 0; }
.tablewrap { overflow-x: auto; border-radius: var(--r); background: var(--surface); box-shadow: var(--lift); padding: 24px; }
:root[data-theme='dark'] .tablewrap { border: 1px solid var(--hair); }

/* Add-ons - deliberately quiet, these are extras not headline services */
.addon-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 860px) { .addon-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .addon-list { grid-template-columns: 1fr; } }
.addon {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px;
  border-radius: var(--r-sm); border: 1px dashed var(--hair); background: transparent;
}
.addon svg { width: 17px; height: 17px; stroke: var(--teal-deep); flex: none; margin-top: 3px; }
.addon b { display: block; font-size: .92rem; }
.addon span { font-size: .84rem; color: var(--ink-3); }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 940px) { .team { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.member { padding: 24px; text-align: center; }
.member__av {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: linear-gradient(135deg, var(--slate), var(--teal));
}
.member h3 { font-size: 1.02rem; margin-bottom: 3px; }
.member .role { font-size: .8rem; font-weight: 700; color: var(--teal-deep); display: block; margin-bottom: 10px; }
.member p { font-size: .87rem; color: var(--ink-2); margin: 0; }

/* Two co-founders, given room; the bench listed beneath them */
.founders { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
@media (max-width: 760px) { .founders { grid-template-columns: 1fr; } }
.member--lead { text-align: left; padding: 30px; }
.member--lead .member__av { margin: 0 0 16px; width: 72px; height: 72px; font-size: 1.45rem; }
.member--lead h3 { font-size: 1.3rem; }

.bench {
  margin-top: 20px; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: var(--s3); align-items: center;
}
@media (max-width: 760px) { .bench { grid-template-columns: 1fr; } }

/* Closing CTA band */
.cta-band {
  border-radius: var(--r-lg); padding: clamp(32px, 5vw, 60px); text-align: center;
  background: linear-gradient(150deg, var(--slate), var(--slate-deep));
  color: #fff; box-shadow: var(--lift-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .btn { margin-inline: 6px; }

/* Value props */
.values { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value { padding: 26px; }
.value__n { font-family: var(--display); font-size: .8rem; font-weight: 700; color: var(--teal-deep); display: block; margin-bottom: 12px; }
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { margin: 0; font-size: .93rem; color: var(--ink-2); }

/* ============================================================
   WhatsApp - sticky, every page
   ============================================================ */
.wa { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; align-items: center; gap: 10px; }
.wa__btn {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; order: 2;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.6), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s;
}
.wa__btn svg { width: 30px; height: 30px; }
.wa__btn:hover { transform: scale(1.06); box-shadow: 0 14px 32px -6px rgba(37,211,102,.75); }
.wa__btn:active { transform: scale(.97); }
.wa__tip {
  order: 1; font-size: .84rem; font-weight: 700; white-space: nowrap;
  padding: 9px 14px; border-radius: 100px; background: var(--surface); color: var(--ink);
  box-shadow: var(--lift); opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.8,.3,1);
}
:root[data-theme='dark'] .wa__tip { border: 1px solid var(--hair); }
.wa:hover .wa__tip, .wa__btn:focus-visible + .wa__tip { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .wa { right: 14px; bottom: 14px; }
  .wa__btn { width: 52px; height: 52px; }
  .wa__btn svg { width: 27px; height: 27px; }
  .wa__tip { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa__btn { transition: none; } }

/* ============================================================
   Tooltips
   ============================================================ */
.tipwrap { position: relative; display: inline-flex; vertical-align: middle; margin-left: 5px; }
.tip {
  width: 17px; height: 17px; border-radius: 50%; border: 0; cursor: help; flex: none;
  font-family: var(--body); font-size: .68rem; font-weight: 800; line-height: 1;
  background: color-mix(in srgb, var(--slate) 18%, transparent); color: var(--ink-2);
  display: grid; place-items: center; padding: 0;
}
:root[data-theme='dark'] .tip { background: rgba(255,255,255,.14); }
.tip:hover, .tip[aria-expanded='true'] { background: var(--teal); color: #04222A; }
.tip__pop {
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 240px; padding: 10px 13px; border-radius: 12px;
  /* Explicit near-white, not a token: the bubble is dark in BOTH themes, so it
     must not inherit the theme's text colour or it goes dark-on-dark. */
  background: #1B2333; color: #F4F7FC; font-size: .78rem; font-weight: 500; line-height: 1.4;
  text-transform: none; letter-spacing: 0;
  box-shadow: 0 10px 28px -8px rgba(10,16,28,.5);
  opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; z-index: 70;
}
:root[data-theme='dark'] .tip__pop { background: #1E2736; color: #F2F6FC; border: 1px solid var(--hair); }
.tipwrap:hover .tip__pop, .tip:focus-visible + .tip__pop, .tip[aria-expanded='true'] + .tip__pop {
  opacity: 1; transform: translateX(-50%); pointer-events: auto;
}
/* Near the right edge the popover would overflow, so flip its anchor */
.tipwrap:last-child .tip__pop { left: auto; right: 0; transform: translateY(4px); }
.tipwrap:last-child .tip:focus-visible + .tip__pop,
.tipwrap:last-child:hover .tip__pop,
.tipwrap:last-child .tip[aria-expanded='true'] + .tip__pop { transform: none; }

/* ============================================================
   Market switch (INR / USD)
   ============================================================ */
.market {
  display: inline-flex; gap: 6px; padding: 6px; border-radius: 100px;
  background: var(--surface); box-shadow: var(--press); margin: 0 auto 26px;
}
:root[data-theme='dark'] .market { background: rgba(0,0,0,.26); border: 1px solid var(--hair); }
.market__btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 0;
  font-family: var(--body); font-size: .88rem; font-weight: 700; color: var(--ink-2);
  padding: 11px 18px; border-radius: 100px; background: transparent;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.market__btn[aria-selected='true'] { background: var(--bg); color: var(--ink); box-shadow: var(--lift); }
:root[data-theme='dark'] .market__btn[aria-selected='true'] { background: rgba(255,255,255,.09); }
.market__flag {
  font-size: .66rem; font-weight: 800; letter-spacing: .06em; padding: 3px 6px; border-radius: 6px;
  background: color-mix(in srgb, var(--slate) 20%, transparent);
}
.market__btn[aria-selected='true'] .market__flag { background: var(--teal); color: #04222A; }
.market__cur { color: var(--teal-deep); font-weight: 800; }
.marketwrap { display: flex; justify-content: center; }

/* ---------- Tool promo cards on service pages ---------- */
.toolcard { display: flex; gap: 20px; align-items: center; padding: 26px; }
@media (max-width: 620px) { .toolcard { flex-direction: column; text-align: center; } }
.toolcard__ico {
  width: 58px; height: 58px; border-radius: 18px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), #4FC6D8); color: #04222A;
}
.toolcard__ico svg { width: 27px; height: 27px; stroke: currentColor; }
.toolcard h3 { font-size: 1.15rem; margin-bottom: 5px; }
.toolcard p { margin: 0; font-size: .92rem; color: var(--ink-2); }
.toolcard .btn { flex: none; }

/* ============================================================
   Mobile tightening
   ============================================================ */
@media (max-width: 1040px) {
  /* The header only has room for logo, theme and menu once the nav collapses */
  .nav__act > .btn--cta { display: none; }
  .nav__in { gap: var(--s2); height: 64px; }
  .nav__act { gap: 8px; }
}

@media (max-width: 760px) {
  /* Secondary photo tucked under the hero device is redundant on a phone */
  .shot--tuck { display: none; }
  /* The nudge arrow above the switcher costs height and says little on mobile */
  .switch__hint svg { display: none; }
  /* Trim the device chip rows so the hero card stays a sensible height */
  .machine__foot .chip:nth-child(n+6) { display: none; }
  .sec-head { margin-bottom: var(--s4); }
  .band { padding-block: clamp(48px, 8vw, 72px); }
  .cta-band .btn { width: 100%; margin: 6px 0 0; }
}

@media (max-width: 480px) {
  .hero__intro .pill { font-size: .76rem; padding: 8px 14px 8px 10px; }
  .pods { gap: 10px; }
  .pod { padding: 14px 16px; }
  .crumb { font-size: .76rem; }
}

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--bg); padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 700; }
.skip:focus { left: 0; }
