/* ─── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --bg:        #09090b;
  --bg-1:      rgba(12, 17, 32, 0.94);
  --bg-2:      rgba(15, 20, 42, 0.68);
  --border:    rgba(148, 163, 184, 0.11);
  --border-hi: rgba(45, 212, 191, 0.36);
  --text:      #edf2f7;
  --text-2:    rgba(226, 232, 240, 0.64);
  --text-3:    rgba(226, 232, 240, 0.38);
  --emerald:   #34d399;
  --teal:      #2dd4bf;
  --violet:    #8b5cf6;
  --amber:     #f59e0b;
  --blue:      #60a5fa;
  --grad:      linear-gradient(135deg, #34d399, #2dd4bf 50%, #60a5fa);
  --shadow:    0 24px 80px rgba(0,0,0,.45);
  --r-xl:      32px;
  --r-lg:      24px;
  --r-md:      18px;
  --r-pill:    999px;
  --t-fast:    160ms ease;
  --t-med:     280ms cubic-bezier(.22,1,.36,1);
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { margin: 0; background: var(--bg); color: var(--text);
        font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
        line-height: 1.5; -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility; overflow-x: clip; }
h1,h2,h3,h4,p,blockquote,cite,ul { margin: 0; }
ul { padding: 0; list-style: none; }
img,svg,canvas { display: block; }
button,input,textarea,select { font: inherit; }
button { border: 0; cursor: pointer; background: none; }
a { color: inherit; text-decoration: none; }

/* ─── SKIP LINK ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: 16px; top: 16px; z-index: 200;
  padding: .7rem 1rem; border-radius: var(--r-pill);
  background: #fff; color: #09090b;
  transform: translateY(-200%); transition: transform var(--t-fast);
}
.skip-link:focus { transform: translateY(0); }

/* ─── CURSOR ──────────────────────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label { cursor: none; }
  .cursor { position: fixed; top: 0; left: 0; z-index: 999;
            pointer-events: none; }
  .cursor__dot {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: var(--teal); transform: translate(-50%,-50%);
    transition: width .12s, height .12s, background .12s;
  }
  .cursor__ring {
    position: absolute; width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(45,212,191,.5);
    transform: translate(-50%,-50%);
    transition: width .25s var(--t-med), height .25s var(--t-med),
                border-color .25s, transform .05s linear;
  }
  .cursor--hover .cursor__ring { width: 54px; height: 54px; border-color: var(--teal); }
  .cursor--hover .cursor__dot  { width: 5px; height: 5px; }
}

/* ─── SCROLL PROGRESS ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0%;
  background: var(--grad);
  transition: width .08s linear;
}

/* ─── BACKGROUNDS ─────────────────────────────────────────────────────── */
#ambient-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .7;
}
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .055;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  mix-blend-mode: soft-light;
}

/* ─── GLASS PANEL ─────────────────────────────────────────────────────── */
.glass-panel {
  background: linear-gradient(160deg, rgba(14,20,40,.88), rgba(10,14,28,.78));
  border: 1px solid var(--border);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  border-radius: var(--r-xl);
}

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 18px; z-index: 100;
  padding: 0 16px; pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(1180px, 100%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 13px 18px;
  background: linear-gradient(160deg, rgba(14,20,40,.92), rgba(10,14,28,.88));
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 8px 48px rgba(0,0,0,.38);
  transition: transform .3s var(--t-med), opacity .3s ease;
}
.nav.nav--hidden { transform: translateY(-110%); opacity: 0; }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.nav__brand-logo-full {
  width: clamp(142px, 18vw, 210px);
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 5px 8px;
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 6px 18px rgba(0,0,0,.24);
  object-fit: contain;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav__mark   { font-size: .92rem; font-weight: 800; letter-spacing: .28em; }
.nav__sub    { font-size: .7rem; color: var(--text-3); letter-spacing: .04em; }

.nav__list { display: flex; gap: 1.4rem; }
.nav__list a {
  font-size: .9rem; color: var(--text-2); position: relative;
  transition: color var(--t-fast);
}
.nav__list a::after {
  content: ''; position: absolute; bottom: -.3rem; left: 0;
  width: 100%; height: 1px;
  background: var(--grad); transform: scaleX(0);
  transform-origin: left; transition: transform var(--t-fast);
}
.nav__list a:hover, .nav__list a:focus-visible { color: var(--text); }
.nav__list a:hover::after, .nav__list a:focus-visible::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(9,9,11,.44);
  padding: 10px 9px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  pointer-events: auto;
  width: min(1180px, 100%);
  margin: 10px auto 0;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(14,20,40,.96), rgba(10,14,28,.92));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 42px rgba(0,0,0,.34);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(6,9,18,.28), rgba(6,9,18,.74));
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.nav-mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  padding: .8rem .95rem;
  border-radius: 12px;
  color: var(--text-2);
  font-size: .95rem;
  border: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  color: var(--text);
  border-color: var(--border-hi);
  background: rgba(45,212,191,.08);
}

.nav-mobile .btn {
  margin-top: 8px;
  width: 100%;
}

.nav-mobile.is-open { display: grid; gap: 6px; }

body.mobile-menu-open { overflow: hidden; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 46px; padding: .8rem 1.25rem;
  border-radius: var(--r-pill); font-weight: 700;
  letter-spacing: .01em; white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  position: relative;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad); color: #04111a;
  box-shadow: 0 12px 40px rgba(45,212,191,.22);
}
.btn--primary:hover { box-shadow: 0 16px 52px rgba(45,212,191,.36); }

.btn--outline {
  border: 1px solid var(--border-hi); color: var(--text);
  background: rgba(14,20,40,.34);
}
.btn--outline:hover { border-color: var(--teal); background: rgba(45,212,191,.06); }

.btn--glow::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(52,211,153,.3), rgba(45,212,191,.2), rgba(139,92,246,.28));
  filter: blur(14px); opacity: 0; z-index: -1;
  transition: opacity var(--t-med);
}
.btn--glow:hover::before, .btn--glow:focus-visible::before { opacity: 1; }

.btn--sm  { min-height: 38px; padding: .6rem 1rem; font-size: .88rem; }
.btn--lg  { min-height: 52px; padding: .95rem 1.5rem; font-size: 1.04rem; }

/* ─── LAYOUT ──────────────────────────────────────────────────────────── */
.hero, .section, .footer { position: relative; z-index: 2; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

/* ─── KICKER ──────────────────────────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.kicker__dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 24px; padding: 26px 0 0;
}

.hero__content {
  grid-column: 1; grid-row: 1;
  display: grid; gap: 20px; align-content: center;
  padding-bottom: 8px;
}

.hero__logo {
  width: clamp(190px, 42vw, 320px);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.34);
  background: #fff;
  padding: 10px;
}

h1 {
  display: grid; gap: .1em;
  font-size: clamp(3.6rem, 7.5vw, 8rem);
  line-height: .92; letter-spacing: -.06em;
}
.h1-line { font-weight: 800; }
.h1-em {
  font-style: italic; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.07em;
}

.hero__sub {
  max-width: 56ch; color: var(--text-2);
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.65;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__visual {
  grid-column: 2; grid-row: 1;
  position: relative; min-height: 640px;
  border-radius: 36px;
  border: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(160deg, rgba(12,18,38,.96), rgba(8,12,26,.98));
  overflow: hidden; isolation: isolate;
}
.hero__orb {
  position: absolute; border-radius: 50%; mix-blend-mode: screen;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
}
.hero__orb--a { inset: 10% auto auto 10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(52,211,153,.7), transparent 68%);
  filter: blur(20px); }
.hero__orb--b { right: 8%; top: 16%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(45,212,191,.65), transparent 68%);
  filter: blur(16px); animation-delay: -7s; }
.hero__orb--c { left: 25%; bottom: 10%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,.55), transparent 68%);
  filter: blur(22px); animation-delay: -12s; }

.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, black 20%, transparent 70%);
}

.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: .55rem .9rem; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 600; color: var(--text-2);
  background: rgba(12,18,38,.82); border: 1px solid var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  animation: chipFloat 6s ease-in-out infinite;
}
.hero__chip--1 { left: 18px; top: 22%; animation-delay: 0s; }
.hero__chip--2 { right: 18px; top: 44%; animation-delay: -2.5s; }
.hero__chip--3 { left: 50%; bottom: 20%; transform: translateX(-50%); animation-delay: -4.8s; }

.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.chip-dot--green  { background: var(--emerald); box-shadow: 0 0 6px var(--emerald); }
.chip-dot--violet { background: var(--violet);  box-shadow: 0 0 6px var(--violet); }

/* stats bar */
.hero__stats {
  grid-column: 1 / -1; grid-row: 2;
  display: flex; align-items: center; gap: 0;
  padding: 22px 28px;
  background: linear-gradient(160deg, rgba(14,20,40,.86), rgba(10,14,28,.76));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.stat { flex: 1; padding: 4px 20px; }
.stat__num {
  display: block; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -.05em; line-height: 1;
  margin-bottom: 4px;
}
.stat__label { font-size: .88rem; color: var(--text-2); }
.stat__div { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ─── SECTION HEAD ────────────────────────────────────────────────────── */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  line-height: 1.02; letter-spacing: -.05em; font-weight: 800;
}
.section-lead { max-width: 50ch; color: var(--text-2); font-size: .98rem; line-height: 1.7; }

/* ─── BENTO GRID ──────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 230px 280px;
  gap: 14px;
}
/* Layout */
.bc--hero     { grid-column: 1 / 8;  grid-row: 1 / 3; }
.bc--tech     { grid-column: 8 / 13; grid-row: 1 / 2; }
.bc--finance  { grid-column: 8 / 13; grid-row: 2 / 3; }
.bc--quote    { grid-column: 1 / 5;  grid-row: 3 / 4; }
.bc--creative { grid-column: 5 / 13; grid-row: 3 / 4; }

/* ─── BENTO CARD BASE ─────────────────────────────────────────────────── */
.bento-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(14,20,40,.96), rgba(10,14,28,.98));
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.bento-card:hover {
  border-color: rgba(45,212,191,.38);
  box-shadow: 0 28px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(45,212,191,.08) inset;
}

/* Tilt: JS sets --rx / --ry on mousemove */
.tilt-card {
  transform: perspective(1100px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transform-style: preserve-3d;
}
.tilt-shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 4; border-radius: inherit;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%),
    rgba(255,255,255,.07), transparent 55%);
  opacity: 0; transition: opacity .2s;
}
.bento-card:hover .tilt-shine { opacity: 1; }

/* Card body */
.bc-body {
  position: relative; z-index: 2;
  height: 100%; padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 14px;
}
.bc-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(45,212,191,.14), rgba(139,92,246,.1));
  border: 1px solid rgba(148,163,184,.18);
  flex-shrink: 0;
}
.bc-icon svg { width: 22px; height: 22px; color: var(--teal); }
.bento-card h3 { font-size: 1.25rem; line-height: 1.2; font-weight: 700; }
.bento-card p  { color: var(--text-2); font-size: .95rem; line-height: 1.6; }

/* Tags */
.bc-tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto;
}
.bc-tags li {
  padding: .3rem .7rem; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 600; color: var(--text-3);
  background: rgba(148,163,184,.08); border: 1px solid var(--border);
}

/* Colored glow overlays per card */
.bc-glow {
  position: absolute; border-radius: inherit;
  pointer-events: none; z-index: 1;
}
.bc-glow--green  { inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(52,211,153,.2), transparent 55%); }
.bc-glow--blue   { inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(96,165,250,.18), transparent 55%); }
.bc-glow--teal   { inset: 0; background: radial-gradient(ellipse at 80% 80%, rgba(45,212,191,.18), transparent 50%); }
.bc-glow--amber  { inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.2), transparent 55%),
                              radial-gradient(ellipse at 80% 20%, rgba(239,68,68,.1), transparent 45%); }

/* Quote card */
.bc--quote {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; gap: 12px;
  background: linear-gradient(145deg, rgba(10,14,28,.98), rgba(8,11,24,.99));
}
.bc-quote-mark {
  position: absolute; top: 14px; left: 20px;
  font-size: 7rem; line-height: 1; color: rgba(45,212,191,.1);
  font-style: italic; pointer-events: none; select: none;
}
.bc--quote blockquote {
  font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.5;
  font-style: italic; font-weight: 600; color: var(--text);
}
.bc--quote cite { font-size: .8rem; color: var(--text-3); font-style: normal; }

/* ─── RULE DIVIDER ────────────────────────────────────────────────────── */
.rule {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 32px)); margin: 20px auto;
  display: flex; align-items: center; gap: 14px;
}
.rule span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.rule i {
  width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--teal);
  background: rgba(45,212,191,.18); flex-shrink: 0; display: block;
}

/* ─── FRAMEWORK ───────────────────────────────────────────────────────── */
.fw-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 36px 28px;
  background: linear-gradient(160deg, rgba(14,20,40,.88), rgba(10,14,28,.78));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.fw-step {
  padding: 4px 28px 4px 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.fw-step--last { border-right: none; }
.fw-step:not(.fw-step--last) { padding-right: 28px; }
.fw-step:not(:first-child)   { padding-left: 28px; padding-right: 0; border-right: none; }
.fw-step:nth-child(n+2):not(.fw-step--last) { border-right: 1px solid var(--border); padding-right: 28px; }

.fw-step__num {
  font-size: .72rem; letter-spacing: .2em;
  color: var(--teal); font-weight: 700;
  margin-bottom: 20px;
}
.fw-step__bar {
  display: none; /* connector visible in horizontal layout via border-right */
}
.fw-steps h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.fw-steps p  { color: var(--text-2); font-size: .93rem; line-height: 1.6; }

/* ─── ROI WIDGET ──────────────────────────────────────────────────────── */
.roi {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 28px; padding: 32px;
}
.roi__sliders { display: flex; flex-direction: column; gap: 22px; justify-content: center; }
.slider-label { display: grid; gap: 10px; font-weight: 600; color: var(--text-2); font-size: .93rem; }
.slider-row { display: flex; align-items: center; gap: 14px; }

input[type="range"] {
  flex: 1; appearance: none; height: 6px; border-radius: var(--r-pill); outline: none;
  background: linear-gradient(90deg, rgba(52,211,153,.2), rgba(45,212,191,.28), rgba(139,92,246,.2));
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--text); border: 3px solid var(--teal);
  box-shadow: 0 6px 20px rgba(45,212,191,.3); cursor: pointer;
}
output {
  min-width: 24px; text-align: center; font-weight: 700;
  font-size: .9rem; color: var(--teal);
}

.roi__result { display: flex; align-items: center; gap: 24px; }

/* SVG ring */
.roi-ring-wrap { position: relative; width: 220px; flex-shrink: 0; }
.roi-ring-svg  { width: 220px; height: 220px; transform: rotate(-90deg); }
.roi-ring__bg {
  fill: none; stroke: rgba(148,163,184,.1); stroke-width: 14;
}
.roi-ring__fg {
  fill: none; stroke: url(#ringGrad); stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 515 515;
  stroke-dashoffset: 31; /* ~94/100 filled */
  transition: stroke-dashoffset .6s cubic-bezier(.22,1,.36,1);
}
.roi-ring-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
}
.roi-ring-inner span { font-size: 2.6rem; font-weight: 900; letter-spacing: -.06em; }
.roi-ring-inner small { color: var(--text-2); font-size: .8rem; }

.roi-metrics { flex: 1; display: grid; gap: 12px; }
.roi-metric {
  padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(9,9,11,.42); border: 1px solid var(--border);
}
.roi-metric span  { display: block; font-size: .75rem; letter-spacing: .16em;
                    text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.roi-metric strong { font-size: 1rem; font-weight: 700; }

/* ─── ABOUT ───────────────────────────────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about__left { display: grid; gap: 20px; }
.about__left h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.about__right { display: grid; gap: 20px; }
.about__quote {
  font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6;
  font-weight: 600; color: var(--text);
  border-left: 2px solid var(--teal); padding-left: 20px;
}
.about__right p { color: var(--text-2); line-height: 1.7; }

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
.contact-box {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 48px; padding: 36px 40px;
}
.contact-box__intro { display: grid; gap: 18px; align-content: start; }
.contact-box__intro h2 { font-size: clamp(2rem, 2.8vw, 3rem); }
.contact-box__intro p  { color: var(--text-2); line-height: 1.7; }

.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label { display: grid; gap: 8px; font-size: .88rem; color: var(--text-2); font-weight: 600; }

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%; padding: .85rem 1rem;
  border-radius: var(--r-md); outline: none;
  border: 1px solid var(--border);
  background: rgba(9,9,11,.52); color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input::placeholder, textarea::placeholder { color: rgba(226,232,240,.28); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(45,212,191,.48);
  box-shadow: 0 0 0 3px rgba(45,212,191,.1);
}
textarea { resize: vertical; min-height: 150px; }

.form-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.form-footer span { font-size: .82rem; color: var(--text-3); }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  margin-top: 24px; padding: 28px 16px;
}
.footer__inner {
  width: min(1180px, 100%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer__brand { display: grid; gap: 3px; }
.footer__brand strong { font-size: .88rem; letter-spacing: .22em; font-weight: 800; }
.footer__brand span   { font-size: .78rem; color: var(--text-3); }
.footer__nav { display: flex; gap: 1.4rem; }
.footer__nav a { font-size: .88rem; color: var(--text-2); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--text); }
.footer__end { display: flex; gap: 1.2rem; align-items: center; }
.footer__end span { font-size: .82rem; color: var(--text-3); }
.footer__end a    { font-size: .82rem; color: var(--text-2); transition: color var(--t-fast); }
.footer__end a:hover { color: var(--teal); }

/* ─── REVEALS ─────────────────────────────────────────────────────────── */
.will-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.22,1,.36,1);
}
.revealed { opacity: 1 !important; transform: none !important; }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(0,-16px,0) scale(1.04); }
}
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hero__chip--3 { animation-name: chipFloatCenter; }
@keyframes chipFloatCenter {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-7px); }
}
/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { grid-column: 1; min-height: 480px; }
  .hero__stats  { grid-column: 1; }
  .about        { grid-template-columns: 1fr; gap: 28px; }
  .contact-box  { grid-template-columns: 1fr; gap: 32px; }
  .roi          { grid-template-columns: 1fr; }
  .roi__result  { justify-content: center; flex-wrap: wrap; }
  .section-head { flex-direction: column; align-items: start; gap: 12px; }
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  .bc--hero     { grid-column: 1 / 7; grid-row: auto; }
  .bc--tech     { grid-column: 1 / 4; }
  .bc--finance  { grid-column: 4 / 7; }
  .bc--quote    { grid-column: 1 / 7; }
  .bc--creative { grid-column: 1 / 7; }
  .fw-steps     { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
  .fw-step      { border-right: none !important; padding: 0 !important; }
}

@media (max-width: 768px) {
  .nav-wrap { top: 10px; }
  .nav { padding: 10px 12px; gap: 10px; }
  .nav__list, .nav__sub, .nav > .btn { display: none; }
  .nav__brand-logo-full {
    width: min(54vw, 190px);
    padding: 4px 6px;
    border-radius: 8px;
  }
  .nav__toggle { display: inline-flex; }
  .nav-mobile {
    display: grid;
    margin: 8px auto 0;
    padding: 0 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transition:
      max-height .34s cubic-bezier(.22,1,.36,1),
      padding .34s cubic-bezier(.22,1,.36,1),
      opacity .24s ease,
      transform .34s cubic-bezier(.22,1,.36,1);
  }
  .nav-mobile a {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity .22s ease, transform .3s cubic-bezier(.22,1,.36,1);
  }
  .nav-mobile.is-open {
    max-height: 420px;
    opacity: 1;
    padding: 14px;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-mobile.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .hero { width: calc(100% - 24px); gap: 14px; padding-top: 16px; }
  .hero__content { gap: 14px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .hero__sub { line-height: 1.55; }
  .hero__visual { min-height: 380px; }
  .hero__chip { font-size: .74rem; padding: .46rem .72rem; }
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bc--hero,.bc--tech,.bc--finance,.bc--quote,.bc--creative { grid-column: 1; }
  .fw-steps { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: stretch; gap: 12px; }
  .stat__div   { width: 100%; height: 1px; }
  .stat        { padding: 4px 0; }
  .form-row    { grid-template-columns: 1fr; }
  .contact-box { padding: 24px 20px; }
  .roi-ring-wrap { width: 180px; }
  .roi-ring-svg  { width: 180px; height: 180px; }
}

@media (max-width: 520px) {
  .section { width: calc(100% - 24px); padding-top: 20px; }
  .hero__logo {
    width: min(100%, 260px);
    margin-inline: auto;
  }
  .hero__ctas .btn { width: 100%; }
  .hero__visual { min-height: 320px; }
  .hero__chip--2 { right: 10px; }
  .hero__chip--1 { left: 10px; }
  .hero__chip--3 { bottom: 12%; }
  h2 { font-size: 1.85rem; }
  .fw-steps { padding: 18px 16px; }
  .roi { padding: 20px 18px; }
  .roi__sliders { gap: 16px; }
  .roi__result { gap: 14px; }
  .kicker { letter-spacing: .14em; }
  .form-footer .btn { width: 100%; }
  .footer__nav { flex-wrap: wrap; gap: .8rem; }
}
