/* ==========================================================================
   TILTPROOF — landing page styles
   Design: Figma "Tiltproof" · Desktop 1440 / Mobile 390
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/manrope-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Outfit";  font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/outfit-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter";   font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter";   font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --ink: #000007;
  --bone: #ffffff;
  --signal: #cbff3c;
  --muted: #a3a3a3;
  --muted-2: #a1a1aa;
  --soft: #d4d4d8;
  --card: rgba(23, 23, 23, 0.4);
  --line: rgba(255, 255, 255, 0.1);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-logo: "Outfit", var(--font);
  --font-num: "Inter", var(--font);

  --container: 1300px;
  --gutter: 70px;
  --section-gap: 123px;
  --radius-card: 24px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, p, dl, dd, dt { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input { font: inherit; }
::selection { background: var(--signal); color: #000; }

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -2px;
  color: var(--bone);
}

/* ==========================================================================
   Reusable pieces
   ========================================================================== */

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12.6px;
  height: 58px;
  padding: 0 33.5px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  transition: background-color .25s ease, color .25s ease, transform .15s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  min-width: 242px;
  background: var(--bone);
  color: #18181b;
}
.btn--primary::after {            /* green glow underline */
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 100%; height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--signal) 50%, rgba(255,255,255,0) 100%);
  filter: blur(4px);
  transition: opacity .25s ease;
}
.btn--primary:hover,
.btn--primary:focus-visible,
.btn--primary.is-active { background: var(--signal); color: #18181b; }
.btn--primary:hover::after,
.btn--primary.is-active::after { opacity: 0; }
.btn__arrow { flex: 0 0 auto; color: #18181b; }

.btn--ghost {
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--bone);
}
.btn--ghost:hover,
.btn--ghost:focus-visible,
.btn--ghost.is-active { background: var(--bone); color: #0b0c0f; border-color: var(--bone); }

/* Text link with arrow (gradient text) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 24px;
  transition: opacity .2s;
}
.link-arrow span {
  background: linear-gradient(90deg, rgba(190,190,190,.6) 0%, #fff 50.5%, rgba(190,190,190,.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.link-arrow svg { transition: transform .25s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: var(--soft);
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--blur { background: rgba(255,255,255,.1); backdrop-filter: blur(8.4px); -webkit-backdrop-filter: blur(8.4px); }
.pill__strong { font-weight: 500; color: var(--bone); letter-spacing: .5px; }
.pill__star { color: var(--signal); flex: 0 0 auto; }
.pill__group { display: inline-flex; align-items: center; gap: 3px; }
.pill--sm { gap: 9px; padding: 7.2px 18px; font-size: 11.7px; line-height: 14.4px; }
.pill--sm .pill__strong { letter-spacing: .45px; }
.pill--border {
  gap: 6px;
  padding: 4px 8.4px;
  height: 30.5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: none;
  color: rgba(255,255,255,.8);
}
.pill__dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; flex: 0 0 auto; }
.pill--green-dot .pill__dot { background: var(--signal); }

/* Icon box (hero stat / results) */
.icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50.35px; height: 50.35px;
  flex: 0 0 auto;
  border-radius: 16.8px;
  background: rgba(255,255,255,.1);
  border: .8px solid rgba(255,255,255,.25);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}

/* Fading dividers */
.hr-fade { height: 1px; width: 100%; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.25) 50%, rgba(255,255,255,0)); }
.vr-fade { width: 1px; height: 50px; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.4) 50%, rgba(255,255,255,0)); flex: 0 0 auto; }

/* Section head (h2 + aside) */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.section-head .h2 { max-width: 803px; }
.section-head__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 394px;
  flex: 0 0 auto;
  padding-bottom: 20px;
}
.section-head__text { font-size: 14px; line-height: 20px; color: var(--muted); }

/* Sections spacing */
.section { position: relative; }
.section + .section { margin-top: var(--section-gap); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(var(--y, 18px)); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 100px;
  transition: background-color .3s ease, backdrop-filter .3s ease, height .3s ease;
}
.header.is-scrolled {
  height: 76px;
  background: rgba(0,0,7,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner {
  position: relative;
  height: 100%;
  width: min(1300px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: flex-start; gap: 4px; }
.logo__text {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 41.17px;
  line-height: 1;
  letter-spacing: -1.87px;
  color: var(--bone);
}
.logo__planet { width: 45px; height: 30px; object-fit: contain; margin-top: -4px; }
.logo--big .logo__text { font-size: 49.56px; letter-spacing: -2.25px; }
.logo--big .logo__planet { width: 54px; height: 36px; }

.nav { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: 150px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--bone);
  transition: background-color .2s ease, color .2s ease;
}
.nav__link:hover,
.nav__link:focus-visible,
.nav__link:active,
.nav__link.is-active { background: var(--signal); color: #000; }
.nav__chev { flex: 0 0 auto; }

.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 60; }
.burger__close { display: none; }
.burger.is-open .burger__open { display: none; }
.burger.is-open .burger__close { display: block; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--ink);
  padding: 140px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s ease, transform .3s ease; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 10px 14px;
  margin-left: -14px;
  border-radius: 150px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background-color .2s, color .2s;
}
.mobile-menu__link:hover, .mobile-menu__link:active { background: var(--signal); color: #000; }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 857px;
  padding-top: 147px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  left: 50%; top: -40px;
  width: max(1440px, 100%);
  height: 998px;
  transform: translateX(-50%);
  background: url("../img/hero-bg.jpg") center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 4%, #000 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 4%, #000 70%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: .68;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.hero__left { width: 724px; max-width: 100%; flex: 0 1 724px; }
.hero__right { width: 502.5px; flex: 0 0 502.5px; display: flex; flex-direction: column; gap: 25px; }

.hero__badge { margin-bottom: 25px; }

.hero__title {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 74px;
  line-height: 76px;
  letter-spacing: -4px;
  color: var(--bone);
  filter: drop-shadow(0 4px 1.6px rgba(0,0,0,.1)) drop-shadow(0 10.5px 4.2px rgba(0,0,0,.04));
  -webkit-mask-image: linear-gradient(115deg, #000 0%, #000 38%, rgba(0,0,0,.35) 100%);
  mask-image: linear-gradient(115deg, #000 0%, #000 38%, rgba(0,0,0,.35) 100%);
  padding-bottom: 6px;
  margin-bottom: 14px;
}
.hero__line { white-space: nowrap; opacity: 0; animation: fadeIn .6s ease-in-out forwards; padding-bottom: .12em; margin-bottom: -.12em; }
.hero__line--1 { animation-delay: 0s; }
.hero__line--2 {
  animation-delay: .7s;
  background: linear-gradient(173.6deg, #fff 26.9%, var(--signal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__line--3 { animation-delay: 1.4s; }
@keyframes fadeIn { to { opacity: 1; } }

.hero__desc { display: flex; flex-direction: column; gap: 10px; }
.hero__tag { display: flex; align-items: center; gap: 7px; }
.hero__tag-text { font-weight: 500; font-size: 22px; line-height: 38px; letter-spacing: .5px; color: rgba(255,255,255,.8); }
.hero__tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border: .7px dashed rgba(203,255,60,.7);
  border-radius: 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  letter-spacing: .5px;
  color: var(--bone);
  white-space: nowrap;
}
.hero__text { max-width: 670px; font-size: 16px; line-height: 26px; color: rgba(255,255,255,.8); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16.8px; margin-top: 30px; }

/* Stats card */
.stats {
  display: flex;
  flex-direction: column;
  gap: 16.8px;
  padding: 33.5px;
  border-radius: 25px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    2.9px 2.9px 2.3px rgba(0,0,0,.04),
    7px 7px 5.6px rgba(0,0,0,.05),
    13.1px 13.1px 10.5px rgba(0,0,0,.06),
    23.4px 23.4px 18.8px rgba(0,0,0,.07),
    43.8px 43.8px 35px rgba(0,0,0,.09),
    104.9px 104.9px 83.9px rgba(0,0,0,.12);
}
.stats__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stats__lead { display: flex; align-items: center; gap: 12.6px; }
.stats__big { font-weight: 600; font-size: 31.5px; line-height: 37.8px; letter-spacing: -1.57px; color: var(--bone); }
.stats__label { font-weight: 500; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(255,255,255,.8); }
.stats__value { font-weight: 500; font-size: 14px; line-height: 20px; color: var(--bone); }
.stats__progress { display: flex; flex-direction: column; gap: 16.8px; padding: 8.4px 0; }
.stats__progress-head { display: flex; align-items: center; justify-content: space-between; }
.progress { position: relative; height: 8.4px; border-radius: 999px; background: #27272a; overflow: hidden; }
.progress__bar {
  position: absolute; inset: 0 calc(100% - var(--w, 98%)) 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.7) 100%);
  opacity: 0;
  transform: translateX(-100%);
}
.progress__bar.is-animated { animation: progressIn 3s var(--ease-out) forwards; animation-delay: .5s; }
@keyframes progressIn {
  0%   { opacity: 0; transform: translateX(-100%); }
  10%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0); }
}
.stats__grid { display: flex; align-items: center; justify-content: space-between; }
.stat { display: flex; flex-direction: column; align-items: center; width: 133px; padding: 0 8.4px; }
.stat__num {
  font-family: var(--font-num);
  font-weight: 500;
  font-size: 25px;
  line-height: 33.6px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(229,229,229,.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.stat__label { font-weight: 500; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(255,255,255,.8); opacity: .7; text-align: center; white-space: nowrap; }

/* NDA card */
.nda {
  display: flex;
  flex-direction: column;
  gap: 16.8px;
  height: 204px;
  padding: 33.5px;
  border-radius: 25px;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 10px 10px 8px rgba(0,0,0,.07), 18.9px 18.9px 15px rgba(0,0,0,.09), 33.6px 33.6px 26.9px rgba(0,0,0,.1);
  overflow: hidden;
}
.nda__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; white-space: nowrap; }
.nda__title { font-family: var(--font-num); font-weight: 400; font-size: 17.7px; line-height: 29.4px; text-transform: uppercase; color: var(--bone); }
.nda__sub { font-weight: 500; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(255,255,255,.8); }
.ticker { overflow: hidden; width: 100%; }
.ticker__track { display: flex; align-items: stretch; gap: 16px; width: max-content; animation: ticker 20s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker__item { display: flex; flex-direction: column; gap: 3px; min-width: 116px; padding: 0 8.4px; }
.ticker__label { font-weight: 500; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(255,255,255,.8); opacity: .7; white-space: nowrap; }
.ticker__value { font-family: var(--font-num); font-weight: 500; font-size: 24px; line-height: 30px; color: var(--signal); white-space: nowrap; }
.ticker__sep { width: 1px; align-self: stretch; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.4) 50%, rgba(255,255,255,0)); flex: 0 0 auto; }

/* ==========================================================================
   Pain section
   ========================================================================== */
.pain { margin-top: 40px; }
.pain__cards {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-top: 102px;
}
.pain-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 321px;
  padding: 20px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pain-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
}
.pain-card__icon--dark { background: rgba(0,0,0,.1); }
.pain-card__body { display: flex; flex-direction: column; gap: 10px; }
.pain-card__title { font-weight: 500; font-size: 20px; line-height: 24px; letter-spacing: -.6px; color: var(--bone); }
.pain-card__text { font-size: 14px; line-height: 20px; color: var(--muted); max-width: 237px; }
.pain-card__note {
  position: relative;
  margin-top: -2px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 20px;
  color: var(--bone);
  max-width: 250px;
}
.pain-card__note::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 55px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(203,255,60,.2), var(--signal) 50%, rgba(203,255,60,.2));
}

/* Highlighted (white) card */
.pain-card--hl {
  flex: 0 0 315px;
  height: 340px;
  padding: 0 0 1.5px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  justify-content: center;
  align-items: center;
}
.pain-card__hl-inner {
  position: relative;
  width: 309.6px;
  height: 335px;
  border-radius: 24px;
  transform: rotate(-1deg);
  background: #fff url("../img/silhouette.jpg") center bottom / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.pain-card__hl-inner .pain-card__icon { position: absolute; left: 20px; top: 20px; }
.pain-card__hl-content { position: absolute; left: 19px; top: 172px; width: 253px; display: flex; flex-direction: column; gap: 10px; }
.pain-card__title--dark { color: #0b0c0f; }
.pain-card__title--dark span { color: #fff; }
.pain-card__note--dark { color: #0b0c0f; max-width: 165px; }

/* KPIs */
.kpis { display: flex; gap: 16px; margin-top: 32px; }
.kpi {
  flex: 1 1 0;
  display: flex; flex-direction: column; gap: 2px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(25,25,25,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.kpi__label { font-size: 12px; line-height: 16px; color: var(--muted); }
.kpi__value { font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: -.5px; color: var(--bone); }

/* ==========================================================================
   Services
   ========================================================================== */
.services__title { max-width: 1021px; margin-bottom: 60px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.scard {
  padding: 1.1px;
  border-radius: 17.66px;
  background: radial-gradient(circle at 0 0, rgba(113,113,122,.4) 0, rgba(63,63,68,.7) 50%, rgba(37,38,40,.85) 75%, rgba(25,26,27,.925) 87.5%, rgba(12,13,13,1) 100%);
  background-size: 66% 71%;
  background-repeat: no-repeat;
  background-color: #0c0d0d;
  transition: transform .35s var(--ease-out);
}
.scard:hover { transform: translateY(-4px); }
.scard__inner {
  position: relative;
  height: 100%;
  padding: 30.9px 39.7px 30px;
  border-radius: 17.66px;
  border: 1.1px solid #202222;
  background: radial-gradient(ellipse 340px 355px at 0 0, rgba(68,68,68,.3) 0, rgba(40,41,41,.65) 50%, rgba(26,27,27,.825) 75%, rgba(12,13,13,1) 100%);
  backdrop-filter: blur(4.4px);
  -webkit-backdrop-filter: blur(4.4px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4.4px;
}
/* thin guide lines inside card */
.scard__lines { position: absolute; inset: 0; pointer-events: none; }
.scard__lines::before, .scard__lines::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
}
.scard__lines::before { top: 10.3%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(136,136,136,.3) 30%, #1d1f1f 70%, rgba(255,255,255,0) 100%); }
.scard__lines::after  { bottom: 10.3%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(248,250,252,.05) 15%, rgba(248,250,252,.05) 85%, rgba(255,255,255,0) 100%); }
.scard__inner::before, .scard__inner::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.07) 15%, rgba(255,255,255,.07) 85%, rgba(255,255,255,0) 100%);
}
.scard__inner::before { left: 10.2%; }
.scard__inner::after  { right: 10.2%; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.05) 15%, rgba(255,255,255,.05) 85%, rgba(255,255,255,0) 100%); }
.scard__glow {
  position: absolute; left: -10px; top: -10px;
  width: 243px; height: 50px;
  border-radius: 999px;
  background: rgba(113,113,122,.3);
  box-shadow: 0 0 55px rgba(113,113,122,.5);
  filter: blur(5.5px);
  opacity: .4;
  transform: rotate(40deg);
  transform-origin: 20% 50%;
  pointer-events: none;
}
.scard__dot {
  position: absolute; top: 10%; right: 10%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a1a1aa;
  box-shadow: 0 0 11px rgba(139,92,246,.8);
}
.scard__icon {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 39.3px; height: 39.3px;
  margin: 14px 14px 10px;
  border-radius: 13.1px;
  background: rgba(255,255,255,.1);
  border: .62px solid rgba(255,255,255,.25);
  box-shadow: 0 0 0 .82px rgba(255,255,255,.2);
}
.scard__title { padding: 0 14px; font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: -.5px; color: var(--bone); }
.scard__text { padding: 0 14px; font-size: 16px; line-height: 24px; color: var(--muted-2); min-height: 96px; }
.scard__foot { display: flex; align-items: center; gap: 8.8px; padding: 13.2px 14px 14px; font-size: 14px; line-height: 17.7px; color: var(--muted-2); margin-top: auto; }

/* ==========================================================================
   Results
   ========================================================================== */
.results { overflow-x: clip; overflow-y: visible; }
.results__inner { position: relative; }
.results__planet {
  position: absolute;
  left: 923px; top: -228px;
  width: 619px;
  pointer-events: none;
  z-index: 0;
}
.results__planet img { width: 619px; height: auto; }
.results__title { position: relative; z-index: 1; max-width: 1021px; margin-bottom: 60px; }
.results__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.rcard {
  position: relative;
  display: flex; flex-direction: column; gap: 11.4px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(9,9,11,.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.rcard:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.rcard__glow { position: absolute; left: 0; right: 0; bottom: -96px; height: 256px; background: radial-gradient(ellipse 50% 50% at 50% 100%, rgba(16,185,129,.18) 0%, rgba(16,185,129,0) 60%); pointer-events: none; }
.rcard > *:not(.rcard__glow) { position: relative; }
.rcard__title { padding-top: 8.6px; font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.6px; color: var(--bone); }
.rcard .pill { align-self: flex-start; }
.rcard__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 12.6px 0; }
.rcard__metrics > div { display: flex; flex-direction: column; gap: 8px; }
.rcard__metrics dt { font-size: 12px; line-height: 16px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.rcard__metrics dd { font-weight: 500; font-size: 18px; line-height: 28px; color: #e4e4e7; }
.rcard__note {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #18181b, #09090b);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
}
.rcard__note p { position: relative; font-weight: 500; font-size: 14px; line-height: 20px; color: var(--bone); }
.rcard__note-grad {
  position: absolute; inset: 0;
  border-radius: 16px;
  opacity: 0;
  transform: translateX(-200px);
}
.rcard--green  .rcard__note-grad { background: linear-gradient(114.4deg, rgb(203,255,60) 0%, rgba(203,255,60,0) 40%); }
.rcard--blue   .rcard__note-grad { background: linear-gradient(114.4deg, rgb(96,165,250) 0%, rgba(96,165,250,0) 40%); }
.rcard--purple .rcard__note-grad { background: linear-gradient(114.4deg, rgb(192,132,252) 0%, rgba(192,132,252,0) 40%); }
.rcard.is-visible .rcard__note-grad { animation: gradIn 2s ease-out forwards; animation-delay: calc(var(--d, 0s) + .3s); }
@keyframes gradIn { 0% { opacity: 0; transform: translateX(-200px); } 60% { opacity: 1; } 100% { opacity: 1; transform: translateX(0); } }

/* Floating animations (from Figma prototype) */
.float-slow { animation: floatY 6.65s cubic-bezier(.37,0,.63,1) infinite; }
.float-tiny { animation: floatTiny 10s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes floatTiny { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ==========================================================================
   Why us
   ========================================================================== */
.why { min-height: 583px; }
.why__dice {
  position: absolute;
  left: 0; top: 171px;
  width: 427px; height: 454px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.why__dice img { width: auto; max-width: none; height: 100%; object-fit: cover; object-position: left bottom; }
.why__dice::after { content: ""; position: absolute; inset: 0; background: linear-gradient(82.5deg, rgba(0,0,7,0) 70%, var(--ink) 95%); }
.why__title { position: relative; z-index: 1; max-width: 1021px; }
.why__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 715px;
  margin: 46px 0 0 466px;
}
.why-item { display: flex; align-items: center; gap: 15px; min-height: 82px; }
.why-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 82px; height: 82px;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,0));
}
.why-item__icon::before {
  content: ""; position: absolute; inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, #0a0a0a, rgba(24,24,27,.5));
}
.orb {
  position: absolute;
  top: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
}
.orb--a { left: 16px; z-index: 2; animation: orbitA 9s cubic-bezier(.4,0,.6,1) infinite; }
.orb--b { left: 32px; z-index: 1; animation: orbitB 9s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes orbitA {
  0% { transform: translate(0,0); } 22.2% { transform: translate(8px,-14px); } 44.4% { transform: translate(16px,0); }
  55.6% { transform: translate(16px,0); } 77.8% { transform: translate(8px,14px); } 100% { transform: translate(0,0); }
}
@keyframes orbitB {
  0% { transform: translate(0,0); } 22.2% { transform: translate(-8px,14px); } 44.4% { transform: translate(-16px,0); }
  55.6% { transform: translate(-16px,0); } 77.8% { transform: translate(-8px,-14px); } 100% { transform: translate(0,0); }
}
.why-item__icon--purple .orb--a { background: linear-gradient(135deg, rgba(192,132,252,.2), rgba(128,60,195,.3)); }
.why-item__icon--purple .orb--b { background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(192,132,252,.3)); }
.why-item__icon--blue .orb--a { border-color: rgba(96,165,250,.7); background: linear-gradient(135deg, rgba(96,165,250,.3), rgba(96,165,250,.4)); }
.why-item__icon--blue .orb--b { border-color: #60a5fa; background: linear-gradient(135deg, rgba(96,165,250,.4), rgba(96,165,250,.5)); }
.why-item__icon--green .orb--a { border-color: var(--signal); background: linear-gradient(135deg, rgba(203,255,60,.3), rgba(151,193,36,.4)); }
.why-item__icon--green .orb--b { border-color: rgba(203,255,60,.7); background: linear-gradient(135deg, rgba(203,255,60,.2), rgba(203,255,60,.3)); }
.why-item__icon--orange .orb--a { border-color: #f97316; background: linear-gradient(135deg, rgba(249,115,22,.3), rgba(234,88,12,.4)); }
.why-item__icon--orange .orb--b { border-color: rgba(249,115,22,.7); background: linear-gradient(135deg, rgba(251,146,60,.2), rgba(249,115,22,.3)); }
.why-item__title { font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: -.5px; color: var(--bone); margin-bottom: 4px; }
.why-item__text { font-size: 16px; line-height: 24px; color: var(--muted-2); max-width: 618px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  margin-top: 70px;
}
.pcard {
  border-radius: 16px;
  background: #181818;
  overflow: hidden;
  transition: transform .35s var(--ease-out);
}
.pcard:hover { transform: translateY(-4px); }
.pcard__media {
  position: relative;
  height: 252px;
  margin: 20px 20px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #101010;
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,24,24,.7) 25%, rgba(24,24,24,0) 50%, rgba(24,24,24,.7) 75%);
}
.pcard__media--tilt img { transform: rotate(-7deg) scale(1.22); transform-origin: 55% 45%; }
.pcard__body { padding: 22px 32px 32px; display: flex; flex-direction: column; gap: 20px; }
.pcard__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pcard__title { font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.6px; color: var(--bone); }
.pcard__text { font-size: 16px; line-height: 24px; color: var(--muted-2); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__title { max-width: 803px; margin-bottom: 70px; }
.faq__wrap { width: 1159px; max-width: 100%; margin-inline: auto; display: flex; flex-direction: column; gap: 48px; }
.faq__list { display: flex; flex-direction: column; gap: 24px; }
.faq-item {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(255,255,255,.18); }
.faq-item__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%;
  padding: 24px;
  text-align: left;
  font-size: 16px; line-height: 24px;
  color: var(--bone);
}
.faq-item__chev { flex: 0 0 auto; transition: transform .3s var(--ease-out); }
.faq-item.is-open .faq-item__chev { transform: scaleY(-1); }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__answer { overflow: hidden; padding: 0 24px; font-size: 16px; line-height: 24px; color: var(--muted-2); max-width: 1109px; }
.faq-item.is-open .faq-item__answer { padding-bottom: 24px; margin-top: -8px; }
.faq__cta {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(169deg, rgba(23,23,23,.6) 0%, rgba(23,23,23,.3) 100%);
  text-align: center;
}
.faq__cta-title { font-weight: 500; font-size: 20px; line-height: 30px; color: var(--bone); }
.faq__cta-text { font-size: 16px; line-height: 24px; color: var(--muted-2); }
.faq__cta .btn { margin-top: 16px; }

/* ==========================================================================
   Contact / Form
   ========================================================================== */
.contact {
  position: relative;
  margin-top: var(--section-gap);
  min-height: 1023px;
  overflow: hidden;
}
.contact__arc {
  position: absolute;
  left: 50%; top: 88px;
  width: 5485px; height: 5485px;
  margin-left: -2642px;               /* circle centre ≈ x 820 of 1440 */
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--signal);
  box-shadow: 0 0 120px 30px rgba(203,255,60,.55), 0 0 420px 140px rgba(203,255,60,.22), inset 0 30px 280px rgba(203,255,60,.5);
  pointer-events: none;
  z-index: 0;
}
.contact__fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,7,0) 0%, rgba(0,0,7,0) 120px, rgba(0,0,7,.55) 300px, var(--ink) 560px);
  pointer-events: none;
  z-index: 0;
}
.contact__inner { position: relative; z-index: 1; padding-top: 308px; padding-bottom: 20px; }

/* App icon */
.app-icon { position: absolute; left: 82px; top: 12px; width: 238px; height: 238px; transform: rotate(-11.84deg); }
.app-icon__frame {
  width: 100%; height: 100%;
  padding: 7px;
  border-radius: 52px;
  background: #fff;
  box-shadow: 0 0 0 .4px rgba(0,0,0,.11), 0 0 0 3.6px rgba(0,0,0,.03), 0 4.4px 3.6px rgba(0,0,0,.07), 0 11.6px 8.7px rgba(0,0,0,.1), 0 24.7px 17.4px rgba(0,0,0,.13), 0 50.8px 36.3px rgba(0,0,0,.16);
}
.app-icon__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 45px;
  background: #151517;
  box-shadow: 0 1.5px 0 rgba(255,255,255,.15);
  overflow: hidden;
}
.app-icon__glow {
  position: absolute; left: -58px; right: -58px; bottom: -35px; height: 203px;
  background: radial-gradient(ellipse 50% 50% at 50% 100%, var(--signal) 0%, var(--signal) 50%, rgba(203,255,60,.6) 75%, rgba(112,138,42,.8) 87.5%, rgba(21,21,23,1) 100%);
}
.app-icon__planet { position: absolute; left: 50%; top: 50%; width: 165px; height: auto; margin: -68px 0 0 -88px; }
.app-icon__text {
  position: absolute; left: 50%; bottom: 20px;
  transform: translateX(-50%) skewX(-6deg);
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 29px;
  letter-spacing: -1.2px;
  color: var(--signal);
  mix-blend-mode: screen;
  text-shadow: 0 0 12px rgba(203,255,60,.5);
}

.contact__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding: 0 40px 0 115px; }
.contact__title { max-width: 760px; }
.contact__lead { width: 394px; flex: 0 0 auto; padding-top: 42px; }

.form { width: 1070px; max-width: 100%; margin: 67px 0 0 115px; display: flex; flex-direction: column; gap: 24px; }
.form__row { display: flex; gap: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; flex: 1 1 0; min-width: 0; }
.field__label { padding-left: 10px; font-size: 14px; line-height: 24px; color: var(--bone); }
.field__label i { font-style: normal; color: var(--signal); }
.field__input {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--card);
  color: var(--bone);
  font-size: 16px; line-height: 24px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field__input::placeholder { color: rgba(255,255,255,.6); }
.field__input:focus { border-color: rgba(203,255,60,.6); box-shadow: 0 0 0 3px rgba(203,255,60,.12); }
.field__input.is-invalid { border-color: rgba(255,90,90,.7); }
.form__submit { flex: 1 1 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 40px; }
.form__note { font-size: 14px; line-height: 24px; color: var(--bone); }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__status { min-height: 24px; font-size: 14px; line-height: 24px; color: var(--muted-2); padding-left: 10px; }
.form__status.is-ok { color: var(--signal); }
.form__status.is-error { color: #ff7a7a; }
.btn.is-loading { pointer-events: none; opacity: .7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { margin-top: var(--section-gap); padding-bottom: 40px; }
.footer__card {
  padding: 50px 70px;
  border-radius: 32px;
  background: linear-gradient(164deg, rgba(23,23,23,.6) 0%, rgba(23,23,23,.3) 100%);
}
.footer__top { display: flex; justify-content: space-between; gap: 40px; min-height: 228px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__legal { max-width: 513px; font-size: 14px; line-height: 22px; color: var(--muted-2); }
.footer__nav { display: flex; gap: 66px; }
.footer__col { display: flex; flex-direction: column; gap: 20px; }
.footer__col a {
  font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: .5px; text-transform: uppercase;
  transition: color .2s;
}
.footer__col a:hover { color: var(--signal); }
.footer__col + .footer__col { margin-left: -26px; }
.footer__social { display: flex; gap: 15px; }
.footer__social a { transition: transform .2s, opacity .2s; }
.footer__social a:hover { transform: translateY(-2px); opacity: .85; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 14px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-size: 12px; line-height: 16px; color: var(--muted-2);
}
.footer__links { display: flex; gap: 16px; }
.footer__links a:hover { color: var(--bone); }

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Large desktops: keep 1300 container centred, let hero glow scale */
@media (min-width: 1600px) {
  .hero__bg { width: 100%; background-size: cover; }
}

/* Small desktop / large tablet (992–1199) */
@media (max-width: 1199px) {
  :root { --gutter: 40px; --section-gap: 96px; }
  .h2 { font-size: 44px; line-height: 52px; letter-spacing: -1.5px; }
  .nav { display: none; }
  .burger { display: block; }

  .hero { padding-top: 130px; min-height: 0; padding-bottom: 60px; }
  .hero__bg { left: 0; width: 100%; transform: none; height: 100%; background-position: 78% top; background-size: cover; opacity: .6; }
  .hero__inner { flex-direction: column; gap: 40px; }
  .hero__left { width: 100%; flex: 0 0 auto; }
  .hero__right { width: 100%; flex: 0 0 auto; flex-direction: row; align-items: stretch; }
  .hero__right > * { flex: 1 1 0; min-width: 0; }
  .nda { height: auto; }
  .hero__title { font-size: 64px; line-height: 68px; letter-spacing: -3px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-head__aside { width: 100%; max-width: 480px; padding-bottom: 0; }

  .pain__cards { flex-wrap: wrap; align-items: stretch; margin-top: 60px; }
  .pain-card { flex: 1 1 calc(50% - 13px); height: auto; min-height: 300px; gap: 24px; }
  .pain-card--hl { flex: 1 1 calc(50% - 13px); min-height: 340px; }
  .kpis { flex-wrap: wrap; }
  .kpi { flex: 1 1 calc(33% - 16px); }

  .services__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .services__title { margin-bottom: 40px; }
  .scard__inner { padding: 24px 20px 20px; }

  .results__planet { left: auto; right: -120px; top: -140px; width: 420px; }
  .results__planet img { width: 420px; }
  .results__title { max-width: 620px; margin-bottom: 40px; }
  .results__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .why { min-height: 0; }
  .why__dice { position: relative; top: auto; left: auto; width: 320px; height: 340px; margin: 24px 0 8px; }
  .why__list { width: 100%; margin: 24px 0 0; }

  .process__grid { margin-top: 40px; }
  .pcard__media { height: 220px; }
  .pcard__body { padding: 20px 24px 28px; }

  .faq__title { margin-bottom: 40px; }

  .contact { min-height: 0; padding-bottom: 20px; }
  .contact__arc { top: 60px; }
  .contact__head { flex-direction: column; gap: 20px; padding: 0; }
  .contact__lead { width: 100%; max-width: 480px; padding-top: 0; }
  .contact__inner { padding-top: 300px; }
  .app-icon { left: 20px; top: 20px; width: 200px; height: 200px; }
  .app-icon__planet { width: 140px; margin: -56px 0 0 -74px; }
  .app-icon__text { font-size: 25px; bottom: 16px; }
  .form { margin: 48px 0 0; width: 100%; }

  .footer__card { padding: 40px; }
  .footer__top { flex-direction: column; gap: 32px; min-height: 0; }
}

/* Tablet (768–991) */
@media (max-width: 991px) {
  .hero__right { flex-direction: column; }
  .hero__right > * { flex: 0 0 auto; }
  .pain-card__text, .pain-card__note { max-width: none; }
  .results__grid { grid-template-columns: 1fr; }
  .results__planet { right: -160px; top: -120px; width: 380px; }
  .process__grid { grid-template-columns: 1fr; }
}

/* Mobile (≤767) — based on the 390px Figma frame */
@media (max-width: 767px) {
  :root { --gutter: 16px; --section-gap: 80px; }
  .h2 { font-size: 28px; line-height: 38px; letter-spacing: -2px; }

  .header { height: 100px; }
  .header.is-scrolled { height: 72px; }
  .logo__text { font-size: 41.17px; letter-spacing: -1.87px; }
  .logo__planet { width: 45px; height: 30px; }

  .hero { padding-top: 132px; padding-bottom: 40px; }
  .hero__bg { left: 0; width: 100%; height: 1100px; top: -40px; transform: none; background: url("../img/hero-bg-mobile.jpg") 76% top / auto 100% no-repeat; opacity: .7; }
  .hero__inner { gap: 24px; }
  .hero__badge { gap: 8px; padding: 8px 14px; margin-bottom: 20px; }
  .hero__title { font-size: 40px; line-height: 48px; letter-spacing: -3px; margin-bottom: 20px; }
  .hero__tag-text { font-size: 16px; line-height: 30px; }
  .hero__tag-pill { padding: 6px 12px; font-size: 16px; line-height: 24px; }
  .hero__text { font-size: 14px; line-height: 24px; }
  .hero__actions { gap: 12px; margin-top: 24px; }
  .btn { height: 48px; padding: 0 16px; gap: 8px; font-size: 16px; }
  .btn--primary { min-width: 0; }
  .btn--ghost { height: 48px; padding: 0 14px; }
  .hero__right { gap: 16px; }

  .stats { padding: 24px 16px; gap: 16px; }
  .stats__row { gap: 8px; }
  .stats__big { font-size: 28px; line-height: 34px; }
  .stats__label { font-size: 13px; }
  .pill--border { font-size: 12px; padding: 4px 8px; }
  .stat { width: auto; padding: 0 6px; }
  .stat__num { font-size: 22px; }
  .stat__label { font-size: 12px; white-space: normal; }
  .nda { padding: 24px 16px; height: auto; gap: 16px; }
  .nda__head { white-space: normal; align-items: flex-start; }
  .nda__head { gap: 8px; }
  .nda__title { font-size: 15px; line-height: 22px; }
  .nda__sub { font-size: 11px; line-height: 16px; text-align: right; }

  .pain { margin-top: 24px; }
  .pain__cards { display: block; margin-top: 40px; }
  .pain-card + .pain-card { margin-top: 24px; }
  .pain-card { flex: 0 0 auto; height: auto; padding: 0; min-height: 0; gap: 20px; border-radius: 0; backdrop-filter: none; }
  .pain-card--hl { flex: 0 0 auto; height: auto; padding: 0; min-height: 0; display: block; }
  .pain-card__hl-inner { width: 100%; height: auto; aspect-ratio: 358 / 292; transform: none; border-radius: 24px; }
  .pain-card__hl-content { top: auto; bottom: 22px; left: 20px; width: min(253px, 80%); }
  .pain-card--hl .pain-card__title { font-size: 20px; }
  .kpis { flex-direction: column; gap: 16px; }
  .kpi { padding: 24px 16px; }

  .services__title { margin-bottom: 24px; }
  .services__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .scard { border-radius: 14px; }
  .scard__inner { padding: 12px; border-radius: 14px; gap: 4px; }
  .scard__icon { margin: 8px 8px 12px; }
  .scard__title { padding: 0 8px; font-size: 20px; line-height: 28px; }
  .scard__text { padding: 0 8px; font-size: 13px; line-height: 19px; min-height: 0; }
  .scard__foot { padding: 8px 8px 8px; font-size: 12px; white-space: nowrap; }
  .scard__foot img { width: 18px; height: 18px; }

  .results__planet { display: none; }
  .results__title { margin-bottom: 24px; }
  .results__grid { gap: 24px; }
  .rcard { padding: 24px 16px; }
  .rcard__title { font-size: 24px; }
  .rcard__metrics { gap: 12px 16px; }

  .why__dice { width: 244px; height: 244px; margin: 16px auto 8px; }
  .why__dice img { object-position: 12% center; }
  .why__dice::after { display: none; }
  .why__list { gap: 24px; margin-top: 24px; }
  .why-item { align-items: flex-start; gap: 16px; min-height: 0; }
  .why-item__icon { width: 48px; height: 48px; border-radius: 10px; }
  .why-item__icon::before { border-radius: 9px; }
  .orb { top: 12px; width: 24px; height: 24px; }
  .orb--a { left: 6px; }
  .orb--b { left: 18px; }
  .why-item__icon--purple .orb, .why-item__icon--blue .orb, .why-item__icon--green .orb, .why-item__icon--orange .orb { animation-name: none; }
  .why-item__title { font-size: 20px; line-height: 26px; }
  .why-item__text { font-size: 16px; line-height: 24px; }

  .process__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 32px; }
  .pcard__media { height: 152px; margin: 12px 12px 0; border-radius: 12px; }
  .pcard__body { padding: 16px 12px 20px; gap: 12px; }
  .pcard__head { flex-wrap: wrap; gap: 8px; }
  .pcard__title { font-size: 20px; line-height: 28px; }
  .pcard__text { font-size: 16px; line-height: 24px; }
  .pill--border { height: auto; }

  .faq__title { margin-bottom: 24px; }
  .faq__wrap { gap: 24px; }
  .faq__list { gap: 16px; }
  .faq-item__btn { padding: 20px 16px; }
  .faq-item__answer { padding: 0 16px; }
  .faq-item.is-open .faq-item__answer { padding-bottom: 20px; }
  .faq__cta { padding: 32px 16px; }
  .faq__cta-title { font-size: 24px; }

  .contact { margin-top: 64px; }
  .contact__arc { display: none; }
  .contact__fade { display: none; }
  .contact__inner { padding-top: 140px; }
  .app-icon { display: none; }
  .contact__head { gap: 16px; }
  .contact__lead { max-width: none; }
  .form { margin-top: 32px; gap: 20px; }
  .form__row { flex-direction: column; gap: 20px; }
  .field__input { padding: 16px 24px; }
  .form__submit { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 8px; }
  .form__note br { display: none; }

  .footer { margin-top: 40px; padding-bottom: 24px; }
  .footer__card { padding: 32px 16px; border-radius: 24px; }
  .footer__top { gap: 32px; }
  .logo--big .logo__text { font-size: 49.56px; }
  .footer__nav { gap: 40px; align-items: flex-start; }
  .footer__col + .footer__col { margin-left: 0; }
  .footer__social { margin-left: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 24px; padding-top: 24px; }
}

@media (max-width: 420px) {
  .hero__badge { font-size: 12px; padding: 8px 12px; gap: 6px; }
  .hero__title { font-size: 38px; letter-spacing: -2.5px; }
  .hero__actions .btn--ghost { padding: 0 14px; }
  .footer__nav { gap: 24px; }
}

/* ==========================================================================
   WordPress theme additions — navigation dropdowns, inner pages, articles
   ========================================================================== */

/* ---------- Header dropdowns ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__link .nav__chev { transition: transform .25s var(--ease-out); }
.nav__item.is-open > .nav__link .nav__chev, .nav__item:hover > .nav__link .nav__chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; left: 0; top: calc(100% - 4px); z-index: 70; min-width: 300px;
  padding-top: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility 0s .2s;
}
.nav__item:hover > .dropdown, .nav__item.is-open > .dropdown, .nav__item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: none; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.dropdown__inner {
  display: flex; flex-direction: column; gap: 2px; padding: 8px;
  background: rgba(13,13,22,.96); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.dropdown__item {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 10px 14px; border-radius: 10px; white-space: nowrap;
  font-weight: 500; font-size: 13px; line-height: 18px; letter-spacing: .5px; text-transform: uppercase; color: var(--bone);
  transition: background-color .15s, color .15s;
}
.dropdown__item small { font-weight: 400; font-size: 11px; line-height: 16px; text-transform: none; letter-spacing: 0; color: var(--muted-2); transition: color .15s; }
.dropdown__item:hover, .dropdown__item:focus-visible, .dropdown__item.is-active { background: var(--signal); color: #000; }
.dropdown__item:hover small, .dropdown__item.is-active small { color: rgba(0,0,0,.7); }
.dropdown__item--divider { position: relative; margin-top: 9px; }
.dropdown__item--divider::before { content: ""; position: absolute; left: 0; right: 0; top: -6px; height: 1px; background: var(--line); }
.nav__link.is-active { background: var(--signal); color: #000; }

/* mobile accordion */
.mobile-menu { overflow-y: auto; }
.mobile-menu__item { display: flex; flex-direction: column; }
.mobile-menu__toggle svg { transition: transform .25s var(--ease-out); }
.mobile-menu__item.is-open > .mobile-menu__toggle svg { transform: rotate(180deg); }
.mobile-menu__sub { display: none; flex-direction: column; gap: 4px; padding: 8px 0 8px 14px; }
.mobile-menu__item.is-open > .mobile-menu__sub { display: flex; }
.mobile-menu__sublink { padding: 8px 12px; border-radius: 10px; font-size: 15px; line-height: 22px; color: var(--soft); }
.mobile-menu__sublink:hover { background: rgba(255,255,255,.06); color: var(--bone); }

/* ---------- Inner hero ---------- */
.ihero { position: relative; padding: 283px 0 40px; overflow: hidden; }
.ihero__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; min-height: 428px; }
.ihero__left { width: 760px; max-width: 100%; flex: 0 1 760px; display: flex; flex-direction: column; gap: 24px; }
.ihero--no-art .ihero__left { flex-basis: 900px; width: 900px; }
.ihero__badge { align-self: flex-start; }
.ihero__title { font-weight: 600; font-size: 64px; line-height: 72px; letter-spacing: -3px; color: var(--bone); }
.ihero__intro { max-width: 720px; font-size: 18px; line-height: 28px; color: rgba(255,255,255,.8); }
.ihero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16.8px; padding-top: 8px; }
.ihero__art { position: relative; width: 500px; height: 500px; flex: 0 0 500px; margin-top: -40px; }
.ihero__glow { position: absolute; left: 50%; top: 50%; width: 580px; height: 300px; transform: translate(-50%,-40%); border-radius: 50%; background: var(--signal); opacity: .22; filter: blur(120px); pointer-events: none; }
.ihero__img { position: absolute; left: 50%; top: 50%; width: 540px; height: 540px; max-width: none; transform: translate(-50%,-50%); }
.ihero__art--screen .ihero__img, .ihero__art--mask .ihero__img { mix-blend-mode: screen; }
.ihero__art--mask .ihero__img { -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 45%, transparent 72%); mask-image: radial-gradient(circle at 50% 50%, #000 0 45%, transparent 72%); }
.ihero__art .float-slow { animation-name: floatArt; }
@keyframes floatArt { 0%, 100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%, calc(-50% - 12px)); } }

/* ---------- Sections rhythm ---------- */
.sections { display: flex; flex-direction: column; gap: var(--section-gap); padding-top: 60px; }
.sections > .section { margin: 0; }
@media (min-width: 1200px) { .section-head__aside { width: 394px; } }
.grid { display: grid; gap: 20px; margin-top: 60px; }
.grid--1 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.section-head + .grid, .section-head + .chips, .section-head + .nlist__row { margin-top: 60px; }
.sec-icons .section-head + .services__grid { margin-top: 60px; }

/* text cards (problems, insights) */
.tcard { display: flex; flex-direction: column; gap: 8px; padding: 32px; border-radius: 24px; background: rgba(25,25,25,.6); border: 1px solid transparent; transition: border-color .25s, transform .25s var(--ease-out); }
.tcard__label { font-size: 12px; line-height: 16px; color: var(--muted); }
.tcard__title { font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.5px; color: var(--bone); }
.grid--3 .tcard__title, .grid--4 .tcard__title { font-size: 20px; line-height: 28px; }
.tcard__text { font-size: 16px; line-height: 24px; color: var(--muted-2); }
.tcard--link:hover { border-color: rgba(203,255,60,.35); transform: translateY(-3px); }
.tcard__more, .tile__more, .case__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px; font-size: 14px; line-height: 20px; color: var(--soft); }
.tcard--link:hover .tcard__more, .tile--link:hover .tile__more, .case:hover .case__more { color: var(--signal); }

/* tiles with tag (steps / plans / jobs) */
.tile { display: flex; flex-direction: column; gap: 16px; padding: 28px 28px 32px; border-radius: 16px; background: #0d0d0d; border: 1px solid transparent; transition: border-color .25s, transform .25s var(--ease-out); }
.tile .pill--border { align-self: flex-start; }
.tile__title { font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.6px; color: var(--bone); }
.grid--4 .tile__title, .grid--5 .tile__title { font-size: 20px; line-height: 28px; }
.tile__text { font-size: 16px; line-height: 24px; color: var(--muted-2); }
.tile--link:hover { border-color: rgba(203,255,60,.35); transform: translateY(-3px); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-weight: 500; font-size: 15px; line-height: 22px; color: rgba(255,255,255,.9); transition: background-color .2s, color .2s, border-color .2s; }
.chip--link:hover { background: var(--signal); color: #000; border-color: var(--signal); }

/* prose */
.sec-prose__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 80px; }
.sec-prose__title { max-width: 560px; flex: 0 1 560px; }
.sec-prose__body { width: 640px; max-width: 100%; flex: 0 1 640px; display: flex; flex-direction: column; gap: 20px; }
.sec-prose__body p { font-size: 18px; line-height: 28px; color: rgba(255,255,255,.8); }

/* highlight */
.hl { display: flex; align-items: flex-start; gap: 40px; padding: 40px 48px; border-radius: 24px; background: var(--card); border: 1px solid var(--line); }
.hl__left { width: 360px; flex: 0 0 360px; display: flex; flex-direction: column; gap: 12px; }
.hl__label { font-weight: 500; font-size: 13px; line-height: 16px; letter-spacing: .5px; text-transform: uppercase; color: var(--signal); }
.hl__title { font-weight: 300; font-size: 32px; line-height: 40px; letter-spacing: -1px; color: var(--bone); }
.hl__right { display: flex; align-items: flex-start; gap: 16px; flex: 1 1 auto; }
.hl__line { flex: 0 0 1px; width: 1px; min-height: 80px; align-self: stretch; background: linear-gradient(180deg, rgba(203,255,60,.2), var(--signal) 50%, rgba(203,255,60,.2)); }
.hl__text { font-size: 18px; line-height: 28px; color: rgba(255,255,255,.85); }

/* cta box */
.ctabox { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 40px 32px; border-radius: 16px; border: 1px solid var(--line); text-align: center; background: linear-gradient(135deg, rgba(23,23,23,.6), rgba(23,23,23,.3)); }
.ctabox__title { font-weight: 500; font-size: 32px; line-height: 42px; letter-spacing: -.5px; color: var(--bone); max-width: 900px; }
.ctabox__text { max-width: 760px; font-size: 16px; line-height: 24px; color: var(--muted-2); }
.ctabox__btn { margin-top: 16px; min-width: 280px; }

/* numbered list */
.nlist__row { display: flex; gap: 60px; align-items: flex-start; }
.nlist__art { flex: 0 0 420px; width: 420px; }
.nlist__art img { mix-blend-mode: screen; }
.nlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; flex: 1 1 auto; }
.nlist__item { display: flex; gap: 20px; align-items: flex-start; }
.nlist__num { flex: 0 0 56px; width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; border: 1px solid var(--line); background: linear-gradient(180deg, #0a0a0a, rgba(24,24,27,.5)); font-family: var(--font-num); font-weight: 500; font-size: 16px; color: var(--signal); }
.nlist__title { font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: -.5px; color: var(--bone); padding-top: 14px; }
.nlist__text { font-size: 16px; line-height: 24px; color: var(--muted-2); margin-top: 6px; }

/* stats strip */
.stats-strip { display: flex; gap: 16px; }
.stat-box { flex: 1 1 0; display: flex; flex-direction: column; gap: 4px; padding: 32px; border-radius: 24px; background: rgba(25,25,25,.6); }
.stat-box__value { font-weight: 600; font-size: 40px; line-height: 48px; letter-spacing: -1.5px; color: var(--signal); }
.stat-box__label { font-weight: 500; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* team */
.person { display: flex; flex-direction: column; gap: 6px; }
.person__photo { aspect-ratio: 1; border-radius: 20px; background: rgba(25,25,25,.6); border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--muted); font-size: 14px; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__name { font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: -.5px; color: var(--bone); }
.person__role { font-size: 13px; line-height: 18px; text-transform: uppercase; letter-spacing: .5px; color: var(--signal); }
.person__bio { font-size: 15px; line-height: 22px; color: var(--muted-2); }

/* case cards */
.case { display: flex; flex-direction: column; gap: 11px; padding: 32px; border-radius: 24px; background: rgba(9,9,11,.9); border: 1px solid rgba(255,255,255,.05); transition: border-color .25s, transform .25s var(--ease-out); }
.case:hover { border-color: rgba(203,255,60,.35); transform: translateY(-3px); }
.case__title { font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.6px; color: var(--bone); }
.case__tags { align-self: flex-start; }
.case__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 12px 0; }
.case__metrics dt { font-size: 12px; line-height: 16px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.case__metrics dd { font-weight: 500; font-size: 18px; line-height: 28px; color: #e4e4e7; }
.case__note { padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.05); background: linear-gradient(180deg, #18181b, #09090b); }
.case__note p { font-weight: 500; font-size: 14px; line-height: 20px; color: var(--bone); }

/* inner form */
.form--inner { width: 100%; margin: 0; }
.form__submit--inner { justify-content: flex-start; gap: 32px; padding-top: 16px; }
.chipselect { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; border-radius: 16px; background: var(--card); border: 1px solid rgba(255,255,255,.12); min-height: 74px; transition: border-color .2s; }
.chipselect.is-invalid { border-color: rgba(255,90,90,.7); }
.chipselect__chip { padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); font-weight: 500; font-size: 14px; line-height: 20px; color: var(--bone); transition: background-color .15s, color .15s, border-color .15s; }
.chipselect__chip:hover { border-color: rgba(203,255,60,.5); }
.chipselect__chip.is-on { background: var(--signal); border-color: var(--signal); color: #0b0c0f; }

/* article body (insights / cases / jobs) */
.sec-article .container { max-width: 860px; }
.article { display: flex; flex-direction: column; gap: 20px; font-size: 18px; line-height: 30px; color: rgba(255,255,255,.85); }
.article h2 { font-weight: 300; font-size: 36px; line-height: 44px; letter-spacing: -1.2px; color: var(--bone); margin-top: 24px; }
.article h3 { font-weight: 500; font-size: 24px; line-height: 32px; letter-spacing: -.5px; color: var(--bone); margin-top: 12px; }
.article p, .article ul, .article ol { margin: 0; }
.article ul, .article ol { padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.article a { color: var(--signal); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote { margin: 0; padding: 20px 28px; border-left: 2px solid var(--signal); background: var(--card); border-radius: 0 16px 16px 0; font-size: 20px; line-height: 32px; }
.article img { border-radius: 16px; }
.article figure { margin: 0; }
.article__foot { margin-top: 40px; }
.prose-plain { color: rgba(255,255,255,.85); font-size: 18px; line-height: 30px; }
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--bone); }
.pagination .page-numbers.current { background: var(--signal); color: #000; border-color: var(--signal); }

/* on inner pages, the footer follows the last section */
.is-inner .footer { margin-top: var(--section-gap); }

/* ---------- Responsive: inner pages ---------- */
@media (max-width: 1199px) {
  .ihero { padding-top: 200px; }
  .ihero__inner { flex-direction: column; min-height: 0; gap: 8px; }
  .ihero__left { width: 100%; flex: 0 0 auto; }
  .ihero__title { font-size: 56px; line-height: 62px; }
  .ihero__art { width: 100%; height: 360px; flex: 0 0 auto; margin: 0; }
  .ihero__img { width: 420px; height: 420px; }
  .sections { padding-top: 24px; }
  .grid--4, .grid--5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-head + .grid, .section-head + .chips, .section-head + .nlist__row, .sec-icons .section-head + .services__grid { margin-top: 40px; }
  .sec-prose__row { flex-direction: column; gap: 24px; }
  .sec-prose__title, .sec-prose__body { width: 100%; flex: 0 0 auto; max-width: 760px; }
  .hl { flex-direction: column; gap: 24px; padding: 32px; }
  .hl__left { width: 100%; flex: 0 0 auto; }
  .nlist__row { flex-direction: column; gap: 32px; }
  .nlist__art { width: 320px; flex: 0 0 auto; }
  .stats-strip { flex-wrap: wrap; }
  .stat-box { flex: 1 1 calc(50% - 8px); }
  .form__submit--inner { flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .ihero { padding-top: 132px; padding-bottom: 8px; }
  .ihero__left { gap: 16px; }
  .ihero__title { font-size: 38px; line-height: 44px; letter-spacing: -2px; }
  .ihero__intro { font-size: 16px; line-height: 26px; }
  .ihero__actions { gap: 12px; }
  .ihero__art { height: 280px; }
  .ihero__img { width: 300px; height: 300px; }
  .ihero__glow { width: 300px; height: 200px; }
  .grid, .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; gap: 16px; }
  .tcard, .tile, .case { padding: 24px 20px; }
  .tcard__title, .tile__title, .case__title { font-size: 20px; line-height: 28px; }
  .hl { padding: 24px 20px; gap: 16px; }
  .hl__title { font-size: 26px; line-height: 34px; }
  .hl__text { font-size: 16px; line-height: 26px; }
  .ctabox { padding: 32px 20px; }
  .ctabox__title { font-size: 24px; line-height: 32px; }
  .ctabox__btn { min-width: 0; width: 100%; }
  .stat-box { flex: 1 1 100%; padding: 24px 20px; }
  .stat-box__value { font-size: 32px; line-height: 40px; }
  .nlist__art { width: 220px; }
  .nlist__item { gap: 14px; }
  .nlist__num { flex-basis: 44px; width: 44px; height: 44px; }
  .nlist__title { padding-top: 8px; font-size: 18px; line-height: 26px; }
  .chip { font-size: 14px; padding: 8px 14px; }
  .article { font-size: 16px; line-height: 27px; }
  .article h2 { font-size: 28px; line-height: 36px; }
  .form__submit--inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form__submit--inner .btn { width: 100%; }
}

/* v1.1 — home result cards link to case studies */
a.rcard { display: flex; flex-direction: column; color: inherit; transition: transform .25s var(--ease-out), border-color .25s; }
a.rcard:hover { transform: translateY(-4px); }
.rcard__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; line-height: 20px; color: var(--soft); }
a.rcard:hover .rcard__more { color: var(--signal); }
.pain-card__text--dark { color: rgba(11,12,15,.8); font-size: 14px; line-height: 20px; max-width: 253px; }
.pain-card__hl-content { top: auto; bottom: 24px; }
.pain-card__hl-content .pain-card__title, .pain-card__hl-content .pain-card__text, .pain-card__hl-content .pain-card__note { text-shadow: 0 0 14px rgba(255,255,255,.95), 0 0 4px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.8); }
.pain-card--hl .pain-card__title { font-size: 20px; line-height: 24px; }
