/* Iniksha Technologies: site stylesheet
   World: the logo's folded orange ribbon on a near-black ground.
   Radius rule: containers 24px, controls fully pill, inputs 14px. */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo Fallback";
  src: local("Arial");
  size-adjust: 102%;
  ascent-override: 88%;
  descent-override: 22%;
}

:root {
  --ink: #0a0a0b;
  --ink-2: #0f0f11;
  --panel: #151517;
  --panel-2: #1c1c1f;
  --line: rgb(255 255 255 / 0.09);
  --line-2: rgb(255 255 255 / 0.16);
  --text: #f5f4f1;
  --text-2: rgb(245 244 241 / 0.74);
  --text-3: rgb(245 244 241 / 0.58);
  --amber: #ffb33e;
  --orange: #f97316;
  --orange-hi: #ff8a2e;
  --ember: #ea580c;
  --deep: #7c2d12;
  --on-orange: #0a0a0b;
  --on-orange-2: rgb(10 10 11 / 0.74);

  --font: "Archivo", "Archivo Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --r-box: 24px;
  --r-input: 14px;
  --gutter: clamp(16px, 4.2vw, 48px);
  --max: 1320px;
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 50;
  --z-mobilebar: 40;
  --z-grain: 60;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--ink);
  color-scheme: dark;
  scrollbar-color: #3a3a3f var(--ink);
}
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  font-stretch: 100%;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  caret-color: var(--orange);
}
@media (min-width: 768px) { body { font-size: 1.0625rem; } }

/* film grain: fixed, non-interactive, never on a scrolling layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--orange); color: var(--on-orange); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #34343a; border-radius: 999px; border: 3px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--ember); }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-color: rgb(249 115 22 / 0.6); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--orange); }
p, h1, h2, h3, h4, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
strong { font-weight: 650; color: var(--text); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--orange); color: var(--on-orange); font-weight: 650;
  padding: 10px 18px; border-radius: 999px; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- type ---------- */
.display, .h1, .h2, .closing-title, .commit-num {
  font-stretch: 112%;
  font-weight: 760;
  letter-spacing: -0.026em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.45rem, 0.9rem + 3.7vw, 4.25rem);
  line-height: 1.03;
  max-width: 14em;
}
.display em, .h1 em { font-style: normal; color: var(--orange); }
.h1 {
  font-size: clamp(2.2rem, 1rem + 3.1vw, 3.9rem);
  line-height: 1.05;
  max-width: 15em;
}
.h2 {
  font-size: clamp(1.95rem, 1.15rem + 2.3vw, 3.25rem);
  line-height: 1.06;
  max-width: 17em;
}
h3 {
  font-size: clamp(1.15rem, 1rem + 0.45vw, 1.4rem);
  line-height: 1.22;
  font-weight: 650;
  font-stretch: 106%;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.lede { color: var(--text-2); font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }
.prose p { color: var(--text-2); max-width: 66ch; text-wrap: pretty; }
.prose p + p { margin-top: 1.05em; }
.prose strong { color: var(--text); }
.tagline {
  font-stretch: 125%;
  font-weight: 560;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text);
}
.tagline span { color: var(--orange); margin: 0 0.15em; }

/* ---------- buttons & links ---------- */
.btn {
  --h: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: var(--h); padding: 0 1.55em;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-stretch: 104%; font-size: 1rem; line-height: 1; letter-spacing: -0.005em;
  text-decoration: none; white-space: nowrap;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform 0.35s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--orange); color: var(--on-orange); box-shadow: 0 10px 30px -12px rgb(249 115 22 / 0.65); }
.btn-primary:hover { background: var(--orange-hi); box-shadow: 0 14px 34px -12px rgb(249 115 22 / 0.8); }
.btn-ghost { background: rgb(255 255 255 / 0.03); border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: rgb(249 115 22 / 0.7); background: rgb(249 115 22 / 0.08); }
.btn-ink { background: var(--ink); color: var(--text); }
.btn-ink:hover { background: #1f1f22; }
.btn-sm { --h: 44px; padding: 0 1.2em; font-size: 0.94rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 620; color: var(--text); text-decoration: none;
  border-bottom: 1px solid rgb(249 115 22 / 0.5); padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.arrow-link .icon { color: var(--orange); width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.arrow-link:hover { border-color: var(--orange); }
.arrow-link:hover .icon { transform: translate(2px, -2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgb(10 10 11 / 0.84);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.brand { flex: none; display: block; }
.brand img { height: 42px; width: auto; }
.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; display: flex; align-items: center; }
.nav-link {
  display: block; padding: 10px 14px; border-radius: 999px;
  font-weight: 560; font-size: 0.97rem; text-decoration: none; color: var(--text-2);
  transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text); }
.nav-link[aria-current="page"] { background: rgb(255 255 255 / 0.06); }
.has-menu .nav-link { padding-right: 4px; }
.menu-toggle {
  display: grid; place-items: center; width: 28px; height: 28px; margin-right: 6px;
  border: 0; background: none; color: var(--text-3); border-radius: 999px;
}
.menu-toggle .icon { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.has-menu.is-open .menu-toggle .icon { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: -12px; min-width: 330px;
  background: rgb(21 21 23 / 0.97); border: 1px solid var(--line-2); border-radius: var(--r-box);
  padding: 10px; box-shadow: 0 24px 60px -20px rgb(0 0 0 / 0.8);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.menu::before { content: ""; position: absolute; inset: -14px 0 auto 0; height: 14px; }
.has-menu.is-open .menu,
.has-menu:hover .menu,
.has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: none; }
.menu-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px;
  text-decoration: none; font-weight: 560; color: var(--text);
}
.menu-link .icon { color: var(--orange); width: 20px; height: 20px; }
.menu-link:hover, .menu-link[aria-current="page"] { background: rgb(249 115 22 / 0.1); }
.menu-all { margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--line); }
.menu-all .menu-link { color: var(--text-2); font-size: 0.94rem; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; color: var(--text); white-space: nowrap; }
.header-phone .icon { color: var(--orange); }
.nav-burger {
  display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgb(255 255 255 / 0.03); color: var(--text); place-items: center;
}
.nav-burger .icon { width: 22px; height: 22px; }
.burger-close { display: none; }
.nav-burger[aria-expanded="true"] .burger-open { display: none; }
.nav-burger[aria-expanded="true"] .burger-close { display: block; }
.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-list { margin-bottom: 22px; }
.mobile-list > li { border-bottom: 1px solid var(--line); }
.mobile-list a, .mobile-services summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px; font-size: 1.3rem; font-weight: 650; font-stretch: 108%; text-decoration: none; list-style: none; cursor: pointer;
}
.mobile-services summary::-webkit-details-marker { display: none; }
.mobile-services summary .icon { width: 20px; height: 20px; color: var(--orange); transition: transform 0.3s var(--ease); }
.mobile-services[open] summary .icon { transform: rotate(180deg); }
.mobile-services ul { padding: 0 0 12px 18px; margin-bottom: 12px; }
.mobile-services ul a { font-size: 1.05rem; font-weight: 520; padding: 10px 2px; color: var(--text-2); }
.mobile-nav .btn { width: 100%; }

@media (max-width: 1080px) {
  .primary-nav, .header-phone { display: none; }
  .header-actions { margin-left: auto; }
  .nav-burger { display: grid; }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .header-actions .btn { display: none; }
  .brand img { height: 36px; }
}

/* ---------- mobile sticky bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobilebar);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgb(10 10 11 / 0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform 0.4s var(--ease);
  }
  .mobile-bar.is-shown { transform: none; }
  .mobile-bar .btn { flex: 1; --h: 50px; padding: 0 1em; font-size: 0.95rem; }
  body { padding-bottom: 76px; }
}

/* ---------- sections ---------- */
.section { padding-block: var(--section); position: relative; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); display: grid; gap: 1.1rem; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 960px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + clamp(2rem, 6vh, 5rem)) 0 clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 78% 30%, rgb(249 115 22 / 0.16), transparent 70%),
    radial-gradient(40% 40% at 10% 100%, rgb(255 179 62 / 0.06), transparent 70%);
}
.hero-ribbon {
  position: absolute; z-index: -1; top: 0; bottom: 0; right: 0;
  width: 46vw; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}
.hero-inner { position: relative; }
.hero-copy { max-width: min(880px, 56vw); display: grid; gap: 1.6rem; }
.hero-sub { color: var(--text-2); font-size: clamp(1.05rem, 0.96rem + 0.4vw, 1.25rem); line-height: 1.6; max-width: 56ch; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 0.4rem; }
.hero-note { display: flex; gap: 10px; align-items: flex-start; color: var(--text-3); font-size: 0.95rem; max-width: 52ch; }
.hero-note .icon { color: var(--orange); margin-top: 2px; }

@media (max-width: 1023px) {
  .hero { min-height: 0; align-items: flex-start; padding-bottom: 0; flex-direction: column; }
  .hero-copy { max-width: 100%; }
  .hero { padding-top: calc(var(--header-h) + 0.25rem); }
  .hero-ribbon {
    position: relative; width: 100%; height: clamp(150px, 36vw, 300px); margin: 0 0 0.75rem;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero::before { background: radial-gradient(80% 45% at 70% 100%, rgb(249 115 22 / 0.16), transparent 70%); }
}
@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
}

/* ---------- inner page hero ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 4.5rem)) 0 clamp(3rem, 6vw, 5.5rem);
  min-height: min(78svh, 700px);
  display: flex; align-items: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(55% 60% at 80% 35%, rgb(249 115 22 / 0.14), transparent 70%);
}
.page-hero .hero-copy { gap: 1.4rem; }
.page-hero-ribbon {
  position: absolute; z-index: -1; top: 0; bottom: 0; right: 0; width: 42vw; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
}
.page-hero.is-plain { min-height: 0; }
.page-hero.is-plain::before { background: radial-gradient(50% 70% at 90% 0%, rgb(249 115 22 / 0.12), transparent 70%); }
@media (max-width: 1023px) {
  .page-hero { min-height: 0; flex-direction: column; align-items: flex-start; padding-bottom: 0; }
  .page-hero.is-plain { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
  .page-hero { padding-top: calc(var(--header-h) + 0.25rem); }
  .page-hero.is-plain { padding-top: calc(var(--header-h) + 2rem); }
  .page-hero-ribbon { position: relative; width: 100%; height: clamp(140px, 32vw, 260px); margin: 0 0 0.75rem; -webkit-mask-image: none; mask-image: none; }
}

.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-3); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--text); text-decoration: underline; }
.crumb-sep { width: 12px; height: 12px; transform: rotate(-90deg); color: var(--orange); }
.crumbs [aria-current] { color: var(--text); }

/* ---------- commitments band (drenched orange) ---------- */
.commit {
  background: var(--orange);
  color: var(--on-orange);
  position: relative;
  padding-block: clamp(2.8rem, 6vw, 4.5rem) clamp(1.8rem, 4vw, 2.6rem);
}
.commit::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgb(255 179 62 / 0.55), transparent 45%, rgb(234 88 12 / 0.4));
}
.commit .container { position: relative; }
.commit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.commit-item { padding: 0.5rem clamp(1rem, 2.4vw, 2rem) 1.2rem; border-left: 1px solid rgb(10 10 11 / 0.2); }
.commit-item:first-child { border-left: 0; padding-left: 0; }
.commit-num {
  display: flex; align-items: baseline; gap: 0.35em; flex-wrap: wrap;
  font-size: clamp(3rem, 1.6rem + 4.4vw, 6rem); line-height: 0.95; font-stretch: 118%; font-weight: 800; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.num-mask { display: inline-block; overflow: hidden; padding-bottom: 0.04em; }
.num-mask > span { display: inline-block; }
.commit-unit { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem); font-stretch: 110%; font-weight: 700; letter-spacing: -0.01em; }
.commit-label { margin-top: 0.6rem; font-weight: 560; color: var(--on-orange-2); font-size: 1rem; }
.commit-facts {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: clamp(1.4rem, 3vw, 2.2rem); padding-top: 1.2rem; border-top: 1px solid rgb(10 10 11 / 0.2);
  font-weight: 560; font-size: 0.95rem; color: var(--on-orange);
}
.commit-facts li { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 900px) {
  .commit-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1rem; }
  .commit-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .commit-item:nth-child(n+3) { border-top: 1px solid rgb(10 10 11 / 0.2); padding-top: 1.2rem; }
}
@media (max-width: 420px) {
  .commit-item { padding-inline: 0.8rem; }
}

/* ---------- why / positioning ---------- */
.why-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.why-title { max-width: 16em; }
.why-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.why-link { margin-top: 1.6rem; }
.span-chart {
  position: relative; padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--r-box); border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel-2), var(--panel) 60%);
  display: grid; gap: 1.6rem;
}
.span-axis { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 600; font-stretch: 112%; letter-spacing: 0.04em; color: var(--text-3); padding-bottom: 0.9rem; border-bottom: 1px dashed var(--line-2); position: relative; }
.span-launch { position: absolute; left: 42%; transform: translateX(-50%); color: var(--text-2); }
.span-launch::after { content: ""; position: absolute; left: 50%; top: 1.9em; width: 1px; height: 170px; background: repeating-linear-gradient(to bottom, var(--line-2) 0 4px, transparent 4px 8px); }
.span-row { display: grid; gap: 0.6rem; }
.span-label { font-weight: 600; font-size: 0.95rem; }
.span-typical .span-label { color: var(--text-3); }
.span-track { position: relative; height: 18px; display: flex; align-items: center; }
.span-bar { display: block; height: 100%; border-radius: 999px; transform-origin: left; }
.span-typical .span-bar { width: 42%; background: #3a3a40; }
.span-iniksha .span-bar { width: 100%; background: linear-gradient(90deg, var(--amber), var(--orange) 45%, var(--ember)); box-shadow: 0 6px 24px -8px rgb(249 115 22 / 0.7); }
.span-end { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; margin-left: -8px; }
.span-end .icon { width: 16px; height: 16px; }
.span-typical .span-end { background: #2a2a2f; color: var(--text-3); }
.span-iniksha .span-end { position: absolute; right: -6px; background: var(--ink); color: var(--orange); border: 1px solid rgb(249 115 22 / 0.6); }
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(3rem, 6vw, 5rem); }
.point { padding-top: 1.4rem; border-top: 1px solid var(--line-2); display: grid; gap: 0.8rem; align-content: start; }
.point > .icon { width: 30px; height: 30px; color: var(--orange); }
.point p { color: var(--text-2); }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .points { grid-template-columns: 1fr; }
}

/* ---------- services bento (home) ---------- */
.svc-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(0, auto); gap: 18px; }
.svc {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--r-box); border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.svc:hover { border-color: rgb(249 115 22 / 0.45); transform: translateY(-3px); }
.svc-body { display: grid; gap: 0.9rem; align-content: end; }
.svc-body p { color: var(--text-2); max-width: 54ch; }
.svc-body .arrow-link { justify-self: start; margin-top: 0.5rem; }
.svc-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: rgb(249 115 22 / 0.12); color: var(--orange); border: 1px solid rgb(249 115 22 / 0.28); }
.svc-icon .icon { width: 26px; height: 26px; }
.svc h3 { font-size: clamp(1.45rem, 1.1rem + 1vw, 2rem); font-stretch: 110%; font-weight: 720; }
.svc-lead { grid-column: span 7; grid-row: span 2; min-height: 640px; background: radial-gradient(70% 60% at 62% 22%, rgb(249 115 22 / 0.22), transparent 70%), var(--panel); }
.svc-art { position: absolute; z-index: -1; top: -4%; right: -12%; width: 86%; max-width: none; pointer-events: none; transition: transform 1.2s var(--ease); -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 88%); mask-image: linear-gradient(to bottom, #000 45%, transparent 88%); }
.svc-lead:hover .svc-art { transform: translateY(-8px) rotate(-1.5deg); }
.svc-lead .svc-body { background: linear-gradient(0deg, var(--panel) 55%, transparent); margin: 0 -2.5rem -2.5rem; padding: 6rem 2.5rem 2.5rem; }
.svc-cloud { grid-column: span 5; background: linear-gradient(160deg, #17181c, var(--panel)); justify-content: space-between; gap: 1.8rem; }
.svc-clouds { display: flex; gap: 18px; align-items: center; order: -1; }
.svc-clouds .tech-mark { width: auto; height: 42px; }
.svc-clouds .tech-mark svg { height: 100%; width: auto; }
.svc-consult { grid-column: span 5; background: linear-gradient(150deg, rgb(234 88 12 / 0.24), rgb(124 45 18 / 0.18) 45%, var(--panel) 90%); border-color: rgb(249 115 22 / 0.22); }
@media (max-width: 1023px) {
  .svc-lead, .svc-cloud, .svc-consult { grid-column: span 12; grid-row: auto; }
  .svc-lead { min-height: 560px; }
}
@media (max-width: 560px) {
  .svc-lead { min-height: 520px; }
  .svc-lead .svc-body { margin: 0 -1.6rem -1.6rem; padding: 5rem 1.6rem 1.6rem; }
  .svc-art { width: 125%; right: -30%; }
}

/* ---------- tech marks ---------- */
.tech-mark { display: inline-flex; align-items: center; justify-content: center; color: rgb(245 244 241 / 0.5); transition: color 0.3s var(--ease); }
.tech-mark:hover { color: var(--brand); }
.tech-mark svg { width: 100%; height: 100%; }

/* ---------- process flow ---------- */
.flow { position: relative; }
.flow-path { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 120px; overflow: visible; }
.flow-line { fill: none; stroke: url(#flowGrad); stroke-width: 3; vector-effect: non-scaling-stroke; stroke-linecap: round; }
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; position: relative; }
.flow-step { position: relative; padding-top: 150px; display: grid; gap: 0.7rem; align-content: start; }
.flow-step:nth-child(odd) .flow-node { top: 6px; }
.flow-step:nth-child(even) .flow-node { top: 90px; }
.flow-step:nth-child(1) .flow-node { top: 38px; }
.flow-step:nth-child(5) .flow-node { top: 38px; }
.flow-node {
  position: absolute; left: 0; width: 26px; height: 26px; border-radius: 999px;
  background: var(--ink); border: 3px solid var(--orange);
  box-shadow: 0 0 0 6px rgb(249 115 22 / 0.12);
}
.flow-step h3 { font-size: clamp(1.2rem, 1rem + 0.6vw, 1.55rem); font-stretch: 112%; font-weight: 720; }
.flow-step p { color: var(--text-2); font-size: 0.97rem; }
@media (max-width: 1023px) {
  .flow-path { display: none; }
  .flow-steps { grid-template-columns: 1fr; gap: 0; padding-left: 44px; }
  .flow-steps::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 3px; border-radius: 3px; background: linear-gradient(var(--amber), var(--orange), var(--ember)); }
  .flow-step { padding: 0 0 2.2rem; }
  .flow-step .flow-node, .flow-step:nth-child(n) .flow-node { top: 2px; left: -44px; }
}

/* ---------- stack ---------- */
.marquee {
  display: flex; overflow: hidden; gap: 0; padding-block: 1.4rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: clamp(2.2rem, 4vw, 3.8rem); padding-right: clamp(2.2rem, 4vw, 3.8rem); flex: none; }
.marquee .tech-mark { height: 44px; width: 44px; }
.marquee .tech-mark:first-child { width: 72px; }
@media (prefers-reduced-motion: no-preference) {
  .js .marquee-track { animation: marquee 48s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { flex-wrap: wrap; justify-content: center; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { flex: 1 1 100%; flex-wrap: wrap; justify-content: center; padding: 0 var(--gutter); row-gap: 1.2rem; }
  .marquee-track[aria-hidden] { display: none; }
}
.stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem clamp(1.2rem, 2.5vw, 2.4rem); }
.stack-group dt { font-weight: 700; font-stretch: 112%; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; }
.stack-group ul { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-group li { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 0.9rem; color: var(--text-2); background: rgb(255 255 255 / 0.02); }
@media (max-width: 1023px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stack-grid { grid-template-columns: 1fr; } }

/* ---------- industries index ---------- */
.ind-index { position: relative; padding-right: 53%; }
.ind-name {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 1.05rem 0.2rem; background: none; border: 0; border-bottom: 1px solid var(--line);
  color: var(--text-3); font-size: clamp(1.15rem, 0.95rem + 0.8vw, 1.6rem); font-stretch: 110%; font-weight: 650; letter-spacing: -0.01em;
  transition: color 0.3s var(--ease), padding 0.35s var(--ease);
}
.ind-name strong { font-weight: inherit; color: inherit; }
.ind-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); color: var(--text-3); flex: none; transition: all 0.3s var(--ease); }
.ind-icon .icon { width: 22px; height: 22px; }
.ind-arrow { margin-left: auto; width: 22px; height: 22px; opacity: 0; transform: translateX(-8px); transition: all 0.35s var(--ease); color: var(--orange); }
.ind-name:hover { color: var(--text); }
.ind.is-active .ind-name { color: var(--text); padding-left: 0.8rem; }
.ind.is-active .ind-icon { background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.ind.is-active .ind-arrow { opacity: 1; transform: none; }
.ind-detail {
  position: absolute; top: 0; right: 0; bottom: 0; width: 48%;
  border-radius: var(--r-box); padding: clamp(2rem, 4vw, 3.2rem);
  background: var(--orange); color: var(--on-orange);
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), visibility 0.4s;
  overflow: hidden;
}
.ind-detail::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 100% 0%, rgb(255 179 62 / 0.75), transparent 60%), radial-gradient(70% 60% at 0% 100%, rgb(194 65 12 / 0.55), transparent 70%); pointer-events: none; }
.ind-detail > * { position: relative; }
.ind.is-active .ind-detail { opacity: 1; visibility: visible; transform: none; }
.ind-big-icon .icon { width: clamp(64px, 8vw, 104px); height: clamp(64px, 8vw, 104px); }
.ind-detail p { display: grid; gap: 0.8rem; }
.ind-detail p strong { color: var(--on-orange); font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.5rem); font-stretch: 112%; font-weight: 760; line-height: 1.05; letter-spacing: -0.02em; }
.ind-desc { font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem); line-height: 1.5; font-weight: 520; color: var(--on-orange); }
.ind-desc::first-letter { text-transform: uppercase; }
@media (max-width: 900px) {
  .ind-index { padding-right: 0; }
  .ind-name { pointer-events: none; color: var(--text); padding-bottom: 0.4rem; border-bottom: 0; }
  .ind-arrow { display: none; }
  .ind .ind-icon, .ind.is-active .ind-icon { background: rgb(249 115 22 / 0.12); border-color: rgb(249 115 22 / 0.3); color: var(--orange); }
  .ind.is-active .ind-name { padding-left: 0.2rem; }
  .ind-detail, .ind.is-active .ind-detail {
    position: static; width: auto; opacity: 1; visibility: visible; transform: none;
    background: none; color: var(--text-2); padding: 0 0 1.2rem 58px; border-radius: 0; border-bottom: 1px solid var(--line);
  }
  .ind-detail::before, .ind-big-icon, .ind-detail p strong { display: none; }
  .ind-desc { color: var(--text-2); font-size: 1rem; font-weight: 400; }
}

/* ---------- engagement panel ---------- */
.engage-panel {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-2); border-radius: var(--r-box); overflow: hidden;
  background: var(--panel);
}
.engage-item { padding: clamp(1.6rem, 3vw, 2.6rem); display: grid; gap: 0.8rem; align-content: start; border-left: 1px solid var(--line); }
.engage-item:first-child { border-left: 0; }
.engage-item > .icon { width: 32px; height: 32px; color: var(--orange); margin-bottom: 0.4rem; }
.engage-item h3 { font-stretch: 110%; font-weight: 700; }
.engage-item p { color: var(--text-2); }
.engage-item .best { color: var(--text); font-weight: 560; padding-top: 0.8rem; border-top: 1px dashed var(--line-2); margin-top: 0.4rem; }
.engage-close {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap;
  padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.6rem, 3vw, 2.6rem);
  background: linear-gradient(90deg, rgb(249 115 22 / 0.14), rgb(249 115 22 / 0.03));
  border-top: 1px solid rgb(249 115 22 / 0.3);
}
.engage-close p { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem); font-weight: 560; max-width: 52ch; }
@media (max-width: 900px) {
  .engage-panel { grid-template-columns: 1fr; }
  .engage-item { border-left: 0; border-top: 1px solid var(--line); }
  .engage-item:first-child { border-top: 0; }
  .engage-close .btn { width: 100%; }
}

/* ---------- local ---------- */
.local-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.local-copy { display: grid; gap: 1.6rem; }
.reach {
  border-radius: var(--r-box); border: 1px solid var(--line); background: var(--panel);
  padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: 0; position: relative; overflow: hidden;
}
.reach-tier { display: grid; gap: 0.9rem; justify-items: start; position: relative; }
.reach-tier + .reach-tier { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px dashed var(--line-2); }
.reach-cities.is-near li { border-color: rgb(249 115 22 / 0.45); color: var(--text); }
.reach-home {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px;
  background: var(--orange); color: var(--on-orange); font-weight: 720; font-stretch: 110%; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
}
.reach-cap { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-stretch: 112%; color: var(--text-3); font-weight: 650; }
.reach-rings { position: absolute; right: -90px; top: -90px; width: 300px; height: 300px; pointer-events: none; }
.reach-rings span { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgb(249 115 22 / 0.28); }
.reach-rings span:nth-child(2) { inset: 45px; border-color: rgb(249 115 22 / 0.4); }
.reach-rings span:nth-child(3) { inset: 90px; border-color: rgb(249 115 22 / 0.6); background: radial-gradient(circle, rgb(249 115 22 / 0.3), transparent 70%); }
.reach-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.reach-cities li { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-weight: 560; font-size: 0.95rem; }
@media (max-width: 900px) { .local-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-side { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 1.4rem; }
.faq-list { border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.35rem 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem); font-weight: 620; font-stretch: 104%; }
.faq-toggle { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 999px; border: 1px solid var(--line-2); color: var(--orange); transition: transform 0.35s var(--ease), background-color 0.3s; }
.faq-toggle .icon { width: 18px; height: 18px; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: rgb(249 115 22 / 0.12); }
.faq-item summary:hover .faq-q { color: #fff; }
.faq-a { padding: 0 3.5rem 1.5rem 0; }
.faq-a p { color: var(--text-2); max-width: 66ch; }
@supports (interpolate-size: allow-keywords) {
  .faq-list { interpolate-size: allow-keywords; }
  .faq-item::details-content { height: 0; overflow: clip; transition: height 0.4s var(--ease), content-visibility 0.4s allow-discrete; }
  .faq-item[open]::details-content { height: auto; }
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .faq-a { padding-right: 0; }
}

/* ---------- closing section (drenched orange + form) ---------- */
.closing {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--orange); color: var(--on-orange);
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(7rem, 12vw, 10rem);
}
.closing::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(70% 80% at 0% 0%, rgb(255 179 62 / 0.8), transparent 60%), radial-gradient(60% 70% at 100% 100%, rgb(194 65 12 / 0.55), transparent 70%);
}
.closing-ribbon { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; opacity: 0.95; }
.closing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.closing-copy { display: grid; gap: 1.4rem; position: sticky; top: calc(var(--header-h) + 32px); }
.closing-title { font-size: clamp(2.4rem, 1.2rem + 4vw, 5rem); line-height: 1; font-stretch: 116%; font-weight: 800; letter-spacing: -0.035em; max-width: 9em; }
.closing-body { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem); font-weight: 520; max-width: 42ch; color: var(--on-orange); }
.cta-call { font-weight: 600; }
.cta-call a { color: var(--on-orange); text-decoration-color: var(--on-orange); }
.closing a:focus-visible, .commit a:focus-visible, .ind-detail :focus-visible { outline-color: var(--ink); }
@media (max-width: 900px) {
  .closing-grid { grid-template-columns: 1fr; }
  .closing-copy { position: static; }
}

/* ---------- forms ---------- */
.enquiry-form {
  background: var(--ink); color: var(--text);
  border-radius: var(--r-box); padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 40px 80px -40px rgb(60 20 0 / 0.7);
  display: grid; gap: 1.3rem;
}
.form-title { font-size: clamp(1.4rem, 1.1rem + 0.9vw, 1.9rem); font-stretch: 110%; font-weight: 720; letter-spacing: -0.015em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1rem; }
.field { display: grid; gap: 0.45rem; align-content: start; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.93rem; color: var(--text); }
.req { color: var(--orange); }
.opt { color: var(--text-3); font-weight: 450; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: #121214; border: 1px solid #3a3a40; border-radius: var(--r-input);
  color: var(--text); font-size: 1rem; line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: #55555c; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgb(249 115 22 / 0.2); background: #151517; }
.field [aria-invalid="true"] { border-color: #ff6b5a; }
.field-error { color: #ff8f80; font-size: 0.88rem; font-weight: 520; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; padding-right: 44px; cursor: pointer; }
.select-wrap .icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--orange); pointer-events: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; }
.form-promise { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 0.93rem; font-weight: 520; }
.form-promise .icon { color: var(--orange); }
.form-status { padding: 14px 16px; border-radius: var(--r-input); font-weight: 560; font-size: 0.97rem; }
.form-status.is-ok { background: rgb(74 222 128 / 0.1); border: 1px solid rgb(74 222 128 / 0.4); color: #bff5d2; }
.form-status.is-err { background: rgb(255 107 90 / 0.1); border: 1px solid rgb(255 107 90 / 0.45); color: #ffc9c1; }
.form-privacy { color: var(--text-3); font-size: 0.88rem; }
.form-privacy a { color: var(--text-2); }
.enquiry-form button[disabled] { opacity: 0.7; cursor: progress; }
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-foot .btn { width: 100%; }
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; background: var(--ink); position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-logo img { width: min(300px, 100%); }
.footer-name, .footer-tagline { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.footer-about { color: var(--text-2); margin-top: 1.4rem; max-width: 40ch; font-size: 0.97rem; }
.footer-h { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; font-stretch: 115%; color: var(--text-3); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { color: var(--text-2); text-decoration: none; font-size: 0.97rem; }
.footer-col a:hover { color: var(--text); text-decoration: underline; }
.footer-contact li { display: flex; gap: 10px; color: var(--text-2); font-size: 0.97rem; }
.footer-contact .icon { color: var(--orange); margin-top: 3px; width: 18px; height: 18px; }
.footer-bottom { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; color: var(--text-3); font-size: 0.9rem; }
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom a { color: var(--text-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); text-decoration: underline; }
@media (max-width: 1023px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ============ inner-page components ============ */

/* stacked rows (services hub) */
.rows { display: grid; }
.row {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1.5rem clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.2rem, 4.5vw, 3.8rem); border-top: 1px solid var(--line-2);
}
.row:last-child { border-bottom: 1px solid var(--line-2); }
.row-head { display: flex; gap: 1.2rem; align-items: flex-start; }
.row-head .svc-icon { flex: none; }
.row-head .h2 { font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem); }
.row-body { display: grid; gap: 1.2rem; align-content: start; }
.row-body > p { color: var(--text-2); }
.best-when { padding: 1.1rem 1.3rem; border-radius: 18px; background: rgb(249 115 22 / 0.08); border: 1px solid rgb(249 115 22 / 0.28); color: var(--text); }
.best-when b { color: var(--orange); font-weight: 700; }
.row-body .btn-row { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; }
@media (max-width: 900px) { .row { grid-template-columns: 1fr; } }

/* three-part panel reused for engagement models on inner pages */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-2); border-radius: var(--r-box); overflow: hidden; background: var(--panel); }
.trio > div { padding: clamp(1.6rem, 3vw, 2.4rem); border-left: 1px solid var(--line); display: grid; gap: 0.7rem; align-content: start; }
.trio > div:first-child { border-left: 0; }
.trio > div > .icon { width: 30px; height: 30px; color: var(--orange); }
.trio p { color: var(--text-2); }
@media (max-width: 900px) { .trio { grid-template-columns: 1fr; } .trio > div { border-left: 0; border-top: 1px solid var(--line); } .trio > div:first-child { border-top: 0; } }

/* drenched CTA band (inner pages) */
.band-cta { background: var(--orange); color: var(--on-orange); position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem) clamp(7.5rem, 13vw, 11rem); }
.band-cta::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 90% at 0% 0%, rgb(255 179 62 / 0.8), transparent 60%), radial-gradient(60% 80% at 100% 100%, rgb(194 65 12 / 0.55), transparent 70%); }
.band-cta .closing-ribbon { opacity: 0.9; }
.band-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 2rem clamp(2rem, 5vw, 5rem); align-items: end; }
.band-inner .closing-title { max-width: 11em; font-size: clamp(2.2rem, 1.2rem + 3.3vw, 4.4rem); }
.band-inner p { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem); font-weight: 520; max-width: 46ch; }
.band-actions { display: grid; gap: 1.2rem; justify-items: start; }
.band-actions .btn-ink { --h: 58px; }
.band-actions .arrow-link { color: var(--on-orange); border-color: rgb(10 10 11 / 0.45); }
.band-actions .arrow-link .icon { color: var(--on-orange); }
.related { display: grid; gap: 0.8rem; }
.related li { display: grid; gap: 0.2rem; }
.related-q { font-weight: 560; color: var(--on-orange-2); font-size: 0.95rem; }
.band-cta .related .arrow-link { color: var(--on-orange); border-color: rgb(10 10 11 / 0.4); }
.band-cta .related .arrow-link .icon { color: var(--on-orange); }
@media (max-width: 900px) { .band-inner { grid-template-columns: 1fr; align-items: start; } }

/* problem tiles */
.tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tile {
  grid-column: span 2; border-top: 1px solid var(--line-2);
  padding: 1.5rem clamp(0.5rem, 1.6vw, 1.5rem) 0.6rem 0; display: grid; gap: 0.7rem; align-content: start; position: relative;
}
.tiles { row-gap: clamp(1.8rem, 3vw, 2.6rem); column-gap: clamp(1.4rem, 3vw, 3rem); }
.tile h3 { font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem); font-stretch: 110%; font-weight: 700; }
.tile > .icon { width: 30px; height: 30px; color: var(--orange); }
.tile p { color: var(--text-2); font-size: 0.98rem; }
.tiles.is-5 .tile:nth-child(-n+2) { grid-column: span 3; }
.tiles .tile:first-child { border-top: 2px solid var(--orange); }
.tiles-note { margin-top: 1.8rem; font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem); font-weight: 560; max-width: 60ch; }
.tiles-note .icon { display: inline-block; vertical-align: -0.2em; color: var(--orange); margin-right: 6px; }
@media (max-width: 1023px) { .tiles .tile, .tiles.is-5 .tile:nth-child(-n+2) { grid-column: span 3; } .tiles.is-5 .tile:last-child { grid-column: span 6; } }
@media (max-width: 640px) { .tiles .tile, .tiles.is-5 .tile:nth-child(n) { grid-column: span 6; } }

/* feature grid with varied cells (what we build / services provided) */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fcell { border-radius: var(--r-box); border: 1px solid var(--line); background: var(--panel); padding: clamp(1.4rem, 2.6vw, 2.1rem); display: grid; gap: 0.75rem; align-content: start; transition: border-color 0.3s var(--ease); }
.fcell:hover { border-color: rgb(249 115 22 / 0.4); }
.fcell > .icon { width: 28px; height: 28px; color: var(--orange); }
.fcell p { color: var(--text-2); font-size: 0.98rem; }
.fcell.is-wide { grid-column: span 2; }
.fcell.is-hot { background: var(--orange); color: var(--on-orange); border-color: var(--orange); }
.fcell.is-hot p { color: var(--on-orange-2); font-weight: 480; }
.fcell.is-hot > .icon { color: var(--on-orange); }
.fcell.is-glow { background: linear-gradient(150deg, rgb(234 88 12 / 0.22), var(--panel) 70%); border-color: rgb(249 115 22 / 0.26); }
.fcell .cell-mark { height: 38px; width: auto; }
.fcell .cell-mark svg { height: 100%; width: auto; }
.fcell .cell-mark.tech-mark { color: var(--brand); }
@media (max-width: 1023px) { .fgrid { grid-template-columns: repeat(2, 1fr); } .fcell.is-wide { grid-column: span 2; } }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr; } .fcell.is-wide { grid-column: auto; } }

/* vertical steps */
.steps { position: relative; display: grid; gap: 0; counter-reset: step; max-width: 980px; }
.steps::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 3px; border-radius: 3px; background: linear-gradient(var(--amber), var(--orange) 50%, var(--ember)); }
.step { position: relative; padding: 0 0 clamp(1.8rem, 3.5vw, 2.6rem) 76px; display: grid; gap: 0.55rem; }
.step:last-child { padding-bottom: 0; }
.step-dot { position: absolute; left: 0; top: -2px; width: 45px; height: 45px; border-radius: 999px; background: var(--ink); border: 3px solid var(--orange); display: grid; place-items: center; font-weight: 800; font-stretch: 115%; color: var(--orange); font-size: 1rem; }
.step h3 { font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem); font-stretch: 110%; font-weight: 720; }
.step p { color: var(--text-2); max-width: 64ch; }
.steps-2col { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.steps-2col .section-head { position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 900px) { .steps-2col { grid-template-columns: 1fr; } .steps-2col .section-head { position: static; } }

/* ownership checklist */
.owns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.owns-list { display: grid; gap: 0; border-radius: var(--r-box); background: var(--panel); border: 1px solid var(--line); padding: clamp(0.8rem, 2vw, 1.4rem) clamp(1.2rem, 2.6vw, 2rem); }
.owns-list li { display: flex; gap: 14px; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-weight: 520; }
.owns-list li:last-child { border-bottom: 0; }
.owns-list .icon { flex: none; width: 24px; height: 24px; padding: 3px; border-radius: 999px; background: var(--orange); color: var(--on-orange); margin-top: 1px; }
.owns-copy { display: grid; gap: 1.4rem; }
.owns-copy p { color: var(--text-2); font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem); max-width: 50ch; }
@media (max-width: 900px) { .owns { grid-template-columns: 1fr; } }

/* comparison */
.compare-wrap { border-radius: var(--r-box); border: 1px solid var(--line-2); overflow: hidden; background: var(--panel); }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 1.05rem clamp(1rem, 2.4vw, 1.8rem); vertical-align: top; }
.compare thead th { font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; font-stretch: 115%; font-weight: 700; color: var(--text-3); border-bottom: 1px solid var(--line-2); padding-block: 1.3rem; }
.compare thead th.is-us { color: var(--on-orange); background: var(--orange); }
.compare tbody th { font-weight: 620; color: var(--text); width: 26%; }
.compare tbody td { color: var(--text-2); }
.compare tbody td.is-us { color: var(--text); background: rgb(249 115 22 / 0.09); font-weight: 520; }
.compare tbody tr + tr > * { border-top: 1px solid var(--line); }
.verdict { margin-top: 1.6rem; display: flex; gap: 14px; align-items: flex-start; padding: 1.4rem 1.6rem; border-radius: var(--r-box); background: rgb(249 115 22 / 0.08); border: 1px solid rgb(249 115 22 / 0.3); }
.verdict .icon { color: var(--orange); width: 28px; height: 28px; flex: none; }
.verdict p { font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.2rem); font-weight: 520; }
@media (max-width: 700px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare tbody tr { padding: 1rem 1.2rem; }
  .compare tbody tr + tr { border-top: 1px solid var(--line); }
  .compare tbody tr + tr > * { border-top: 0; }
  .compare tbody th { padding: 0 0 0.5rem; width: auto; }
  .compare tbody td { padding: 0.35rem 0 0.35rem 0; background: none; }
  .compare tbody td::before { content: attr(data-label); display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
  .compare tbody td.is-us { background: none; }
  .compare tbody td.is-us::before { color: var(--orange); }
}

/* cost drivers */
.cost { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.drivers { display: grid; gap: 12px; }
.drivers li { padding: 1.1rem 1.3rem; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); color: var(--text-2); }
.drivers li strong { display: block; color: var(--text); margin-bottom: 0.2rem; }
.timeline-strip { margin-top: 1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.timeline-strip div { padding: 1rem 1.1rem; border-radius: 16px; background: var(--panel-2); border: 1px solid var(--line); display: grid; gap: 0.3rem; }
.timeline-strip div:nth-child(1) { background: rgb(255 179 62 / 0.14); border-color: rgb(255 179 62 / 0.35); }
.timeline-strip div:nth-child(2) { background: rgb(249 115 22 / 0.16); border-color: rgb(249 115 22 / 0.4); }
.timeline-strip div:nth-child(3) { background: rgb(234 88 12 / 0.2); border-color: rgb(234 88 12 / 0.45); }
.timeline-strip b { font-stretch: 112%; font-weight: 750; font-size: 1.1rem; white-space: nowrap; }
.timeline-strip span { color: var(--text-2); font-size: 0.92rem; }
@media (max-width: 900px) { .cost { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .timeline-strip { grid-template-columns: 1fr; } }

/* SLA table */
.sla-wrap { border-radius: var(--r-box); border: 1px solid var(--line-2); overflow: hidden; background: var(--panel); }
.sla { width: 100%; border-collapse: collapse; }
.sla th, .sla td { text-align: left; padding: 1.05rem clamp(1rem, 2.4vw, 1.8rem); }
.sla thead th { font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; font-stretch: 115%; font-weight: 700; color: var(--text-3); border-bottom: 1px solid var(--line-2); }
.sla tbody tr + tr > * { border-top: 1px solid var(--line); }
.sla tbody th { font-weight: 650; white-space: nowrap; }
.sla td { color: var(--text-2); }
.prio { display: inline-flex; align-items: center; gap: 10px; }
.prio i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.prio-1 i { background: #ff5a3c; } .prio-2 i { background: var(--orange); } .prio-3 i { background: var(--amber); } .prio-4 i { background: #8a8a92; }
.sla .tbc { color: var(--text-3); font-style: normal; }
.sla-note { margin-top: 1.2rem; color: var(--text-2); }
@media (max-width: 700px) {
  .sla thead { display: none; }
  .sla, .sla tbody, .sla tr, .sla th, .sla td { display: block; width: 100%; }
  .sla tbody tr { padding: 1rem 1.2rem; }
  .sla tbody tr + tr { border-top: 1px solid var(--line); }
  .sla tbody tr + tr > * { border-top: 0; }
  .sla th, .sla td { padding: 0.2rem 0; }
}

/* principles as quote cards */
.quotes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.quote { grid-column: span 2; border-radius: var(--r-box); padding: clamp(1.5rem, 3vw, 2.2rem); background: var(--panel); border: 1px solid var(--line); display: grid; gap: 0.9rem; align-content: start; position: relative; }
.quote:nth-child(1), .quote:nth-child(2) { grid-column: span 3; }
.quote::before { content: "\201C"; font-size: 4.5rem; line-height: 0.6; font-weight: 800; color: var(--orange); height: 0.45em; }
.quote h3 { font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem); font-stretch: 110%; font-weight: 720; }
.quote p { color: var(--text-2); }
.quote:nth-child(1) { background: linear-gradient(150deg, rgb(234 88 12 / 0.24), var(--panel) 70%); border-color: rgb(249 115 22 / 0.3); }
@media (max-width: 1023px) { .quotes .quote, .quotes .quote:nth-child(n) { grid-column: span 3; } .quotes .quote:last-child { grid-column: span 6; } }
@media (max-width: 640px) { .quotes .quote:nth-child(n) { grid-column: span 6; } }

/* what we won't do (orange field) */
.wont { background: var(--orange); color: var(--on-orange); padding-block: var(--section); position: relative; isolation: isolate; overflow: hidden; }
.wont::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 100% 0%, rgb(255 179 62 / 0.75), transparent 60%), radial-gradient(60% 70% at 0% 100%, rgb(194 65 12 / 0.5), transparent 70%); }
.wont-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 5rem); }
.wont .closing-title { font-size: clamp(2.2rem, 1.2rem + 3.3vw, 4.4rem); }
.wont-intro { margin-top: 1.2rem; font-weight: 560; font-size: 1.1rem; }
.wont-list { display: grid; gap: 0; }
.wont-list li { padding: 1.3rem 0; border-top: 1px solid rgb(10 10 11 / 0.22); display: grid; grid-template-columns: 40px 1fr; gap: 14px; font-size: clamp(1rem, 0.96rem + 0.25vw, 1.12rem); font-weight: 480; }
.wont-list li:last-child { border-bottom: 1px solid rgb(10 10 11 / 0.22); }
.wont-list .icon { width: 30px; height: 30px; }
.wont-list strong { color: var(--on-orange); font-weight: 720; display: block; margin-bottom: 0.2rem; font-size: 1.1em; }
@media (max-width: 900px) { .wont-grid { grid-template-columns: 1fr; } }

/* team */
.team { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.person { border-radius: var(--r-box); overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.person img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.person div { padding: 1.2rem 1.3rem 1.4rem; display: grid; gap: 0.3rem; }
.person p { color: var(--text-2); font-size: 0.95rem; }
.founding { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); font-weight: 560; max-width: 40ch; margin-bottom: 2rem; }

/* split text + panel */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.panel { border-radius: var(--r-box); border: 1px solid var(--line); background: var(--panel); padding: clamp(1.5rem, 3vw, 2.4rem); }

/* areas served */
.areas { display: grid; gap: 16px; }
.area-tier { border-radius: var(--r-box); border: 1px solid var(--line); background: var(--panel); padding: clamp(1.4rem, 2.8vw, 2.2rem); display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr); gap: 1rem 2rem; align-items: start; }
.area-tier h3 { font-size: 1.15rem; }
.area-tier p.area-sub { color: var(--text-3); font-size: 0.93rem; margin-top: 0.3rem; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pills li { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-weight: 540; font-size: 0.95rem; }
.area-tier.is-home { background: var(--orange); color: var(--on-orange); border-color: var(--orange); }
.area-tier.is-home .area-pills li { border-color: rgb(10 10 11 / 0.3); background: rgb(255 255 255 / 0.14); }
.area-tier.is-home p.area-sub { color: var(--on-orange-2); }
@media (max-width: 760px) { .area-tier { grid-template-columns: 1fr; } }

/* region belts */
.belts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.belts li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line-2); font-weight: 600; }
.belts .icon { color: var(--orange); width: 18px; height: 18px; }

/* NAP block */
.nap { display: grid; gap: 0.5rem; padding: 1.4rem 1.6rem; border-radius: var(--r-box); background: rgb(10 10 11 / 0.12); border: 1px solid rgb(10 10 11 / 0.2); font-weight: 520; }
.nap strong { color: var(--on-orange); }

/* contact page */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.contact-grid .enquiry-form { background: var(--panel); border: 1px solid var(--line-2); box-shadow: none; }
.direct { display: grid; gap: 1.2rem; position: sticky; top: calc(var(--header-h) + 24px); }
.direct h2 { font-size: clamp(1.4rem, 1.1rem + 0.9vw, 1.9rem); font-stretch: 110%; font-weight: 720; }
.direct-list { display: grid; gap: 0; border-radius: var(--r-box); border: 1px solid var(--line); background: var(--panel); padding: 0.4rem 1.4rem; }
.direct-list li { display: flex; gap: 14px; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.direct-list li:last-child { border-bottom: 0; }
.direct-list .icon { color: var(--orange); width: 22px; height: 22px; margin-top: 2px; }
.direct-list b { display: block; font-weight: 650; }
.direct-list span { color: var(--text-2); }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } .direct { position: static; } }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: ns; }
.next-steps li { border-radius: var(--r-box); background: var(--panel); border: 1px solid var(--line); padding: clamp(1.4rem, 2.6vw, 2rem); display: grid; gap: 0.7rem; align-content: start; }
.next-steps li:first-child { background: var(--orange); color: var(--on-orange); border-color: var(--orange); }
.next-steps li:first-child p { color: var(--on-orange-2); }
.next-steps p { color: var(--text-2); }
@media (max-width: 900px) { .next-steps { grid-template-columns: 1fr; } }

/* blog empty state, legal, 404 */
.empty {
  border-radius: var(--r-box); border: 1px dashed rgb(249 115 22 / 0.4); background: rgb(249 115 22 / 0.05);
  padding: clamp(1.8rem, 4vw, 3rem); display: grid; gap: 1.2rem; max-width: 820px;
}
.empty p { color: var(--text-2); font-size: 1.1rem; }
.empty .btn-row { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2.5rem; }
.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.8rem); font-stretch: 110%; font-weight: 720; margin: 2.6rem 0 0.8rem; }
.legal p, .legal li { color: var(--text-2); }
.legal ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: 0.4rem; margin-top: 0.6rem; }
.legal p + p { margin-top: 0.9rem; }
.legal .updated { color: var(--text-3); font-size: 0.95rem; }
.nf-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 0.6rem; }

/* ---------- motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-rise] { animation: rise 0.9s var(--ease) both; animation-delay: calc(0.12s + var(--i, 0) * 0.09s); }
  .js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 0.08s); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js .commit .num-mask > span { transform: translateY(105%); transition: transform 0.9s var(--ease); }
  .js .commit.is-in .num-mask > span { transform: none; }
  .js .commit.is-in .commit-item:nth-child(2) .num-mask > span { transition-delay: 0.08s; }
  .js .commit.is-in .commit-item:nth-child(3) .num-mask > span { transition-delay: 0.16s; }
  .js .commit.is-in .commit-item:nth-child(4) .num-mask > span { transition-delay: 0.24s; }
  .js .span-chart .span-bar { transform: scaleX(0); transition: transform 1.4s var(--ease) 0.2s; }
  .js .span-chart.is-in .span-bar { transform: scaleX(1); }
  .js .span-iniksha .span-end { opacity: 0; transition: opacity 0.4s 1.3s; }
  .js .span-chart.is-in .span-iniksha .span-end { opacity: 1; }
  .ribbon { opacity: 0; transition: opacity 1.2s var(--ease) 0.15s; }
  .ribbon.is-drawn { opacity: 1; }
  .closing-ribbon.is-drawn { opacity: 0.95; }
  @supports (animation-timeline: view()) {
    .flow-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw linear both; animation-timeline: view(); animation-range: entry 10% cover 55%; }
  }
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled, .site-header.is-open, .mobile-bar { background: var(--ink); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
@media print {
  .site-header, .mobile-bar, .ribbon, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- additions: support list, 4-tile grid, blog roadmap, map ---------- */
.support-list li { gap: 18px; padding: 1.3rem 0; font-weight: 400; }
.support-list li > .icon { width: 46px; height: 46px; padding: 11px; border-radius: 14px; background: rgb(249 115 22 / 0.12); color: var(--orange); margin-top: 0; }
.support-list h3 { margin-bottom: 0.35rem; }
.support-list p { color: var(--text-2); }
.tiles.is-4 .tile { grid-column: span 3; }
@media (max-width: 640px) { .tiles.is-4 .tile { grid-column: span 6; } }
.roadmap .tile { border: 1px solid var(--line); border-radius: var(--r-box); background: var(--panel); padding: clamp(1.2rem, 2.4vw, 1.8rem); }
.roadmap .tile:first-child { border-top: 1px solid var(--line); }
.roadmap-title { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem); font-stretch: 106%; font-weight: 650; line-height: 1.25; }
.empty > .icon { width: 36px; height: 36px; color: var(--orange); }
@media (max-width: 900px) { .roadmap { grid-template-columns: 1fr; } }
.map { border-radius: var(--r-box); overflow: hidden; border: 1px solid var(--line); min-height: 64px; display: grid; }
.map iframe { width: 100%; height: 320px; border: 0; filter: grayscale(0.4) invert(0.9) hue-rotate(180deg); }
