/* ==========================================================================
   ORKIA SOLUTIONS - light futuristic design system
   Vibe        : Soft Structuralism (off-white, massive grotesk, diffused depth)
   Layout      : Z-axis cascade, dense bento, editorial split
   Accent      : brand blue, locked, sampled from the logo
   Shape rule  : shell 32px / core 26px / media 22px / buttons and chips full pill
   Motion      : transform + opacity only, GSAP ScrollTrigger, reduced-motion safe
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Canvas */
  --canvas:    #fafbfd;
  --canvas-2:  #f2f5fa;
  --canvas-3:  #e9eff7;
  --surface:   #ffffff;

  /* Ink, built from the logo charcoal #292f35 */
  --ink:       #080b11;
  --ink-2:     #1b212c;
  --muted:     #5b6575;
  --muted-2:   #8e99a8;

  /* Hairlines - never a flat grey border */
  --hair:      rgba(10, 16, 30, .07);
  --hair-2:    rgba(10, 16, 30, .12);

  /* Brand, sampled from logo (2).png */
  --brand:     #0080f8;
  --brand-lt:  #00a8f8;
  --brand-dp:  #0038d0;
  --brand-ink: #0a49a0;
  --tint:      #e9f3fe;
  --tint-2:    #d3e6fd;
  --grad:      linear-gradient(115deg, #00a8f8 0%, #0080f8 44%, #0038d0 100%);

  /* Diffused ambient depth - no harsh black drop shadows */
  --sh-1: 0 1px 1px rgba(10, 20, 45, .02), 0 6px 16px -6px rgba(10, 20, 45, .07);
  --sh-2: 0 1px 2px rgba(10, 20, 45, .03), 0 14px 34px -10px rgba(10, 20, 45, .11),
          0 36px 72px -30px rgba(12, 30, 70, .14);
  --sh-3: 0 2px 4px rgba(10, 20, 45, .03), 0 26px 60px -16px rgba(10, 20, 45, .16),
          0 60px 120px -40px rgba(12, 30, 70, .2);
  --sh-glow: 0 10px 34px -10px rgba(0, 108, 240, .5);
  --inset-hi: inset 0 1px 0 rgba(255, 255, 255, .9);

  /* Shape - concentric, squircle */
  --r-shell: 32px;
  --r-core:  26px;
  --r-media: 22px;
  --r-sm:    16px;
  --r-pill:  999px;

  /* Rhythm - the page must breathe */
  --wrap:   1280px;
  --gutter: 28px;
  --sec-y:  clamp(84px, 8.5vw, 148px);
  --nav-h:  68px;

  /* Type */
  --f-display: "Clash Display", ui-sans-serif, system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Motion - never linear, never ease-in-out */
  --e-out:  cubic-bezier(.16, 1, .3, 1);
  --e-soft: cubic-bezier(.32, .72, 0, 1);

  /* Layer scale - documented, never freelanced */
  --z-base: 1;
  --z-raise: 10;
  --z-sticky: 40;
  --z-nav: 60;
  --z-menu: 70;
  --z-grain: 80;
}

/* ---------- Reset ---------- */
*, *::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;
  overflow-x: hidden;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  letter-spacing: -.005em;
  color: var(--ink-2);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--tint-2); color: var(--brand-dp); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }

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

.skip-link {
  position: fixed; left: 20px; top: -100px;
  background: var(--ink); color: #fff;
  padding: 13px 20px; border-radius: var(--r-pill);
  z-index: var(--z-grain); transition: top .25s var(--e-out);
}
.skip-link:focus { top: 20px; }

/* ==========================================================================
   AMBIENT LAYERS
   ========================================================================== */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain);
  pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.aurora { position: absolute; inset: -10% -10% auto -10%; height: 150%; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.aurora span:nth-child(1) { width: 44vw; height: 44vw; left: -6%;  top: -12%; background: radial-gradient(circle, rgba(0,168,248,.55), transparent 68%); }
.aurora span:nth-child(2) { width: 40vw; height: 40vw; right: -4%; top: 2%;   background: radial-gradient(circle, rgba(0,56,208,.42), transparent 68%); }
.aurora span:nth-child(3) { width: 34vw; height: 34vw; left: 38%;  top: 28%;  background: radial-gradient(circle, rgba(0,128,248,.38), transparent 68%); }

@media (prefers-reduced-motion: no-preference) {
  .aurora span:nth-child(1) { animation: drift-a 26s ease-in-out infinite alternate; }
  .aurora span:nth-child(2) { animation: drift-b 32s ease-in-out infinite alternate; }
  .aurora span:nth-child(3) { animation: drift-c 38s ease-in-out infinite alternate; }
}
@keyframes drift-a { to { transform: translate3d(6vw, 7vh, 0) scale(1.18); } }
@keyframes drift-b { to { transform: translate3d(-7vw, 5vh, 0) scale(1.12); } }
@keyframes drift-c { to { transform: translate3d(4vw, -8vh, 0) scale(.88); } }

.gridlines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(10,16,30,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,16,30,.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 78%);
}

.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: var(--z-nav); pointer-events: none;
  transform-origin: left center; transform: scaleX(0);
  background: var(--grad);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--sec-y); }
.section--tint { background: var(--canvas-2); }
.section--ink { background: var(--ink); color: #aeb9c9; }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

/* ==========================================================================
   TYPE
   ========================================================================== */
.display {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 1.5rem + 4.2vw, 5rem);
  line-height: .96; letter-spacing: -.04em; font-weight: 600;
}
.display--sm { font-size: clamp(2.4rem, 1.3rem + 4vw, 4.2rem); line-height: .98; letter-spacing: -.038em; }
.h2 { font-size: clamp(2.05rem, 1.15rem + 3.3vw, 3.9rem); line-height: 1.02; letter-spacing: -.036em; font-weight: 600; }
.h3 { font-size: clamp(1.3rem, 1.05rem + .85vw, 1.75rem); line-height: 1.18; letter-spacing: -.026em; }
.h4 { font-size: 1.08rem; line-height: 1.32; letter-spacing: -.018em; font-weight: 600; }

.lede { font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem); color: var(--muted); line-height: 1.55; max-width: 58ch; }
.body { color: var(--muted); max-width: 64ch; }
.small { font-size: .94rem; color: var(--muted); }
.tiny { font-size: .8rem; color: var(--muted-2); }
.accent { color: var(--brand-ink); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.72); border: 1px solid var(--hair);
  box-shadow: var(--sh-1), var(--inset-hi);
  backdrop-filter: blur(10px);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-ink); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 3px rgba(0,128,248,.16); }

.reveal-words .line { display: block; overflow: hidden; padding-bottom: .06em; }
.reveal-words .word { display: inline-block; will-change: transform; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem; letter-spacing: -.012em;
  padding: 11px 13px 11px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .5s var(--e-soft), box-shadow .5s var(--e-soft),
              background-color .4s var(--e-soft), border-color .4s var(--e-soft), color .4s var(--e-soft);
}
.btn__ico {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  display: grid; place-items: center; font-size: .95rem;
  transition: transform .5s var(--e-soft), background-color .4s var(--e-soft);
}
.btn:hover .btn__ico { transform: translate3d(3px, -1px, 0) scale(1.06); }
.btn:active { transform: scale(.975); }
.btn--plain { padding: 13px 24px; }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.btn--primary .btn__ico { background: rgba(255,255,255,.14); }
.btn--primary:hover { background: #000; box-shadow: var(--sh-3); transform: translateY(-2px); }
.btn--primary:hover .btn__ico { background: rgba(255,255,255,.22); }

.btn--brand { background: var(--grad); background-origin: border-box; color: #fff; box-shadow: var(--sh-glow); }
.btn--brand .btn__ico { background: rgba(255,255,255,.2); }
.btn--brand:hover { box-shadow: 0 14px 44px -10px rgba(0,108,240,.62); transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,.78); color: var(--ink); border-color: var(--hair); box-shadow: var(--sh-1), var(--inset-hi); backdrop-filter: blur(10px); }
.btn--ghost .btn__ico { background: rgba(10,16,30,.06); }
.btn--ghost:hover { border-color: var(--tint-2); color: var(--brand-ink); transform: translateY(-2px); box-shadow: var(--sh-2); }

.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(10px); }
.btn--light .btn__ico { background: rgba(255,255,255,.16); }
.btn--light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.42); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--ink); }
.btn--white .btn__ico { background: rgba(10,16,30,.07); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }

.btn--sm { font-size: .875rem; padding: 8px 10px 8px 18px; }
.btn--sm .btn__ico { width: 26px; height: 26px; font-size: .82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.tlink { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .93rem; color: var(--brand-ink); }
.tlink i { transition: transform .5s var(--e-soft); }
.tlink:hover i { transform: translateX(5px); }

/* ==========================================================================
   CHIPS + ICON BADGE
   ========================================================================== */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: var(--r-pill); background: var(--tint); color: var(--brand-ink); font-size: .8rem; font-weight: 700; }
.chip--plain { background: rgba(10,16,30,.05); color: var(--ink-2); }
.chip--outline { background: rgba(255,255,255,.6); border: 1px solid var(--hair); color: var(--muted); font-weight: 600; backdrop-filter: blur(8px); }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }

.ibadge {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px;
  background: rgba(255,255,255,.8); border: 1px solid var(--hair);
  box-shadow: var(--sh-1), var(--inset-hi);
  color: var(--brand-dp); font-size: 1.45rem; flex-shrink: 0;
}
.ibadge--grad { background: var(--grad); background-origin: border-box; border-color: transparent; color: #fff; box-shadow: var(--sh-glow); }
.ibadge--plain { background: rgba(10,16,30,.05); color: var(--ink-2); }
.ibadge--lg { width: 62px; height: 62px; font-size: 1.7rem; border-radius: 20px; }

/* ==========================================================================
   DOUBLE-BEZEL PANEL
   ========================================================================== */
.panel {
  position: relative; isolation: isolate;
  background: rgba(255,255,255,.55); border: 1px solid var(--hair);
  border-radius: var(--r-shell); padding: 6px; box-shadow: var(--sh-1);
  transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft), border-color .5s var(--e-soft);
}
.panel__core { background: var(--surface); border-radius: var(--r-core); padding: 30px; height: 100%; box-shadow: var(--inset-hi); }
.panel--hover:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: var(--tint-2); }
.panel--tint .panel__core { background: var(--canvas-2); }
.panel--brand { background: rgba(0,128,248,.07); border-color: var(--tint-2); }
.panel--brand .panel__core { background: linear-gradient(150deg, #f4f9ff, #e9f2fe); }
.panel--ink { background: rgba(8,11,17,.9); border-color: rgba(255,255,255,.08); }
.panel--ink .panel__core { background: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.panel--ink h3, .panel--ink h4 { color: #fff; }
.panel--ink p { color: #97a3b5; }
.panel h3 { margin-block: 18px 10px; }
.panel p { color: var(--muted); font-size: .97rem; }

.panel::after, .tiltcard::after, .svc::after, .post::after, .bento__cell::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .5s var(--e-soft);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(0,128,248,.13), transparent 62%);
}
.panel:hover::after, .tiltcard:hover::after, .svc:hover::after, .post:hover::after, .bento__cell:hover::after { opacity: 1; }

/* ==========================================================================
   3D TILT
   ========================================================================== */
.tilt-scene { perspective: 1100px; }
.tiltcard { position: relative; isolation: isolate; transform-style: preserve-3d; transition: transform .7s var(--e-soft), box-shadow .7s var(--e-soft); will-change: transform; }

/* ==========================================================================
   NAVIGATION - floating glass pill
   ========================================================================== */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; justify-content: center; pointer-events: none;
  padding-inline: var(--gutter);
  transition: top .5s var(--e-soft);
}
.nav__inner {
  position: relative;
  pointer-events: auto;
  display: flex; align-items: center; gap: 8px;
  height: var(--nav-h); padding: 0 12px 0 26px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.42); border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 1px 1px rgba(10,20,45,.03), 0 12px 34px -10px rgba(10,20,45,.16), var(--inset-hi);
  backdrop-filter: blur(26px) saturate(190%);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  width: 100%; max-width: calc(var(--wrap) - var(--gutter) * 2);
  transition: box-shadow .5s var(--e-soft), background-color .5s var(--e-soft);
}
.nav.is-stuck .nav__inner { background: rgba(255,255,255,.62); box-shadow: 0 1px 1px rgba(10,20,45,.04), 0 18px 44px -12px rgba(10,20,45,.2), var(--inset-hi); }

/* the glass leans on the blur to stay readable - without it, fall back to near-opaque */
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  .nav__inner { background: rgba(255,255,255,.9); }
  .nav.is-stuck .nav__inner { background: rgba(255,255,255,.96); }
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 14px; }
.nav__logo img { height: 42px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
.nav__link { position: relative; padding: 9px 15px; border-radius: var(--r-pill); font-size: .91rem; font-weight: 600; color: var(--ink-2); transition: color .35s var(--e-soft), background-color .35s var(--e-soft); }
.nav__link:hover { color: var(--brand-ink); background: rgba(0,128,248,.08); }
.nav__link[aria-current="page"] { color: var(--brand-ink); background: rgba(0,128,248,.1); }
.nav__cta { margin-left: 8px; }

.nav__burger { display: none; margin-left: auto; position: relative; width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--hair); background: rgba(255,255,255,.7); cursor: pointer; }
.nav__burger span { position: absolute; left: 50%; top: 50%; width: 17px; height: 1.8px; border-radius: 2px; background: var(--ink); transition: transform .55s var(--e-soft), opacity .3s var(--e-soft); }
.nav__burger span:nth-child(1) { transform: translate(-50%, -5px); }
.nav__burger span:nth-child(2) { transform: translate(-50%, 0); }
.nav__burger span:nth-child(3) { transform: translate(-50%, 5px); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scaleX(.3); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(250,251,253,.84);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px var(--gutter) 48px; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--e-soft), visibility .5s var(--e-soft);
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__list { display: flex; flex-direction: column; gap: 2px; max-width: 620px; }
.drawer__list a {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.85rem, 1.1rem + 3.2vw, 3rem);
  line-height: 1.16; letter-spacing: -.035em; color: var(--ink);
  opacity: 0; transform: translateY(38px);
  transition: opacity .6s var(--e-soft), transform .6s var(--e-soft), color .3s var(--e-soft);
}
.drawer.is-open .drawer__list a { opacity: 1; transform: none; }
.drawer__list a:hover { color: var(--brand-ink); }
.drawer.is-open .drawer__list a:nth-child(1) { transition-delay: .08s; }
.drawer.is-open .drawer__list a:nth-child(2) { transition-delay: .13s; }
.drawer.is-open .drawer__list a:nth-child(3) { transition-delay: .18s; }
.drawer.is-open .drawer__list a:nth-child(4) { transition-delay: .23s; }
.drawer.is-open .drawer__list a:nth-child(5) { transition-delay: .28s; }
.drawer.is-open .drawer__list a:nth-child(6) { transition-delay: .33s; }
.drawer.is-open .drawer__list a:nth-child(7) { transition-delay: .38s; }
.drawer.is-open .drawer__list a:nth-child(8) { transition-delay: .43s; }
.drawer__foot { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; opacity: 0; transform: translateY(24px); transition: opacity .6s var(--e-soft) .48s, transform .6s var(--e-soft) .48s; }
.drawer.is-open .drawer__foot { opacity: 1; transform: none; }
body.is-locked { overflow: hidden; }
/* The drawer covers the whole screen, so the nav pill has to sit above it or
   the burger - which is the close button - cannot be tapped. */
body.is-locked .nav { z-index: calc(var(--z-menu) + 1); }

/* ==========================================================================
   HERO - Stripe-style stage
   All copy in the left column; the right half belongs to one twisted ribbon
   of light that bleeds off the top, right and bottom.
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding-top: clamp(112px, 12vh, 150px);
  padding-bottom: clamp(28px, 3.4vw, 52px);
  background: var(--canvas);
}
.hero__inner { position: relative; z-index: var(--z-base); }

/* ---------- The ribbon ----------
   Two canvases fill this box: a hard-blurred one for the glow that spills past
   the ribbon's edges, and a sharp one carrying the woven strands. Until the
   canvases paint, the box shows a static stand-in so the half is never blank. */
.hero__ribbon {
  position: absolute; z-index: 0; pointer-events: none;
  top: -26%; right: -6%; bottom: -16%; left: 37%;
  background:
    radial-gradient(42% 30% at 40% 12%, rgba(96, 158, 251, .42), transparent 72%),
    radial-gradient(40% 30% at 62% 42%, rgba(24, 86, 230, .38), transparent 72%),
    radial-gradient(34% 26% at 80% 70%, rgba(120, 90, 198, .30), transparent 74%),
    radial-gradient(24% 18% at 92% 88%, rgba(232, 168, 150, .24), transparent 76%);
  filter: blur(14px);
  -webkit-mask-image: linear-gradient(96deg, transparent 0%, rgba(0, 0, 0, .45) 4%, #000 17%);
  mask-image: linear-gradient(96deg, transparent 0%, rgba(0, 0, 0, .45) 4%, #000 17%);
  will-change: transform;
  transition: transform 1.2s var(--e-soft);
}
.hero__ribbon.is-live { background: none; filter: none; }

.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.1s var(--e-out);
}
.hero__ribbon.is-live .hero__canvas--glow { opacity: .58; }
.hero__ribbon.is-live .hero__canvas--silk { opacity: .88; }
.hero__canvas--glow { filter: blur(54px) saturate(108%); }
.hero__canvas--silk { filter: blur(.4px); }

/* ---------- Copy column ---------- */
.hero__grid { position: relative; min-height: clamp(430px, 56vh, 580px); }
.hero__copy { position: relative; z-index: var(--z-raise); max-width: min(58ch, 54%); }

/* The hero eyebrow is set bare: the pill treatment used elsewhere competes with
   the headline at this size. */
.eyebrow--bare {
  padding: 0; background: none; border: 0; box-shadow: none; backdrop-filter: none;
  font-size: .78rem; letter-spacing: .19em; color: var(--brand-ink);
  margin-bottom: 26px;
}
.eyebrow--bare::before { display: none; }

.hero__title {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 1.25rem + 4.5vw, 5rem);
  line-height: .95; letter-spacing: -.045em;
}
.hero__title .line--accent { color: var(--brand); }
.hero__lede { margin-bottom: 32px; max-width: 52ch; }
.hero__actions { margin-bottom: clamp(34px, 4vw, 54px); }

/* ---------- Three-step row, under the buttons ----------
   Automate, engage, grow. The open step advances on its own, so the row keeps a
   slow pulse beside the drifting ribbon. */
.hsteps {
  position: relative; list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 26px);
}
.hstep { position: relative; padding-top: 26px; transition: opacity .6s var(--e-soft); }
.hstep:not(.is-active) { opacity: .74; }
.hstep::before {
  content: ""; position: absolute; left: 16px; right: calc(-1 * clamp(14px, 1.8vw, 26px));
  top: 5px; height: 1px;
  background: linear-gradient(to right, rgba(0, 128, 248, .30), rgba(0, 128, 248, .06));
}
.hstep:last-child::before { background: linear-gradient(to right, rgba(0, 128, 248, .30), rgba(0, 128, 248, 0)); }
.hstep__dot {
  position: absolute; left: 0; top: 0; width: 11px; height: 11px; border-radius: 50%;
  background: var(--brand);
  transition: box-shadow .6s var(--e-soft), transform .6s var(--e-soft);
}
.hstep.is-active .hstep__dot {
  transform: scale(1.16);
  box-shadow: 0 0 0 5px rgba(0, 128, 248, .16), 0 0 18px rgba(0, 128, 248, .5);
}
.hstep__title {
  display: block; font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.06rem, .95rem + .38vw, 1.32rem);
  color: var(--ink); letter-spacing: -.028em; line-height: 1.2;
}
.hstep__sub { display: block; margin-top: 2px; color: var(--muted); font-size: .93rem; }

/* ---------- Floating card, bottom right over the ribbon ---------- */
.hero__card {
  position: absolute; right: 0; bottom: 0; z-index: var(--z-raise);
  display: flex; align-items: center; gap: 14px; width: min(380px, 34vw);
  padding: 13px 14px 13px 15px; border-radius: var(--r-core);
  background: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .94);
  box-shadow: var(--sh-2), var(--inset-hi); backdrop-filter: blur(16px);
  transition: transform .55s var(--e-soft), box-shadow .55s var(--e-soft);
}
.hero__card:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
.hero__card__ico {
  width: 44px; height: 44px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--tint); color: var(--brand); font-size: 1.35rem;
}
.hero__card__txt { flex: 1; font-size: .95rem; line-height: 1.38; color: var(--muted); }
.hero__card__txt strong { color: var(--ink); font-weight: 700; }
.hero__card__go {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: var(--brand);
  border: 1px solid var(--hair-2);
  transition: background-color .4s var(--e-soft), transform .5s var(--e-soft);
}
.hero__card:hover .hero__card__go { background: var(--tint); transform: translateX(3px); }

/* ---------- Facts ---------- */
.hero__stats {
  position: relative; z-index: var(--z-raise);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 30px);
  margin-top: clamp(42px, 5vw, 74px);
}
.hstat { padding-left: clamp(16px, 1.8vw, 26px); border-left: 1px solid var(--hair-2); }
.hstat:first-child { padding-left: 0; border-left: 0; }
.hstat__n {
  font-family: var(--f-display); font-weight: 600; line-height: 1;
  font-size: clamp(1.55rem, 1.15rem + 1.3vw, 2.3rem);
  color: var(--ink); letter-spacing: -.035em;
}
.hstat__l { margin-top: 7px; max-width: 23ch; font-size: .855rem; line-height: 1.45; color: var(--muted); }

/* ---------- Footprint strip ---------- */
.hero__trust {
  position: relative; z-index: var(--z-raise);
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  margin-top: clamp(32px, 4vw, 54px);
  padding-top: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid var(--hair);
}
.hero__trust__lbl {
  flex: none; line-height: 1.6;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2);
}
.hero__trust__list {
  flex: 1; list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(14px, 2.4vw, 40px);
}
.hero__trust__list li {
  display: inline-flex; align-items: center; gap: 7px; opacity: .72;
  font-family: var(--f-display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(.95rem, .88rem + .3vw, 1.16rem); color: var(--ink-2);
  transition: opacity .4s var(--e-soft), color .4s var(--e-soft);
}
.hero__trust__list li:hover { opacity: 1; color: var(--brand-ink); }
.hero__trust__list li i { font-size: 1rem; color: var(--brand); opacity: .7; }
.hero__trust__tag {
  position: relative; flex: none; padding-left: 44px;
  font-size: .855rem; line-height: 1.5; color: var(--muted);
}
.hero__trust__tag::before {
  content: ""; position: absolute; left: 0; top: .7em;
  width: 30px; height: 2px; border-radius: 2px; background: var(--grad);
}

/* ==========================================================================
   CAPABILITY BAND - sits directly under the hero
   Every offering as a live link, so this doubles as the primary route in.
   ========================================================================== */
/* ==========================================================================
   THE RANGE - everything Orkia builds, as an editorial index
   Three bands, each one an editorial split: the group is stated on the left and
   its items run as hairline rows on the right. Deliberately not a card grid and
   not a menu panel - it is meant to be read down, like a contents page.
   ========================================================================== */
.range-sec { position: relative; padding-block: clamp(46px, 6vw, 86px) clamp(28px, 3.6vw, 52px); }

.range { border-top: 1px solid var(--hair-2); }

.range__row {
  display: grid; grid-template-columns: minmax(230px, .82fr) minmax(0, 2.3fr);
  gap: clamp(22px, 3.4vw, 62px);
  padding-block: clamp(28px, 3.4vw, 46px);
  border-bottom: 1px solid var(--hair);
}
.range__row:last-child { border-bottom: 0; }

.range__head { position: sticky; top: calc(var(--nav-h) + 46px); align-self: start; }
.range__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-ink);
}
.range__tag::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad);
}
.range__head h3 { margin-block: 14px 10px; }
.range__head p { font-size: .93rem; line-height: 1.55; color: var(--muted); max-width: 30ch; }
.range__count {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.66); border: 1px solid var(--hair);
  font-size: .78rem; font-weight: 700; color: var(--muted);
  backdrop-filter: blur(8px);
}
.range__count::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}

.range__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(18px, 2.4vw, 40px); }

.range__item {
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: 22px 1fr 18px; align-items: baseline;
  gap: 14px; padding: 16px 14px 16px 12px;
  border-top: 1px solid var(--hair);
  transition: transform .4s var(--e-soft);
}
/* Two per row, so the first two rows of the grid open without a rule above */
.range__items > .range__item:nth-child(-n+2) { border-top: 0; }
.range__item::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: var(--r-sm);
  background: linear-gradient(90deg, rgba(0,128,248,.09), rgba(0,128,248,0) 78%);
  opacity: 0; transform: scaleX(.96); transform-origin: left center;
  transition: opacity .4s var(--e-soft), transform .5s var(--e-soft);
}
.range__item:hover { transform: translateX(4px); }
.range__item:hover::before { opacity: 1; transform: none; }

.range__ico { font-size: 1.22rem; color: var(--brand); line-height: 1; transform: translateY(2px); transition: color .35s var(--e-soft); }
.range__ico--wa { color: #25a55a; }

.range__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.range__body strong {
  font-family: var(--f-display); font-weight: 600; font-size: 1.06rem;
  letter-spacing: -.022em; color: var(--ink); line-height: 1.28;
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  transition: color .35s var(--e-soft);
}
.range__body span { font-size: .86rem; line-height: 1.5; color: var(--muted); }
.range__item:hover .range__body strong { color: var(--brand-ink); }

.range__go {
  font-size: .95rem; color: var(--muted-2);
  opacity: 0; transform: translate(-5px, 3px);
  transition: opacity .4s var(--e-soft), transform .45s var(--e-soft), color .35s var(--e-soft);
}
.range__item:hover .range__go { opacity: 1; transform: translateY(1px); color: var(--brand); }

/* Closing strip, not a button parked in a sidebar */
.range__foot {
  margin-top: clamp(26px, 3vw, 40px);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px 34px;
  padding: clamp(22px, 2.6vw, 32px) clamp(24px, 3vw, 40px);
  border-radius: var(--r-shell);
  background: linear-gradient(120deg, #f3f9ff 0%, #e7f1fe 52%, #dfeafe 100%);
  box-shadow: var(--sh-1), var(--inset-hi);
}
.range__foot h3 { margin-bottom: 6px; }
.range__foot p { font-size: .95rem; color: var(--muted); max-width: 62ch; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  position: relative; overflow: hidden; padding-block: 26px;
  border-block: 1px solid var(--hair); background: rgba(255,255,255,.5);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 16px; padding-inline: 28px;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.05rem, .9rem + .6vw, 1.5rem);
  letter-spacing: -.028em; color: var(--ink); white-space: nowrap;
}
.marquee__item i { color: var(--brand); font-size: .62em; }

/* ==========================================================================
   PINNED HORIZONTAL SHOWCASE
   ========================================================================== */
.pinwrap { position: relative; overflow: hidden; background: var(--canvas-2); }
.pinwrap__viewport { min-height: 100vh; display: flex; align-items: center; }
.pintrack { display: flex; gap: 34px; padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2)); will-change: transform; }
.pincard {
  position: relative; flex: 0 0 auto; width: min(78vw, 450px);
  border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.62); border: 1px solid var(--hair);
  box-shadow: var(--sh-2); transition: box-shadow .6s var(--e-soft);
}
.pincard:hover { box-shadow: var(--sh-3); }
.pincard__core { background: var(--surface); border-radius: var(--r-core); overflow: hidden; box-shadow: var(--inset-hi); display: flex; flex-direction: column; height: 100%; }
.pincard__media { aspect-ratio: 16/10; overflow: hidden; background: var(--canvas-3); }
.pincard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e-soft); }
.pincard:hover .pincard__media img { transform: scale(1.06); }
.pincard__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pincard__body p { color: var(--muted); font-size: .96rem; }
.pincard__body .tlink { margin-top: auto; padding-top: 14px; }
.pincard__n { position: absolute; top: 22px; right: 24px; z-index: var(--z-raise); font-family: var(--f-display); font-size: .8rem; font-weight: 600; color: #fff; background: rgba(8,11,17,.5); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: var(--r-pill); }
.pinhead { padding-bottom: clamp(30px, 4vw, 54px); }

/* ==========================================================================
   STICKY CARD STACK
   ========================================================================== */
.stack { position: relative; }
.stack__card {
  position: sticky; top: 104px;
  border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.68); border: 1px solid var(--hair);
  box-shadow: var(--sh-2); margin-bottom: 26px;
  backdrop-filter: blur(14px); will-change: transform;
}
.stack__core { background: var(--surface); border-radius: var(--r-core); padding: clamp(28px, 4vw, 52px); box-shadow: var(--inset-hi); display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; }
.stack__n { font-family: var(--f-display); font-size: clamp(2.6rem, 2rem + 2.4vw, 4.4rem); line-height: .85; letter-spacing: -.05em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stack__card h3 { margin-bottom: 12px; }
.stack__card p { color: var(--muted); max-width: 60ch; }

/* ==========================================================================
   SCRUB TEXT
   ========================================================================== */
.scrubtext { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.5rem, .95rem + 2.1vw, 2.9rem); line-height: 1.25; letter-spacing: -.032em; max-width: 24ch; }
.scrubtext .w { color: rgba(8,11,17,.14); }

/* ==========================================================================
   PINNED TITLE + SCROLLING GALLERY
   ========================================================================== */
.pingal { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 80px); align-items: start; }
.pingal__title { position: sticky; top: 130px; }
.pingal__list { display: grid; gap: 26px; }

/* ==========================================================================
   FACTS / COUNTERS
   ========================================================================== */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fact { position: relative; padding: 30px 26px; border-radius: var(--r-shell); background: rgba(255,255,255,.6); border: 1px solid var(--hair); box-shadow: var(--sh-1), var(--inset-hi); backdrop-filter: blur(10px); transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft); }
.fact:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.fact__n { font-family: var(--f-display); font-size: clamp(2.2rem, 1.6rem + 1.8vw, 3.3rem); line-height: 1; letter-spacing: -.045em; color: var(--ink); font-variant-numeric: tabular-nums; }
.fact__l { font-size: .9rem; color: var(--muted); margin-top: 10px; }

/* ==========================================================================
   GRIDS + BENTO
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; gap: 24px; }
.bento__cell {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.6); border: 1px solid var(--hair);
  box-shadow: var(--sh-1); display: flex;
  transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft), border-color .5s var(--e-soft);
}
.bento__cell:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: var(--tint-2); }
.bento__core { background: var(--surface); border-radius: var(--r-core); overflow: hidden; display: flex; flex-direction: column; width: 100%; box-shadow: var(--inset-hi); }
.bento__cell--wide { grid-column: span 4; }
.bento__cell--half { grid-column: span 3; }
.bento__cell--third { grid-column: span 2; }
.bento__body { padding: 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.bento__body p { color: var(--muted); font-size: .96rem; }
.bento__body .tlink { margin-top: auto; padding-top: 14px; }
.bento__media { aspect-ratio: 16/9; overflow: hidden; background: var(--canvas-3); }
.bento__cell--wide .bento__media { aspect-ratio: 2.4/1; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e-soft); }
.bento__cell:hover .bento__media img { transform: scale(1.06); }
.bento__cell--grad .bento__core { background: linear-gradient(150deg, #f4f9ff, #e6f1fe); }
.bento__cell--ink { background: rgba(8,11,17,.92); border-color: rgba(255,255,255,.08); }
.bento__cell--ink .bento__core { background: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.bento__cell--ink h3 { color: #fff; }
.bento__cell--ink p { color: #97a3b5; }
.bento__cell--ink .tlink { color: #6fbcff; }
.bento__cell--ink .chip--outline { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); color: #b8c4d4; }

/* ==========================================================================
   HORIZONTAL ACCORDION
   ========================================================================== */
.haccord { display: flex; gap: 12px; height: 460px; }
.haccord__panel { position: relative; flex: 1 1 0; min-width: 0; border-radius: var(--r-shell); overflow: hidden; cursor: pointer; border: 1px solid var(--hair); box-shadow: var(--sh-1); transition: flex-grow .8s var(--e-soft), box-shadow .6s var(--e-soft); }
.haccord__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .8s var(--e-soft), transform 1.2s var(--e-soft); }
.haccord__panel::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,11,17,.1) 0%, rgba(8,11,17,.84) 100%); }
.haccord__panel.is-open { flex-grow: 3.4; box-shadow: var(--sh-3); }
.haccord__panel.is-open img { filter: grayscale(0) contrast(1.05); transform: scale(1.04); }
.haccord__inner { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 28px; color: #fff; }
.haccord__inner h3 { color: #fff; }
.haccord__inner p { color: rgba(255,255,255,.8); font-size: .94rem; margin-top: 10px; max-width: 42ch; opacity: 0; transform: translateY(12px); transition: opacity .6s var(--e-soft), transform .6s var(--e-soft); }
.haccord__panel.is-open p { opacity: 1; transform: none; transition-delay: .12s; }
.haccord__num { position: absolute; top: 24px; left: 28px; z-index: 2; font-family: var(--f-display); font-size: .8rem; color: rgba(255,255,255,.62); }

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(18px, 3vw, 40px); align-items: stretch; }
.compare__col { border-radius: var(--r-shell); padding: 7px; border: 1px solid var(--hair); background: rgba(255,255,255,.55); box-shadow: var(--sh-1); }
.compare__core { border-radius: var(--r-core); padding: 32px; height: 100%; background: var(--surface); box-shadow: var(--inset-hi); }
.compare__col--before .compare__core { background: var(--canvas-2); }
.compare__col--after { border-color: var(--tint-2); background: rgba(0,128,248,.07); }
.compare__col--after .compare__core { background: linear-gradient(150deg, #f4f9ff, #e9f2fe); }
.compare__tag { font-size: .74rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); }
.compare__col--after .compare__tag { color: var(--brand-ink); }
.compare__core h3 { margin-block: 12px 20px; }
.compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; color: var(--muted); }
.compare__list i { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.compare__col--before i { color: var(--muted-2); }
.compare__col--after i { color: var(--brand); }
.compare__col--after .compare__list li { color: var(--ink-2); }
.compare__arrow { display: grid; place-items: center; color: var(--brand); font-size: 1.9rem; }

/* ==========================================================================
   FLOW
   ========================================================================== */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.flow::before { content: ""; position: absolute; top: 31px; left: 10%; right: 10%; height: 1.5px; background: linear-gradient(90deg, var(--tint-2), var(--brand), var(--tint-2)); }
.flow__node { position: relative; padding: 0 14px; text-align: center; }
.flow__dot { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); border: 1px solid var(--hair); box-shadow: var(--sh-1), var(--inset-hi); color: var(--brand-dp); font-size: 1.5rem; position: relative; z-index: var(--z-base); transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft), border-color .5s var(--e-soft); }
.flow__node:hover .flow__dot { transform: translateY(-5px) scale(1.05); border-color: var(--brand); box-shadow: var(--sh-glow); }
.flow__node h4 { margin-bottom: 8px; }
.flow__node p { font-size: .9rem; color: var(--muted); }

/* ==========================================================================
   SPLIT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 84px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--r-shell); padding: 7px; background: rgba(255,255,255,.6); border: 1px solid var(--hair); box-shadow: var(--sh-2); }
.split__media img { border-radius: var(--r-core); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__body h2 { margin-bottom: 22px; }

/* ==========================================================================
   SERVICE / POST CARDS
   ========================================================================== */
.svc, .post {
  position: relative; isolation: isolate; display: flex; flex-direction: column;
  border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.6); border: 1px solid var(--hair); box-shadow: var(--sh-1);
  transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft), border-color .5s var(--e-soft);
}
.svc:hover, .post:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: var(--tint-2); }
.svc__core, .post__core { background: var(--surface); border-radius: var(--r-core); overflow: hidden; display: flex; flex-direction: column; flex: 1; box-shadow: var(--inset-hi); }
.svc__media, .post__media { aspect-ratio: 16/10; overflow: hidden; background: var(--canvas-3); }
.svc__media img, .post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e-soft); }
.svc:hover .svc__media img, .post:hover .post__media img { transform: scale(1.06); }
.svc__body, .post__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc__body p, .post__body p { color: var(--muted); font-size: .95rem; }
.svc__body .tlink, .post__body .tiny { margin-top: auto; padding-top: 16px; }

/* ==========================================================================
   FEATURE LIST + USE CASES
   ========================================================================== */
.flist { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.flist li { display: flex; gap: 16px; align-items: flex-start; }
.flist i { color: var(--brand); font-size: 1.35rem; flex-shrink: 0; margin-top: 1px; }
.flist strong { display: block; font-family: var(--f-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: 4px; }
.flist span { color: var(--muted); font-size: .96rem; }

.ucase { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
.ucase__item { background: rgba(255,255,255,.6); border: 1px solid var(--hair); box-shadow: var(--sh-1), var(--inset-hi); border-radius: var(--r-shell); padding: 28px; display: flex; gap: 18px; transition: transform .6s var(--e-soft), box-shadow .6s var(--e-soft); }
.ucase__item:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.ucase__item p { color: var(--muted); font-size: .94rem; margin-top: 7px; }

/* ==========================================================================
   TABS + ACCORDION
   ========================================================================== */
.tabs__list { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.tabs__btn { font-weight: 700; font-size: .92rem; padding: 11px 20px; border-radius: var(--r-pill); background: rgba(255,255,255,.6); border: 1px solid var(--hair); color: var(--muted); cursor: pointer; backdrop-filter: blur(8px); transition: background-color .4s var(--e-soft), color .4s var(--e-soft), border-color .4s var(--e-soft), transform .3s var(--e-soft); }
.tabs__btn:hover { color: var(--ink); }
.tabs__btn:active { transform: scale(.97); }
.tabs__btn[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--sh-2); }
.tabs__panel[hidden] { display: none; }

.acc { border-top: 1px solid var(--hair); }
.acc__item { border-bottom: 1px solid var(--hair); }
.acc__btn { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.022em; color: var(--ink); transition: color .4s var(--e-soft); }
.acc__btn:hover { color: var(--brand-ink); }
.acc__btn i { color: var(--brand); font-size: 1.3rem; transition: transform .55s var(--e-soft); flex-shrink: 0; }
.acc__btn[aria-expanded="true"] i { transform: rotate(45deg); }
.acc__panel { overflow: hidden; height: 0; transition: height .55s var(--e-soft); }
.acc__panel > div { padding-bottom: 28px; color: var(--muted); max-width: 74ch; }

/* ==========================================================================
   OVERLAP TESTIMONIAL CAROUSEL
   ========================================================================== */
.quotes { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.quotes__faces { display: flex; }
.quotes__face { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: #fff; background: var(--grad); border: 4px solid var(--canvas); cursor: pointer; transition: transform .6s var(--e-soft), filter .5s var(--e-soft), opacity .5s var(--e-soft); }
.quotes__face + .quotes__face { margin-left: -20px; }
.quotes__face:not([aria-current="true"]) { filter: grayscale(1) brightness(1.25); opacity: .72; }
.quotes__face[aria-current="true"] { transform: scale(1.16); z-index: var(--z-raise); box-shadow: var(--sh-glow); }
.quotes__body { min-height: 200px; position: relative; }
.quotes__slide { position: absolute; inset: 0; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .6s var(--e-soft), transform .6s var(--e-soft); }
.quotes__slide[aria-hidden="false"] { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quotes__q { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.2rem, 1rem + 1vw, 1.9rem); line-height: 1.34; letter-spacing: -.028em; color: var(--ink); max-width: 52ch; margin-bottom: 22px; }
.quotes__name { font-family: var(--f-display); font-weight: 600; color: var(--ink); }
.quotes__role { font-size: .875rem; color: var(--muted); }
.quotes__nav { display: flex; gap: 10px; margin-top: 30px; }
.quotes__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hair); background: rgba(255,255,255,.7); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-1); transition: transform .4s var(--e-soft), border-color .4s var(--e-soft), color .4s var(--e-soft); }
.quotes__btn:hover { border-color: var(--brand); color: var(--brand-ink); }
.quotes__btn:active { transform: scale(.93); }

/* ==========================================================================
   FILTERS
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter { font-weight: 700; font-size: .89rem; padding: 10px 18px; border-radius: var(--r-pill); background: rgba(255,255,255,.6); border: 1px solid var(--hair); color: var(--muted); cursor: pointer; backdrop-filter: blur(8px); transition: background-color .4s var(--e-soft), color .4s var(--e-soft), border-color .4s var(--e-soft), transform .3s var(--e-soft); }
.filter:hover { color: var(--ink); }
.filter:active { transform: scale(.97); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.is-filtered-out { display: none; }

/* ==========================================================================
   WORKFLOW DIAGRAM
   Stage is a locked 1200 x 740 canvas. Cards, hub and captions are real HTML
   placed by percentage on that canvas; the SVG underneath draws the wires on
   the same coordinates. Type scales with cqw so the whole thing stays in
   proportion at any width. Under 980px it unlocks and stacks.
   ========================================================================== */
.wfd-wrap { position: relative; border-radius: var(--r-shell); padding: 7px; background: rgba(255,255,255,.55); border: 1px solid var(--hair); box-shadow: var(--sh-2); }
.wfd-core { border-radius: var(--r-core); padding: clamp(18px, 2.6vw, 38px); background: linear-gradient(150deg, #f8fbff, #edf4fe); box-shadow: var(--inset-hi); }

.wfd {
  --wfd-green: #12a052; --wfd-green-t: #e4f7ec;
  --wfd-blue:  #0080f8; --wfd-blue-t:  #e3eefe;
  --wfd-amber: #ef9110; --wfd-amber-t: #fdf0d8;
  --wfd-pink:  #e5399b; --wfd-pink-t:  #fce4f1;
  position: relative;
  container-type: inline-size;
  aspect-ratio: 1200 / 740;
}
.wfd [data-hue="green"] { --hue: var(--wfd-green); --hue-t: var(--wfd-green-t); }
.wfd [data-hue="blue"]  { --hue: var(--wfd-blue);  --hue-t: var(--wfd-blue-t); }
.wfd [data-hue="amber"] { --hue: var(--wfd-amber); --hue-t: var(--wfd-amber-t); }
.wfd [data-hue="pink"]  { --hue: var(--wfd-pink);  --hue-t: var(--wfd-pink-t); }

/* ---------- wires ---------- */
.wfd__links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.wfd__line { fill: none; stroke: var(--hue); stroke-width: 2; opacity: .22; }
.wfd__flow { fill: none; stroke: var(--hue); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 5 11; }
.wfd__dot  { fill: var(--hue); }
.wfd__head { fill: var(--hue); }
.wfd__ring { fill: none; stroke: var(--brand-lt); stroke-width: 1.6; opacity: 0; transform-origin: 600px 368px; }

/* ---------- column captions ---------- */
.wfd__cap { position: absolute; top: 2.97%; width: 32%; margin: 0; display: flex; flex-direction: column; gap: .3cqw; }
.wfd__cap--in  { left: 0; }
.wfd__cap--out { right: 0; text-align: right; }
.wfd__cap-k { font-family: var(--f-display); font-weight: 600; font-size: 1.1cqw; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.wfd__cap-s { font-size: 1.26cqw; line-height: 1.3; letter-spacing: -.01em; color: var(--muted-2); }

/* ---------- side cards ---------- */
.wfd__card {
  position: absolute;
  width: 30%;
  height: 14.6%;
  top: calc(14.865% + var(--i) * 18.378%);
  display: flex;
  align-items: center;
  gap: 1.25cqw;
  padding-inline: 1.6cqw;
  border-radius: 1.5cqw;
  background: linear-gradient(100deg, #fff 64%, var(--hue-t) 128%);
  box-shadow: 0 1px 2px rgba(10,20,45,.03), 0 1.2cqw 2.6cqw -1.1cqw rgba(10,20,45,.16);
  transition: transform .45s var(--e-soft), box-shadow .45s var(--e-soft);
}
.wfd__card--in  { left: 0; }
.wfd__card--out { right: 0; }
.wfd__card:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(10,20,45,.03), 0 1.6cqw 3.2cqw -1.1cqw rgba(10,20,45,.22); }

.wfd__ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 4.35cqw; height: 4.35cqw; border-radius: 1.15cqw;
  background: var(--hue-t); color: var(--hue); font-size: 2.2cqw;
}
.wfd__txt { display: flex; flex-direction: column; gap: .15cqw; min-width: 0; }
.wfd__txt strong { font-family: var(--f-display); font-weight: 600; font-size: 1.45cqw; line-height: 1.25; letter-spacing: -.01em; color: var(--ink); }
.wfd__txt em { font-style: normal; font-size: 1.14cqw; line-height: 1.3; letter-spacing: -.005em; color: var(--muted); }
.wfd__chev { margin-left: auto; font-size: 1.35cqw; color: #b9c5d5; transition: color .4s var(--e-soft), transform .4s var(--e-soft); }
.wfd__card:hover .wfd__chev { color: var(--hue); transform: translateX(2px); }

/* ---------- hub ---------- */
.wfd__hub {
  position: absolute;
  left: 38.667%; width: 22.667%;
  top: 29.73%;  height: 40%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .9cqw;
  padding: 1.6cqw;
  text-align: center;
  border-radius: 2.2cqw;
  background: var(--grad);
  box-shadow: 0 1.6cqw 3.4cqw -1cqw rgba(0, 78, 200, .42), var(--inset-hi);
}
.wfd__avatar {
  display: grid; place-items: center;
  width: 5.2cqw; height: 5.2cqw; border-radius: 50%;
  background: #fff; color: var(--brand-dp); font-size: 2.7cqw; position: relative;
  box-shadow: 0 .5cqw 1.4cqw -.4cqw rgba(0, 40, 120, .35);
}
.wfd__spark { position: absolute; color: #fff; line-height: 1; }
.wfd__spark--a { top: -14%; right: -44%; font-size: 1.6cqw; opacity: .95; }
.wfd__spark--b { top: 32%; right: -66%; font-size: 1.05cqw; opacity: .7; }
.wfd__hub-t { font-family: var(--f-display); font-weight: 600; font-size: 2.4cqw; line-height: 1.16; letter-spacing: -.015em; color: #fff; }
.wfd__hub-s { font-size: 1.2cqw; line-height: 1.35; color: rgba(255,255,255,.86); margin-top: -.4cqw; }
.wfd__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .45cqw; margin-top: .3cqw; }
.wfd__chip { font-weight: 600; font-size: .95cqw; line-height: 1; padding: .72cqw .85cqw; border-radius: var(--r-pill); color: #fff; background: rgba(255,255,255,.2); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }

/* ---------- footer note ---------- */
.wfd__note {
  position: absolute; left: 50%; top: 88.65%; transform: translateX(-50%);
  margin: 0; display: flex; align-items: center; gap: .9cqw; white-space: nowrap;
  padding: 1.05cqw 1.9cqw; border-radius: var(--r-pill);
  background: rgba(255,255,255,.72); border: 1px solid var(--hair);
  box-shadow: var(--sh-1); backdrop-filter: blur(8px);
  font-size: 1.26cqw; line-height: 1.2; letter-spacing: -.01em; color: var(--muted);
}
.wfd__note i { color: var(--brand); font-size: 1.6cqw; }
.wfd__note b { font-weight: 600; color: var(--brand-ink); }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .wfd .wfd__card { opacity: 0; }
  .wfd.is-in .wfd__card { animation: wfd-pop .6s var(--e-out) forwards; animation-delay: calc(var(--i) * .07s); }
  .wfd.is-in .wfd__card--out { animation-delay: calc(.28s + var(--i) * .07s); }
  .wfd.is-in .wfd__flow { animation: wfd-flow 1.6s linear infinite; }
  .wfd.is-in .wfd__ring { animation: wfd-pulse 3.6s ease-out infinite; }
}
@keyframes wfd-flow { to { stroke-dashoffset: -32; } }
@keyframes wfd-pulse { 0% { opacity: .26; transform: scale(.9); } 70% { opacity: 0; transform: scale(1.24); } 100% { opacity: 0; transform: scale(1.24); } }
@keyframes wfd-pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* below 1240 the locked canvas is the only thing squeezing the type, so give it
   back the shell padding rather than shrinking the labels further */
@media (max-width: 1240px) { .wfd-core { padding: 22px; } }

/* ---------- stacked, under 1140px ---------- */
@media (max-width: 1140px) {
  .wfd { aspect-ratio: auto; display: flex; flex-direction: column; gap: 12px; }
  .wfd__links { display: none; }
  .wfd__cap { position: static; width: auto; text-align: left; gap: 2px; margin-top: 6px; }
  .wfd__cap--out { margin-top: 22px; }
  .wfd__cap-k { font-size: .78rem; }
  .wfd__cap-s { font-size: .95rem; }
  .wfd__card {
    position: static; width: auto; height: auto;
    gap: 14px; padding: 16px 18px; border-radius: 18px;
    box-shadow: 0 1px 2px rgba(10,20,45,.03), 0 14px 30px -14px rgba(10,20,45,.18);
  }
  .wfd__ico { width: 48px; height: 48px; border-radius: 14px; font-size: 24px; }
  .wfd__txt strong { font-size: 1.02rem; }
  .wfd__txt em { font-size: .88rem; }
  .wfd__chev { font-size: 15px; }
  .wfd__hub {
    position: static; width: auto; height: auto;
    gap: 10px; padding: 30px 18px; margin: 22px 0; border-radius: 26px;
  }
  .wfd__avatar { width: 60px; height: 60px; font-size: 31px; }
  .wfd__spark--a { font-size: 15px; }
  .wfd__spark--b { font-size: 11px; }
  .wfd__hub-t { font-size: 1.6rem; }
  .wfd__hub-s { font-size: .95rem; margin-top: -4px; }
  .wfd__chips { gap: 6px; margin-top: 6px; }
  .wfd__chip { font-size: .75rem; padding: 8px 10px; }
  .wfd__note {
    position: static; transform: none; align-self: center; margin-top: 20px;
    white-space: normal; text-align: center; gap: 10px;
    padding: 12px 20px; font-size: .95rem;
  }
  .wfd__note i { font-size: 19px; }
}

/* ==========================================================================
   PAGE HEADERS
   ========================================================================== */
.crumb { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--muted); margin-bottom: 24px; }
.crumb a:hover { color: var(--brand-ink); }
.crumb i { font-size: .85rem; color: var(--muted-2); }

/* ==========================================================================
   INTERIOR HEROES
   The home page owns the ribbon. Every other page opens with a hero built
   from what that page is actually about, so no two page types share a
   layout: a toolbox of the eleven tools, a full-bleed cover, a five-step
   flow, a 2009 masthead, a team mosaic, a conversation, a magazine front,
   a mirrored partner split, a product stage, an article cover and a plain
   document head. They share tokens, not structure.
   ========================================================================== */
.ih {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(128px, 14vh, 172px) clamp(56px, 6.5vw, 96px);
}
.ih > .wrap { position: relative; z-index: var(--z-base); }
.ih + .section, .ih + .pinwrap { padding-top: clamp(46px, 5vw, 84px); }
.ih .eyebrow { margin-bottom: 20px; }
.ih__title { margin-bottom: 22px; }
.ih .lede { max-width: 56ch; }
.ih .lede + .btn-row, .ih .lede + .chip-row { margin-top: 30px; }
.ih .chip-row + .btn-row { margin-top: 26px; }

/* Shared glass frame for hero photographs: double bezel, no tilt */
.ih-frame {
  position: relative; border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--sh-3); backdrop-filter: blur(10px);
}
.ih-frame img { border-radius: var(--r-core); width: 100%; object-fit: cover; }

/* Glass note that floats over a photograph */
.ih-note {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 18px 12px 12px; border-radius: 22px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--sh-3); backdrop-filter: blur(16px);
  text-align: left;
}
.ih-note .ibadge { width: 40px; height: 40px; border-radius: 13px; font-size: 1.1rem; }
.ih-note strong { display: block; font-size: .92rem; color: var(--ink); letter-spacing: -.012em; line-height: 1.25; }
.ih-note > span > span { display: block; font-size: .78rem; color: var(--muted); line-height: 1.35; }

@media (prefers-reduced-motion: no-preference) {
  .ih [data-rise] { animation: ih-rise 1s var(--e-out) both; animation-delay: calc(var(--d, 0) * 90ms + 120ms); }
}
@keyframes ih-rise { from { opacity: 0; transform: translate3d(0, 22px, 0); } }

/* ---------- 1. Toolbox : software index ----------
   The eleven tools as live tiles, grouped the way the business splits them.
   The hero is the table of contents for the page below it. */
.ih-tools { background: linear-gradient(180deg, var(--canvas) 0%, var(--canvas-2) 100%); }
.ih-tools .gridlines {
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 58% 78% at 74% 48%, #000 18%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 58% 78% at 74% 48%, #000 18%, transparent 74%);
}
.ih-tools__glow {
  position: absolute; z-index: 0; pointer-events: none; right: -8%; top: 8%; width: 58vw; height: 90%;
  background: radial-gradient(circle at 50% 50%, rgba(0,128,248,.2), transparent 64%); filter: blur(40px);
}
.ih-tools__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.ih-tools__copy > h1 { max-width: 12ch; }

.toolbox {
  border-radius: var(--r-shell); padding: 7px;
  background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--sh-3); backdrop-filter: blur(16px);
}
.toolbox__core { border-radius: var(--r-core); background: rgba(255,255,255,.88); padding: clamp(16px, 2vw, 24px); box-shadow: var(--inset-hi); }
.toolbox__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 2px 4px 12px; }
.toolbox__label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.toolbox__count { font-family: var(--f-display); font-size: .92rem; font-weight: 600; color: var(--brand-ink); letter-spacing: -.02em; }
.toolbox__tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.toolbox__tiles--3 { grid-template-columns: repeat(3, 1fr); }

.tool {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  min-height: 102px; padding: 14px 14px 13px; border-radius: 18px;
  background: var(--canvas-2); border: 1px solid transparent;
  transition: transform .5s var(--e-soft), background-color .4s var(--e-soft), border-color .4s var(--e-soft), box-shadow .5s var(--e-soft);
}
.tool i { font-size: 1.35rem; color: var(--brand-dp); transition: transform .5s var(--e-soft); }
.tool span { margin-top: auto; font-weight: 700; font-size: .84rem; line-height: 1.22; letter-spacing: -.01em; color: var(--ink); }
.tool::after {
  content: "\2197"; position: absolute; top: 11px; right: 13px; font-size: .8rem; color: var(--brand);
  opacity: 0; transform: translate(-4px, 4px); transition: opacity .35s var(--e-soft), transform .45s var(--e-soft);
}
.tool:hover { background: #fff; border-color: var(--tint-2); box-shadow: var(--sh-2); transform: translateY(-3px); }
.tool:hover i { transform: scale(1.1); }
.tool:hover::after { opacity: 1; transform: none; }
.tool--run { background: linear-gradient(150deg, #f3f8ff, #e5f0fe); min-height: 92px; }

.toolbox__join { position: relative; display: flex; justify-content: center; margin: 14px 0; }
.toolbox__join::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--tint-2) 20%, var(--brand) 50%, var(--tint-2) 80%, transparent);
}
.toolbox__join span {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--tint-2);
  box-shadow: var(--sh-1); font-size: .76rem; font-weight: 700; color: var(--brand-ink);
}
@media (prefers-reduced-motion: no-preference) {
  .tool { animation: ih-rise .9s var(--e-out) both; animation-delay: calc(var(--i, 0) * 45ms + 260ms); }
}

/* ---------- 2. Cover : digital services ----------
   The only full-bleed photograph among the interior heroes. Copy sits in a
   frosted panel over the quiet left of the frame; the seven services run as
   a numbered index underneath. */
.ih-cover { padding-top: clamp(104px, 11.5vh, 128px); padding-bottom: clamp(40px, 5vw, 76px); }
.ih-cover__frame {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(540px, 76vh, 740px); border-radius: var(--r-shell);
  box-shadow: var(--sh-3); background: var(--canvas-3);
}
.ih-cover__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%; }
.ih-cover__frame::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, rgba(250,251,253,.5) 0%, rgba(250,251,253,.08) 46%, transparent 62%);
}
.ih-cover__panel {
  margin: clamp(14px, 2vw, 26px); max-width: 590px;
  padding: clamp(26px, 3.2vw, 44px); border-radius: var(--r-core);
  background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--sh-2), var(--inset-hi);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
}
.ih-cover__panel h1 { max-width: 12ch; }
.ih-cover__panel .lede { font-size: clamp(1.02rem, .96rem + .3vw, 1.16rem); }
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
  .ih-cover__panel { background: rgba(255,255,255,.94); }
}

.ih-cover__index {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-top: 18px; border-top: 1px solid var(--hair-2);
}
.ih-cover__index a {
  display: flex; flex-direction: column; gap: 4px; padding: 16px 14px 4px 0;
  font-weight: 700; font-size: .9rem; letter-spacing: -.012em; color: var(--ink);
  border-top: 2px solid transparent; margin-top: -1px;
  transition: color .35s var(--e-soft), border-color .45s var(--e-soft);
}
.ih-cover__index a span { font-family: var(--f-display); font-size: .74rem; font-weight: 500; color: var(--muted-2); letter-spacing: .02em; }
.ih-cover__index a:hover { color: var(--brand-ink); border-top-color: var(--brand); }

/* ---------- 3. Flow : automation ----------
   Centred statement, then the five steps the company runs on as a rail with
   a pulse travelling along it. No photograph: the process is the picture. */
.ih-flow { text-align: center; background: radial-gradient(ellipse 70% 60% at 50% -4%, rgba(0,128,248,.13), transparent 70%), var(--canvas); }
.ih-flow__dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(10,16,30,.13) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 62% 58% at 50% 42%, #000 20%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 42%, #000 20%, transparent 74%);
}
.ih-flow .eyebrow { margin-inline: auto; }
.ih-flow h1 { max-width: 12ch; margin-inline: auto; font-size: clamp(2.8rem, 1.3rem + 5.2vw, 5.8rem); line-height: .94; }
.ih-flow .lede { margin-inline: auto; max-width: 58ch; }
.ih-flow .btn-row { justify-content: center; }

.rail {
  position: relative; list-style: none; margin: clamp(52px, 6.5vw, 92px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.rail__track { position: absolute; left: 10%; right: 10%; top: 35px; height: 2px; overflow: hidden; border-radius: 2px; background: var(--tint-2); }
.rail__pulse { position: absolute; inset: 0; transform: translateX(-100%); }
.rail__pulse::after {
  content: ""; position: absolute; right: 0; top: 0; width: 140px; height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand) 70%, var(--brand-lt));
}
.rail__node { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; padding-inline: 6px; }
.rail__dot {
  position: relative; width: 72px; height: 72px; margin-bottom: 12px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.55rem; color: var(--brand-dp);
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--sh-2), var(--inset-hi);
}
.rail__dot::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(0,128,248,.28); opacity: 0;
}
.rail__node > div { display: grid; gap: 4px; justify-items: center; }
.rail__node strong { font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.rail__node > div > span { font-size: .86rem; color: var(--muted); line-height: 1.4; max-width: 20ch; }
@media (prefers-reduced-motion: no-preference) {
  .rail__pulse { animation: rail-run 5s var(--e-soft) infinite; }
  .rail__dot { animation: rail-lit 5s ease-out infinite; animation-delay: calc(var(--i) * 1s - .2s); }
  .rail__dot::before { animation: rail-ring 5s ease-out infinite; animation-delay: calc(var(--i) * 1s - .2s); }
}
@keyframes rail-run { to { transform: translateX(100%); } }
@keyframes rail-lit {
  0%, 26%, 100% { color: var(--brand-dp); transform: none; }
  6%            { color: var(--brand); transform: scale(1.07); }
}
@keyframes rail-ring {
  0%   { opacity: 0; transform: scale(.9); }
  6%   { opacity: 1; }
  30%  { opacity: 0; transform: scale(1.3); }
  100% { opacity: 0; }
}

/* ---------- 4. Since 2009 : company profile ----------
   The founding year as an outlined numeral bleeding off the bottom of the
   stage, a tall photograph of the Bikaner office, and the five cities. */
.ih-since { background: var(--canvas); padding-bottom: clamp(72px, 8vw, 120px); }
.ih-since__year {
  position: absolute; z-index: 0; left: -1.5vw; bottom: -.2em; pointer-events: none; user-select: none;
  font-family: var(--f-display); font-weight: 600; line-height: .8; letter-spacing: -.06em;
  font-size: clamp(9rem, 3rem + 21vw, 25rem);
  color: transparent; -webkit-text-stroke: 1.5px rgba(0,128,248,.2);
}
.ih-since__glow {
  position: absolute; z-index: 0; pointer-events: none; right: -10%; top: -20%; width: 55vw; height: 100%;
  background: radial-gradient(circle, rgba(0,168,248,.22), transparent 64%); filter: blur(50px);
}
.ih-since__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.ih-since__copy > h1 { max-width: 14ch; }
.ih-since__sig { display: flex; align-items: center; gap: 12px; margin-top: 34px; font-size: .86rem; color: var(--muted); }
.ih-since__sig::before { content: ""; width: 34px; height: 1px; background: var(--brand); }
.ih-since__media { position: relative; justify-self: end; width: min(100%, 460px); }
.ih-since__media .ih-frame img { aspect-ratio: 4/5; }
.ih-since__cities {
  position: absolute; left: -54px; bottom: 44px; width: 214px; padding: 18px 18px 16px; border-radius: 24px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.95); box-shadow: var(--sh-3); backdrop-filter: blur(16px);
}
.ih-since__cities h2 { font-family: var(--f-body); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.ih-since__cities ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ih-since__cities li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.ih-since__cities li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--tint-2); flex-shrink: 0; }
.ih-since__cities li.is-hq::before { background: var(--grad); box-shadow: 0 0 0 4px rgba(0,128,248,.15); }
.ih-since__cities li em { margin-left: auto; font-style: normal; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-ink); }

/* ---------- 5. Mosaic : careers ----------
   Oversized split heading, then the office in three photographs and the four
   teams, set as a gapless editorial mosaic. */
.ih-mosaic { background: linear-gradient(180deg, var(--canvas) 0%, #fff 100%); }
.ih-mosaic .aurora { opacity: .55; }
.ih-mosaic__head { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 72px); align-items: end; }
.ih-mosaic__head h1 { margin: 0; max-width: 11ch; font-size: clamp(2.8rem, 1.2rem + 5.2vw, 5.6rem); line-height: .94; }
.ih-mosaic__head .lede { margin-bottom: 26px; }
.ih-mosaic__grid {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: clamp(170px, 19vw, 262px) clamp(170px, 19vw, 262px); gap: 12px;
}
.ih-mosaic__tile { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-core); background: var(--canvas-3); border: 1px solid var(--hair); box-shadow: var(--sh-1); }
.ih-mosaic__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--e-soft); }
.ih-mosaic__tile:hover img { transform: scale(1.04); }
.ih-mosaic__tile--tall { grid-column: 1 / span 4; grid-row: 1 / span 2; }
.ih-mosaic__tile--wide { grid-column: 5 / span 8; grid-row: 1; }
.ih-mosaic__tile--mid  { grid-column: 5 / span 5; grid-row: 2; }
.ih-mosaic__teams {
  grid-column: 10 / span 3; grid-row: 2; border-radius: var(--r-core);
  padding: clamp(18px, 2vw, 24px); background: var(--ink); color: #a9b5c6;
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
}
.ih-mosaic__teams strong { font-family: var(--f-display); font-size: clamp(2rem, 1.4rem + 1.6vw, 2.8rem); line-height: 1; color: #fff; letter-spacing: -.04em; }
.ih-mosaic__teams ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: .86rem; }
.ih-mosaic__teams li { display: flex; align-items: center; gap: 9px; }
.ih-mosaic__teams li i { color: var(--brand-lt); font-size: 1rem; }

/* ---------- 6. Conversation : contact ----------
   The enquiry process shown as the thread it becomes. */
.ih-convo { background: linear-gradient(180deg, var(--canvas) 0%, var(--canvas-2) 100%); }
.ih-convo__glow {
  position: absolute; z-index: 0; pointer-events: none; right: -6%; top: 10%; width: 50vw; height: 80%;
  background: radial-gradient(circle, rgba(0,128,248,.2), transparent 62%); filter: blur(46px);
}
.ih-convo__grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.ih-convo__copy > h1 { max-width: 13ch; }
.ih-convo__addr { display: flex; align-items: flex-start; gap: 10px; margin-top: 30px; font-size: .9rem; color: var(--muted); max-width: 44ch; }
.ih-convo__addr i { color: var(--brand); font-size: 1.1rem; margin-top: 2px; }

.chat { margin: 0; justify-self: end; width: min(100%, 470px); border-radius: var(--r-shell); padding: 7px; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.95); box-shadow: var(--sh-3); backdrop-filter: blur(16px); }
.chat__core { border-radius: var(--r-core); background: rgba(255,255,255,.92); box-shadow: var(--inset-hi); overflow: hidden; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--hair); }
.chat__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: 1.2rem; box-shadow: var(--sh-glow); flex-shrink: 0; }
.chat__who strong { display: block; font-size: .95rem; color: var(--ink); letter-spacing: -.012em; }
.chat__who span { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--muted); }
.chat__who span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #22b35e; box-shadow: 0 0 0 3px rgba(34,179,94,.16); }
.chat__cap { margin-left: auto; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); text-align: right; line-height: 1.3; }
.chat__body { display: grid; gap: 10px; padding: 20px; background: linear-gradient(180deg, #fff, var(--canvas-2)); }
.bubble { max-width: 86%; padding: 12px 16px; border-radius: 20px; font-size: .92rem; line-height: 1.46; }
.bubble small { display: block; margin-top: 5px; font-size: .7rem; opacity: .72; }
.bubble--out { justify-self: end; background: var(--grad); color: #fff; border-bottom-right-radius: 6px; box-shadow: var(--sh-glow); }
.bubble--in { justify-self: start; background: #fff; color: var(--ink-2); border: 1px solid var(--hair); border-bottom-left-radius: 6px; box-shadow: var(--sh-1); }
.bubble--typing { display: inline-flex; gap: 5px; padding: 14px 16px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--sh-1); }
.bubble--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }
@media (prefers-reduced-motion: no-preference) {
  .chat .bubble { animation: bubble-in .7s var(--e-out) both; animation-delay: calc(var(--i) * .75s + .5s); }
  .bubble--typing i { animation: typing 1.2s ease-in-out infinite; }
  .bubble--typing i:nth-child(2) { animation-delay: .15s; }
  .bubble--typing i:nth-child(3) { animation-delay: .3s; }
}
@keyframes bubble-in { from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.96); } }
@keyframes typing { 0%, 60%, 100% { transform: none; opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ---------- 7. Magazine : insights ----------
   A masthead rule, a front-page headline and the lead story. */
.ih-mag { background: var(--canvas); }
.ih-mag__mast {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 12px; border-block: 1px solid var(--hair-2);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: clamp(30px, 4vw, 52px);
}
.ih-mag__mast b { color: var(--ink); font-weight: 700; }
.ih-mag__head { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 4vw, 70px); align-items: end; }
.ih-mag__head h1 { margin: 0; max-width: 13ch; font-size: clamp(2.8rem, 1.2rem + 5.2vw, 5.6rem); line-height: .94; }
.ih-mag__head .lede { padding-bottom: .3em; }

.feature {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.35fr 1fr;
  border-radius: var(--r-shell); overflow: hidden; isolation: isolate;
  background: #fff; border: 1px solid var(--hair); box-shadow: var(--sh-2);
  transition: box-shadow .6s var(--e-soft), transform .6s var(--e-soft);
}
.feature:hover { box-shadow: var(--sh-3); transform: translateY(-4px); }
.feature__media { position: relative; overflow: hidden; min-height: 320px; background: var(--canvas-3); }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--e-soft); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__body { display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: clamp(26px, 3.6vw, 52px); }
.feature__kicker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.feature__body h2 { font-size: clamp(1.55rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.08; letter-spacing: -.03em; }
.feature__body p { color: var(--muted); }

/* ---------- 8. Mirror : partner program ----------
   Photograph first, copy second, and the two ways in as cards. */
.ih-mirror { background: linear-gradient(180deg, var(--canvas-2) 0%, var(--canvas) 100%); }
.ih-mirror__glow {
  position: absolute; z-index: 0; pointer-events: none; left: -10%; top: 0; width: 52vw; height: 100%;
  background: radial-gradient(circle, rgba(0,168,248,.24), transparent 64%); filter: blur(50px);
}
.ih-mirror__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 84px); align-items: center; }
.ih-mirror__media { position: relative; width: min(100%, 440px); }
.ih-mirror__media::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: var(--r-shell);
  background: linear-gradient(150deg, var(--tint), var(--tint-2)); transform: translate(22px, 22px);
}
.ih-mirror__media .ih-frame img { aspect-ratio: 4/5; }
.ih-mirror__chain {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.95); box-shadow: var(--sh-3); backdrop-filter: blur(14px);
}
.ih-mirror__chain span { padding: 7px 13px; border-radius: var(--r-pill); font-size: .78rem; font-weight: 700; color: var(--ink-2); background: var(--canvas-2); }
.ih-mirror__chain span.is-you { background: var(--grad); color: #fff; }
.ih-mirror__chain i { color: var(--brand); font-size: .9rem; }
.ih-mirror__copy > h1 { max-width: 14ch; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.path {
  display: flex; flex-direction: column; gap: 8px; padding: 20px; border-radius: 22px;
  background: rgba(255,255,255,.8); border: 1px solid var(--hair); box-shadow: var(--sh-1);
  transition: transform .5s var(--e-soft), box-shadow .5s var(--e-soft), border-color .4s var(--e-soft);
}
.path:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--tint-2); }
.path__top { display: flex; align-items: center; justify-content: space-between; }
.path__top .ibadge { width: 42px; height: 42px; border-radius: 14px; font-size: 1.15rem; }
.path__top > i { color: var(--brand); transition: transform .5s var(--e-soft); }
.path:hover .path__top > i { transform: translate(3px, -3px); }
.path strong { font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; margin-top: 6px; }
.path__txt { font-size: .88rem; color: var(--muted); line-height: 1.45; }

/* ---------- 9. Stage : product pages ----------
   Centred statement over a wide photograph of the product in use, with two
   small cards naming what the software does in that moment. */
.ih-stage { text-align: center; padding-bottom: clamp(52px, 6vw, 92px); background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,128,248,.1), transparent 70%), var(--canvas); }
.ih-stage .gridlines { mask-image: radial-gradient(ellipse 70% 40% at 50% 20%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 40% at 50% 20%, #000 20%, transparent 75%); }
.ih-stage .crumb { justify-content: center; }
.ih-stage .eyebrow { margin-inline: auto; }
.ih-stage h1 { max-width: 17ch; margin-inline: auto; font-size: clamp(2.4rem, 1.2rem + 4vw, 4.6rem); line-height: .97; }
.ih-stage .lede { margin-inline: auto; max-width: 64ch; }
.ih-stage .chip-row, .ih-stage .btn-row { justify-content: center; }

.stage { position: relative; margin-top: clamp(36px, 4vw, 60px); }
.stage__glow {
  position: absolute; z-index: -1; left: 8%; right: 8%; top: 24%; bottom: -12%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,128,248,.34), transparent 70%); filter: blur(50px);
}
.stage .ih-frame img { aspect-ratio: 21/9; }
.wcard { position: absolute; z-index: 2; min-width: 232px; max-width: 290px; }
.wcard--a { left: -26px; top: 30px; }
.wcard--b { right: -26px; bottom: 30px; }
@media (prefers-reduced-motion: no-preference) {
  .wcard--a { animation: ih-rise 1s var(--e-out) .7s both, bob 7s ease-in-out 1.7s infinite; }
  .wcard--b { animation: ih-rise 1s var(--e-out) .95s both, bob 8s ease-in-out 1.95s infinite reverse; }
}
@keyframes bob { 50% { transform: translate3d(0, -7px, 0); } }

/* Contents of the stage cards */
.wbars { display: grid; gap: 7px; min-width: 190px; margin-top: 10px; }
.wbars div { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 10px; font-size: .74rem; color: var(--muted); }
.wbars b { display: block; height: 7px; border-radius: 99px; background: var(--grad); width: var(--w); }
.ih-note--stack { flex-direction: column; align-items: stretch; gap: 0; padding: 14px 16px; }
.ih-note--stack .wtop { display: flex; align-items: center; gap: 10px; }
.ih-note--stack .wtop i { font-size: 1.05rem; color: var(--brand); }
.wchips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.wchips em { font-style: normal; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; background: var(--tint); color: var(--brand-ink); }
.wchips em.is-muted { background: var(--canvas-2); color: var(--muted); }
.wave { display: flex; align-items: center; gap: 3px; height: 26px; margin-top: 10px; }
.wave i { flex: 1; min-width: 3px; height: var(--h); border-radius: 3px; background: var(--grad); transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .wave i { animation: wave 1.3s ease-in-out infinite; animation-delay: calc(var(--i) * -110ms); }
}
@keyframes wave { 50% { transform: scaleY(.35); } }

/* ---------- 10. Article cover ----------
   Headline and standfirst side by side, the cover photograph under them. */
.ih-article { background: var(--canvas); padding-bottom: 0; }
.ih-article__head { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 70px); align-items: end; }
.ih-article__head h1 { margin: 0; max-width: 15ch; font-size: clamp(2.3rem, 1.2rem + 3.6vw, 4.2rem); line-height: .98; }
.ih-article__head .article__meta { margin-bottom: 16px; }
.ih-article__cover { margin: clamp(34px, 4.5vw, 60px) 0 0; }
.ih-article__cover .ih-frame img { aspect-ratio: 21/9; }
.ih-article__cover figcaption { margin-top: 12px; font-size: .84rem; color: var(--muted-2); text-align: right; }

/* ---------- 11. Document : legal pages ---------- */
.ih-doc { background: var(--canvas); padding-bottom: 0; }
.ih-doc__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 2.4vw, 30px); align-items: start; max-width: 70ch; margin-inline: auto; padding-bottom: clamp(26px, 3.5vw, 40px); border-bottom: 1px solid var(--hair-2); }
.ih-doc__inner .ibadge { margin-top: 6px; }
.ih-doc__inner h1 { max-width: 20ch; }
.ih-doc__inner .lede { max-width: 62ch; }
.ih-doc__inner .eyebrow { margin-bottom: 14px; }

/* ---------- Interior heroes, tablet ---------- */
@media (max-width: 1000px) {
  .ih-tools__grid, .ih-since__grid, .ih-convo__grid, .ih-mirror__grid,
  .ih-mosaic__head, .ih-mag__head, .ih-article__head { grid-template-columns: 1fr; }
  .ih-tools__copy > h1, .ih-since__copy > h1, .ih-convo__copy > h1, .ih-mirror__copy > h1 { max-width: none; }
  .ih-since__media { justify-self: start; }
  .ih-since__cities { left: auto; right: -12px; }
  .ih-mirror__media { order: 2; }
  .chat { justify-self: start; }
  .ih-cover__index { grid-template-columns: repeat(4, 1fr); }
  .ih-cover__index a:nth-child(n+5) { border-top: 1px solid var(--hair); }
  .rail { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
  .rail__node > div > span { display: none; }
  .ih-mosaic__grid { grid-template-rows: clamp(150px, 26vw, 220px) clamp(150px, 26vw, 220px); }
  .ih-mosaic__teams { grid-column: 10 / span 3; }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 0; aspect-ratio: 16/9; }
  .wcard--a { left: 14px; top: 14px; }
  .wcard--b { right: 14px; bottom: 14px; }
}

/* ---------- Interior heroes, phone ---------- */
@media (max-width: 680px) {
  .ih { padding-top: clamp(112px, 15vh, 132px); }
  .toolbox__tiles { grid-template-columns: repeat(2, 1fr); }
  .toolbox__tiles--3 { grid-template-columns: repeat(3, 1fr); }
  .tool { min-height: 88px; padding: 12px; }
  .tool--run span { font-size: .78rem; }

  .ih-cover { padding-top: 100px; }
  .ih-cover__frame { min-height: 0; flex-direction: column; align-items: stretch; background: transparent; box-shadow: none; overflow: visible; }
  .ih-cover__img { position: relative; inset: auto; z-index: 0; aspect-ratio: 4/3; border-radius: var(--r-shell); object-position: 78% 50%; box-shadow: var(--sh-2); }
  .ih-cover__frame::after { display: none; }
  .ih-cover__panel { margin: -48px 10px 0; position: relative; z-index: 1; background: rgba(255,255,255,.92); }
  .ih-cover__index { grid-template-columns: repeat(2, 1fr); }
  .ih-cover__index a:nth-child(n+3) { border-top: 1px solid var(--hair); }

  .rail { grid-template-columns: 1fr; gap: 0; text-align: left; max-width: 420px; margin-inline: auto; }
  .rail__track { left: 35px; right: auto; top: 36px; bottom: 36px; width: 2px; height: auto; }
  .rail__pulse { transform: translateY(-100%); }
  .rail__pulse::after { right: auto; left: 0; top: auto; bottom: 0; width: 100%; height: 120px; background: linear-gradient(180deg, transparent, var(--brand) 70%, var(--brand-lt)); }
  .rail__node { flex-direction: row; align-items: center; gap: 16px; padding: 8px 0; }
  .rail__dot { margin: 0; flex-shrink: 0; }
  .rail__node > div > span { display: block; }
  .rail__node > div { gap: 2px; justify-items: start; }

  .ih-since__year { font-size: 38vw; bottom: auto; top: 58%; }
  .ih-since__cities { position: relative; left: auto; right: auto; bottom: auto; width: auto; margin: -40px 14px 0; }

  .ih-mosaic__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ih-mosaic__tile--tall { grid-column: 1; grid-row: 1 / span 2; }
  .ih-mosaic__tile--wide { grid-column: 2; grid-row: 1; aspect-ratio: 1; }
  .ih-mosaic__tile--mid { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
  .ih-mosaic__teams { grid-column: 1 / -1; grid-row: 3; flex-direction: row; align-items: center; flex-wrap: wrap; }

  .chat__cap { display: none; }
  .paths { grid-template-columns: 1fr; }
  .ih-mirror__chain { font-size: .9em; }
  .ih-mirror__chain span { padding: 6px 10px; font-size: .72rem; }

  .wcard { position: relative; left: auto; right: auto; top: auto; bottom: auto; max-width: none; margin: 10px 0 0; }
  .wcard--a { margin-top: -30px; margin-inline: 12px; }
  .wcard--b { margin-inline: 12px; }
  .ih-stage .crumb { justify-content: flex-start; }
  .ih-stage, .ih-flow { text-align: left; }
  .ih-stage .eyebrow, .ih-flow .eyebrow, .ih-stage h1, .ih-flow h1, .ih-stage .lede, .ih-flow .lede { margin-inline: 0; }
  .ih-stage .chip-row { justify-content: flex-start; }

  .ih-doc__inner { grid-template-columns: 1fr; }
  .stage .ih-frame img, .ih-article__cover .ih-frame img { aspect-ratio: 16/10; }
}

/* Editorial section header.
   The heading and its lede sit side by side so the row is actually filled.
   Note: `ch` must be set on the HEADING itself, never on this wrapper - the
   wrapper is body-size, so a ch cap here would crush a 60px heading into a
   ~280px column. */
.sec-head {
  margin-bottom: clamp(40px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  column-gap: clamp(30px, 4vw, 76px);
  align-items: end;
}
.sec-head > .eyebrow { grid-column: 1 / -1; justify-self: start; margin-bottom: 18px; }
.sec-head > h2, .sec-head > .h2 { grid-column: 1; max-width: 17ch; }
.sec-head > p { grid-column: 2; margin-top: 0; padding-bottom: .45em; max-width: 52ch; }

/* Heading-only heads (no lede) run full width rather than half */
.sec-head:not(:has(> p)) { display: block; }
.sec-head:not(:has(> p)) > h2,
.sec-head:not(:has(> p)) > .h2 { max-width: 20ch; }

/* Wider heading measure where the copy is short and should stay on two lines */
.sec-head--wide > h2, .sec-head--wide > .h2 { max-width: 21ch; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #a9b5c6; border-radius: var(--r-shell); }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 18% 115%, rgba(0,128,248,.42), transparent 60%),
              radial-gradient(ellipse 60% 80% at 88% -20%, rgba(0,56,208,.4), transparent 58%);
}
@media (prefers-reduced-motion: no-preference) { .cta-band::before { animation: drift-b 30s ease-in-out infinite alternate; } }
.cta-band__inner { position: relative; z-index: var(--z-base); padding: clamp(44px, 6vw, 84px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: #9aa7b9; max-width: 52ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; }
.cta-band__actions .btn { width: 100%; justify-content: space-between; }
.cta-band__note { font-size: .85rem; color: #7f8d9f; text-align: center; }
.cta-band__note a { color: #7cbcff; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-weight: 700; font-size: .89rem; color: var(--ink); }
.field label .req { color: #c2410c; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 17px; border: 1px solid var(--hair-2); border-radius: var(--r-sm); background: rgba(255,255,255,.8); color: var(--ink); font-size: 1rem; transition: border-color .4s var(--e-soft), box-shadow .4s var(--e-soft), background-color .4s var(--e-soft); }
.field input::placeholder, .field textarea::placeholder { color: #7d8898; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(0,128,248,.14); }
.field textarea { resize: vertical; min-height: 136px; }
.field__help { font-size: .82rem; color: var(--muted); }
.field__err { font-size: .84rem; color: #b3261e; display: none; align-items: center; gap: 7px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field.has-error .field__err { display: flex; }
/* Custom listbox. The native <select> stays in the markup as the value the
   form reads; it is only taken out of the visual and tab order once JS has
   built the replacement, so a failed script still leaves a working control. */
.xselect { position: relative; }
.xselect__native { display: none; }

.xselect__btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 14px 17px; text-align: left; cursor: pointer;
  border: 1px solid var(--hair-2); border-radius: var(--r-sm);
  background: rgba(255,255,255,.8); color: var(--ink); font-size: 1rem;
  transition: border-color .4s var(--e-soft), box-shadow .4s var(--e-soft),
              background-color .4s var(--e-soft);
}
.xselect__btn:hover { border-color: var(--tint-2); background: #fff; }
.xselect__btn:focus-visible,
.xselect.is-open .xselect__btn {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,128,248,.14);
}
.xselect__value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xselect__value.is-placeholder { color: #7d8898; }
.xselect__caret {
  flex-shrink: 0; font-size: 1.05rem; color: var(--muted-2);
  transition: transform .45s var(--e-soft), color .35s var(--e-soft);
}
.xselect.is-open .xselect__caret { transform: rotate(180deg); color: var(--brand); }

.xselect__pop {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: var(--z-raise);
  max-height: min(52vh, 344px); overflow-y: auto; overscroll-behavior: contain;
  padding: 6px; border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--hair-2);
  box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.985);
  transform-origin: top center;
  transition: opacity .28s var(--e-soft), transform .28s var(--e-soft), visibility .28s;
}
.xselect.is-up .xselect__pop { top: auto; bottom: calc(100% + 8px); transform-origin: bottom center; }
.xselect.is-open .xselect__pop { opacity: 1; visibility: visible; transform: none; }
.xselect__pop:focus { outline: none; }

.xselect__opt {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 11px; cursor: pointer;
  font-size: 1rem; color: var(--ink-2); line-height: 1.35;
  transition: background-color .2s var(--e-soft), color .2s var(--e-soft);
}
.xselect__opt-text { flex: 1; min-width: 0; }
.xselect__opt.is-active { background: rgba(10,16,30,.05); }
.xselect__opt[aria-selected="true"] { background: var(--tint); color: var(--brand-ink); font-weight: 600; }
.xselect__opt[aria-selected="true"].is-active { background: var(--tint-2); }
.xselect__tick { flex-shrink: 0; font-size: 1.05rem; color: var(--brand); opacity: 0; transition: opacity .2s var(--e-soft); }
.xselect__opt[aria-selected="true"] .xselect__tick { opacity: 1; }

.field.has-error .xselect__btn { border-color: #b3261e; }

.form-note { font-size: .84rem; color: var(--muted); }
.form-status { display: none; align-items: flex-start; gap: 12px; padding: 17px 19px; border-radius: var(--r-sm); background: var(--tint); color: var(--brand-dp); border: 1px solid var(--tint-2); font-size: .94rem; margin-bottom: 22px; }
.form-status.is-shown { display: flex; }
.form-status i { font-size: 1.3rem; flex-shrink: 0; }
.btn[data-loading="true"] { pointer-events: none; opacity: .72; }
.btn[data-loading="true"] .btn__spin { display: inline-block; }
.btn__spin { display: none; width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   ARTICLE
   ========================================================================== */
.article { max-width: 70ch; margin-inline: auto; }
.article h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); margin-block: 52px 18px; }
.article h3 { margin-block: 34px 14px; }
.article p { color: #414b58; margin-bottom: 20px; }
.article ul, .article ol { color: #414b58; padding-left: 24px; margin-bottom: 20px; display: grid; gap: 10px; }
.article li::marker { color: var(--brand); }
.article figure { margin: 44px 0; }
.article > h2:first-child { margin-top: 0; }
.article figure img { border-radius: var(--r-shell); width: 100%; box-shadow: var(--sh-2); }
.article figcaption { font-size: .85rem; color: var(--muted-2); margin-top: 12px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.callout { border-radius: var(--r-shell); padding: 7px; background: rgba(0,128,248,.07); border: 1px solid var(--tint-2); margin: 38px 0; }
.callout > div { border-radius: var(--r-core); padding: 28px; background: linear-gradient(150deg, #f5faff, #e9f2fe); box-shadow: var(--inset-hi); }
.callout h4 { margin-bottom: 10px; }
.callout p { margin: 0; color: var(--muted); }

/* ==========================================================================
   PROMO BAND
   ========================================================================== */
.promo { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.promo--2 { grid-template-columns: 1fr auto; }
.promo p { color: var(--muted); font-size: .96rem; }
.promo .btn { white-space: nowrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { position: relative; overflow: hidden; background: var(--ink); color: #8d9ab0; padding-block: clamp(64px, 8vw, 110px) 34px; }
.footer::before { content: ""; position: absolute; inset: auto 0 -60% 0; height: 100%; background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(0,128,248,.22), transparent 65%); }
.footer > * { position: relative; z-index: var(--z-base); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; }
.footer__logo img { height: 40px; width: auto; margin: -4px 0 18px -5px; }
.footer__blurb { font-size: .95rem; color: #808ea4; max-width: 32ch; margin-bottom: 26px; }
.footer h4 { color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--f-body); font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer a { font-size: .95rem; transition: color .35s var(--e-soft); }
.footer a:hover { color: #fff; }
.footer__contact { display: grid; gap: 13px; font-size: .95rem; }
.footer__contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact i { color: var(--brand-lt); font-size: 1.05rem; margin-top: 3px; flex-shrink: 0; }
.footer__bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-wrap: wrap; gap: 16px 30px; align-items: center; justify-content: space-between; font-size: .86rem; color: #74829a; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }

/* ==========================================================================
   REVEAL FALLBACK (used when GSAP is unavailable)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .9s var(--e-out), transform .9s var(--e-out); }
[data-reveal][data-delay="1"].is-in { transition-delay: .08s; }
[data-reveal][data-delay="2"].is-in { transition-delay: .16s; }
[data-reveal][data-delay="3"].is-in { transition-delay: .24s; }
[data-reveal][data-delay="4"].is-in { transition-delay: .32s; }

/* ==========================================================================
   REDUCED MOTION - hard stop
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .reveal-words .word { opacity: 1 !important; transform: none !important; }
  .scrubtext .w { color: var(--ink) !important; }
  .wfd .wfd__card { opacity: 1; }
  .wfd .wfd__flow { stroke-dasharray: none; opacity: .55; }
  .grain { display: none; }
  .pinwrap__viewport { min-height: 0; padding-block: 60px; }
  .pintrack { flex-wrap: wrap; transform: none !important; }
  .pincard { width: 100%; }
  .stack__card { position: static; transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bento__cell--wide, .bento__cell--half { grid-column: span 6; }
  .bento__cell--third { grid-column: span 3; }
  .pingal { grid-template-columns: 1fr; }
  .pingal__title { position: static; }
}

/* ---------- Hero: stack the stage, ribbon drops behind the copy ---------- */
@media (max-width: 1100px) {
  .hero__copy { max-width: none; }
  .hero__grid { min-height: 0; }
  .hero__ribbon {
    left: 24%; right: -12%; top: -10%; bottom: auto; height: 86%;
    opacity: .5;                 /* copy sits over it once stacked */
    -webkit-mask-image: radial-gradient(88% 82% at 72% 34%, #000 18%, rgba(0, 0, 0, .5) 56%, transparent 90%);
    mask-image: radial-gradient(88% 82% at 72% 34%, #000 18%, rgba(0, 0, 0, .5) 56%, transparent 90%);
  }
  .hero__card { position: static; width: 100%; margin-top: clamp(28px, 3.4vw, 44px); }
}

@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__inner { padding: 0 10px 0 18px; }

  .hero { padding-top: clamp(122px, 13vh, 158px); }

  /* Tablet: the group heading sits above its items */
  .range__row { grid-template-columns: 1fr; gap: 18px; }
  .range__head { position: static; }
  .range__head p { max-width: 54ch; }
  .range__foot { grid-template-columns: 1fr; }

  .split, .split--rev { grid-template-columns: 1fr; gap: 34px; }
  .split--rev .split__media { order: 0; }
  .compare { grid-template-columns: 1fr; }
  .compare__arrow { transform: rotate(90deg); padding: 6px 0; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 38px 16px; }
  .flow::before { display: none; }
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head > h2, .sec-head > .h2, .sec-head > p { grid-column: 1; max-width: none; }
  .sec-head > p { margin-top: 20px; padding-bottom: 0; max-width: 58ch; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band__actions { max-width: 360px; }
  .quotes { grid-template-columns: 1fr; }
  .haccord { flex-direction: column; height: auto; }
  .haccord__panel { height: 190px; flex: none; }
  .haccord__panel.is-open { height: 330px; }
  .haccord__inner p { opacity: 1; transform: none; }
  .stack__core { grid-template-columns: 1fr; gap: 18px; }
  .stack__card { top: 88px; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; --r-shell: 26px; --r-core: 21px; }
  body { font-size: 1rem; }

  .g-2, .g-3, .g-4, .ucase, .facts { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide, .bento__cell--half, .bento__cell--third { grid-column: span 1; }
  .bento__cell--wide .bento__media { aspect-ratio: 16/9; }
  .flow { grid-template-columns: 1fr; gap: 28px; }
  .flow__node { display: flex; gap: 18px; text-align: left; padding: 0; }
  .flow__dot { margin: 0; width: 52px; height: 52px; font-size: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .promo, .promo--2 { grid-template-columns: 1fr; gap: 20px; }
  .promo .btn { justify-self: start; }
  .panel__core, .compare__core, .bento__body, .svc__body, .post__body, .ucase__item { padding: 24px; }
  .btn { width: 100%; justify-content: space-between; }
  .btn--plain { justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .quotes__face { width: 54px; height: 54px; font-size: .9rem; }

  /* Phone: the step row stacks, facts go two-up */
  .hsteps { grid-template-columns: 1fr; gap: 16px; }
  .hstep { padding-top: 0; padding-left: 28px; }
  .hstep::before {
    left: 5px; right: auto; top: 18px; bottom: -16px; width: 1px; height: auto;
    background: linear-gradient(to bottom, rgba(0, 128, 248, .30), rgba(0, 128, 248, .04));
  }
  .hstep:last-child::before { display: none; }
  .hstep__dot { top: 6px; }
  .hero__ribbon { opacity: .38; left: 6%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .hstat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero__trust { justify-content: flex-start; gap: 20px; }
  .hero__trust__list { justify-content: flex-start; flex: 1 1 100%; }

  /* Phone: one column of rows, every row ruled */
  .range__items { grid-template-columns: 1fr; }
  .range__items > .range__item:nth-child(2) { border-top: 1px solid var(--hair); }
  .range__item { padding: 14px 8px; }
  .nav__logo img { height: 34px; }
  .pincard { width: 82vw; }
}

/* ==========================================================================
   COMPATIBILITY + AMBIENT
   Interior pages use the flat (single-element) card markup. These rules let
   them render correctly against the double-bezel system without rewriting
   every fragment. :has() is supported by every current browser; older ones
   fall back to a plain card, which still reads fine.
   ========================================================================== */

/* Buttons authored without the nested icon circle stay symmetric */
.btn:not(:has(.btn__ico)) { padding: 13px 24px; }

/* Flat panels get the core padding and surface directly */
.panel:not(:has(> .panel__core)) { background: var(--surface); padding: 30px; }
.panel--tint:not(:has(> .panel__core)) { background: var(--canvas-2); }
.panel--brand:not(:has(> .panel__core)) { background: linear-gradient(150deg, #f4f9ff, #e9f2fe); }
.panel--ink:not(:has(> .panel__core)) { background: var(--ink); }

/* Flat media cards clip their own image */
.svc:not(:has(> .svc__core)),
.post:not(:has(> .post__core)) { padding: 0; overflow: hidden; background: var(--surface); }
.svc:not(:has(> .svc__core)) .svc__media,
.post:not(:has(> .post__core)) .post__media { border-radius: 0; }

.bento__cell:not(:has(> .bento__core)) { padding: 0; flex-direction: column; background: var(--surface); }
.bento__cell--grad:not(:has(> .bento__core)) { background: linear-gradient(150deg, #f4f9ff, #e6f1fe); }
.bento__cell--ink:not(:has(> .bento__core)) { background: var(--ink); }

.compare__col:not(:has(> .compare__core)) { padding: 32px; background: var(--surface); }
.compare__col--before:not(:has(> .compare__core)) { background: var(--canvas-2); }
.compare__col--after:not(:has(> .compare__core)) { background: linear-gradient(150deg, #f4f9ff, #e9f2fe); }

.wfd-wrap:not(:has(> .wfd-core)) { padding: clamp(22px, 3vw, 40px); background: linear-gradient(150deg, #f6faff, #eaf2fe); }

.callout:not(:has(> div)) { padding: 28px; background: linear-gradient(150deg, #f5faff, #e9f2fe); }


/* Inline "acc__item" links used as list rows on the home page */
a.acc__item { transition: color .35s var(--e-soft); }
a.acc__item:hover strong { color: var(--brand-ink); }
a.acc__item:hover i { transform: translate(3px, -3px); }
a.acc__item i { transition: transform .45s var(--e-soft); }

/* ==========================================================================
   FLOATING WHATSAPP
   Sits under the nav and the mobile drawer, and steps aside when the drawer
   takes over the screen.
   ========================================================================== */
.wafab {
  position: fixed; right: clamp(16px, 2.2vw, 28px); bottom: clamp(16px, 2.2vw, 28px);
  z-index: var(--z-sticky);
  display: inline-flex; align-items: center;
  height: 58px; border-radius: var(--r-pill);
  color: #fff; background: #25d366;
  box-shadow: 0 1px 2px rgba(10,20,45,.06), 0 14px 32px -10px rgba(18,140,70,.55);
  transition: transform .5s var(--e-soft), box-shadow .5s var(--e-soft),
              padding-right .5s var(--e-soft), opacity .4s var(--e-soft), visibility .4s var(--e-soft);
}
.wafab__ico { width: 58px; height: 58px; padding: 14px; flex-shrink: 0; pointer-events: none; }
.wafab__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: .93rem; font-weight: 700; letter-spacing: -.01em;
  opacity: 0; pointer-events: none;
  transition: max-width .5s var(--e-soft), opacity .35s var(--e-soft);
}
.wafab:hover, .wafab:focus-visible {
  transform: translateY(-3px); padding-right: 22px;
  box-shadow: 0 2px 4px rgba(10,20,45,.07), 0 22px 46px -12px rgba(18,140,70,.62);
}
.wafab:hover .wafab__label, .wafab:focus-visible .wafab__label { max-width: 200px; opacity: 1; }

/* Ring pulses outward from the pill - drawn as an outline so it reads over
   the green rather than fighting the button's own background. */
.wafab__ring {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 2px solid rgba(37,211,102,.7); opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .wafab__ring { animation: wa-pulse 2.8s var(--e-soft) infinite; }
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.42); opacity: 0; }
  100% { transform: scale(1.42); opacity: 0; }
}

/* The drawer owns the viewport while it is open */
body.is-locked .wafab { opacity: 0; visibility: hidden; transform: translateY(12px); }

@media (max-width: 680px) {
  .wafab { height: 54px; }
  .wafab__ico { width: 54px; height: 54px; padding: 13px; }
  /* No hover on touch, so the label can never open - drop it entirely */
  .wafab__label { display: none; }
}
