/* ============================================================
   FITE — style.css
   Palette: paper #F7F5F1 · ink #121110 · fite red #E8190C
   Type: Archivo (display) · Inter (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --ink: #121110;
  --ink-2: #3d3a36;
  --muted: #6f6a63;
  --line: rgba(18, 17, 16, 0.12);
  --red: #e8190c;
  --red-dark: #c21207;
  --white: #fffdf9;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 20px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

/* thin custom scrollbar, red when grabbed */
html { scrollbar-width: thin; scrollbar-color: rgba(18, 17, 16, 0.3) transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(18, 17, 16, 0.26);
  border-radius: 999px;
  border: 3px solid var(--paper);
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active { background: var(--red); }

/* keyboard focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

/* anchor links land clear of the fixed nav */
section[id] { scroll-margin-top: 84px; }

/* brand-red full stop on headlines */
.dot { color: var(--red); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

img, svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
body.is-loading { overflow: hidden; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(760px 540px at 18% 16%, rgba(232, 25, 12, 0.16), transparent 62%),
    radial-gradient(680px 520px at 84% 80%, rgba(232, 25, 12, 0.12), transparent 62%),
    radial-gradient(500px 380px at 55% 45%, rgba(255, 255, 255, 0.9), transparent 70%),
    #fbfaf7;
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader.is-done { transform: translateY(-100%); }

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.loader.is-finishing .loader__inner {
  opacity: 0;
  transform: scale(0.92);
}

.loader__mark {
  width: 96px;
  height: 96px;
  border-radius: 24%;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(232, 25, 12, 0.55);
  animation: loader-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loader__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@keyframes loader-pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.loader__bar {
  width: 216px;
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 17, 16, 0.08);
  box-shadow: inset 0 1px 3px rgba(18, 17, 16, 0.14);
  overflow: hidden;
}
.loader__fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff4436, var(--red));
  box-shadow: 0 0 14px rgba(232, 25, 12, 0.65);
  transition: width 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 17px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }

.btn--dark {
  color: #fff;
  background:
    radial-gradient(120% 160% at 50% -30%, #4d4d4d 0%, #2b2b2b 48%, #171717 100%);
  border: 1px solid #0b0b0b;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.28),
    inset 0 -5px 10px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 14px 30px -10px rgba(11, 11, 11, 0.45);
}
.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.32),
    inset 0 -5px 10px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 38px -12px rgba(11, 11, 11, 0.5);
}
.btn--dark:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.55),
    0 8px 18px -10px rgba(11, 11, 11, 0.45);
}

.btn--ghost {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f6f4f0 100%);
  border: none;
  box-shadow:
    inset 0 2px 0 #fff,
    inset 0 -4px 8px rgba(18, 17, 16, 0.07),
    0 14px 30px -12px rgba(45, 42, 60, 0.35);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 #fff,
    inset 0 -4px 8px rgba(18, 17, 16, 0.07),
    0 20px 38px -14px rgba(45, 42, 60, 0.4);
}
.btn--ghost:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 3px 6px rgba(18, 17, 16, 0.1),
    0 8px 18px -10px rgba(45, 42, 60, 0.35);
}

.btn--light {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f3f1ed 100%);
  border: none;
  box-shadow:
    inset 0 2px 0 #fff,
    inset 0 -4px 8px rgba(18, 17, 16, 0.08),
    0 16px 34px -12px rgba(0, 0, 0, 0.4);
}
.btn--light:hover { transform: translateY(-2px); }

.btn--outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--lg { padding: 21px 42px; font-size: 17.5px; }
.btn--sm { padding: 12px 24px; font-size: 14.5px; }

/* ---------- mono labels / eyebrow ---------- */
.mono-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 18px;
}
.mono-label--invert { color: #ff6a5e; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 16px;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease-out), background-color 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 245, 241, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.nav__mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 8px 18px -8px rgba(232, 25, 12, 0.65);
  transition: transform 0.35s var(--ease-out);
}
.nav__brand:hover .nav__mark { transform: rotate(-8deg) scale(1.06); }
.nav__mark img { width: 100%; height: 100%; object-fit: cover; }
.nav__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links > a:not(.btn) {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links > a:not(.btn):hover { color: var(--ink); }
.nav__links > a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links > a:not(.btn).is-active { color: var(--ink); }
.nav__links > a:not(.btn).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links-cta { display: none; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__burger {
  display: none;
  position: relative;
  z-index: 95;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(140px, 18vh, 190px) 0 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(232, 25, 12, 0.07), transparent 60%),
    radial-gradient(700px 480px at -10% 30%, rgba(232, 25, 12, 0.05), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__title {
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 900;
  margin-bottom: 26px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 38px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}
.hero__meta-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #17b26a;
}

/* hero visual */
.hero__visual {
  position: relative;
  height: clamp(420px, 46vw, 560px);
}
.hero__mark {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: clamp(150px, 16vw, 200px);
  aspect-ratio: 1;
  border-radius: 26%;
  overflow: hidden;
  box-shadow: 0 30px 60px -18px rgba(232, 25, 12, 0.55);
  animation: bob 7s ease-in-out infinite;
}
.hero__mark img { width: 100%; height: 100%; object-fit: cover; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* floating cards */
.fcard {
  position: absolute;
  background: rgba(255, 253, 249, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(18, 17, 16, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 48px -20px rgba(18, 17, 16, 0.35);
  animation: bob 8s ease-in-out infinite;
}
.fcard__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.fcard__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.fcard--code {
  top: 2%; left: -2%;
  padding: 14px 18px 16px;
  animation-delay: -2s;
}
.fcard__dots { display: flex; gap: 5px; margin-bottom: 10px; }
.fcard__dots i { width: 8px; height: 8px; border-radius: 50%; background: #e4e0d9; }
.fcard__dots i:first-child { background: var(--red); }
.fcard--code pre {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.tk { color: var(--red); }
.tv { color: #0f766e; }
.ts { color: #b45309; }
.to { color: #7c3aed; }

.fcard--score {
  bottom: 10%; left: 2%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 14px;
  animation-delay: -4.5s;
}
.fcard__ring { position: relative; width: 46px; height: 46px; }
.fcard__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fcard__ring circle {
  fill: none;
  stroke: #ece8e1;
  stroke-width: 4;
}
.fcard__ring-fill {
  stroke: #17b26a !important;
  stroke-dasharray: 100.5;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}
.fcard__ring strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #0e7a49;
}

.fcard--deploy {
  top: 12%; right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  animation-delay: -1s;
}
.fcard__status {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #17b26a;
}

.fcard--uptime {
  bottom: 4%; right: 4%;
  padding: 14px 18px;
  animation-delay: -6s;
}
.fcard__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 2px 0 8px;
}
.fcard__bars { display: flex; gap: 3px; align-items: flex-end; }
.fcard__bars i {
  width: 5px;
  height: 14px;
  border-radius: 2px;
  background: #17b26a;
  opacity: 0.85;
}
.fcard__bars i:nth-child(3) { height: 9px; opacity: 0.5; }
.fcard__bars i:nth-child(8) { height: 11px; opacity: 0.6; }

/* clients marquee */
.clients {
  margin-top: clamp(56px, 8vw, 96px);
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.clients__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 22px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: clamp(44px, 6vw, 90px);
  width: max-content;
  animation: marquee 34s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

.cl {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(18, 17, 16, 0.38);
  white-space: nowrap;
}
.cl--serif { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-style: italic; }
.cl--mono { font-family: var(--font-mono); font-weight: 500; font-size: 18px; }
.cl--light { font-weight: 500; letter-spacing: 0.06em; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(90px, 11vw, 150px) 0; }
.section--tint { background: var(--paper-2); }

.section__head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__title {
  font-size: clamp(34px, 4.4vw, 58px);
  margin-bottom: 18px;
}
.section__sub {
  font-size: clamp(15.5px, 1.25vw, 18px);
  color: var(--muted);
  max-width: 56ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc { border-top: 1px solid var(--line); }
.svc__row a {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.2fr) 48px;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(22px, 3vw, 34px) clamp(8px, 1.5vw, 20px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease;
}
.svc__row a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.svc__row a:hover::before,
.svc__row a:focus-visible::before { transform: scaleY(1); }
.svc__row a:hover,
.svc__row a:focus-visible { color: var(--white); }

.svc__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  transition: color 0.3s ease;
}
.svc__row a:hover .svc__num { color: #ff6a5e; }
.svc__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.svc__desc {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.3s ease;
}
.svc__row a:hover .svc__desc { color: rgba(255, 253, 249, 0.72); }
.svc__arrow {
  font-size: 24px;
  justify-self: end;
  transition: transform 0.35s var(--ease-out);
}
.svc__row a:hover .svc__arrow { transform: translateX(6px) rotate(-45deg); }

/* ============================================================
   STATS (dark band)
   ============================================================ */
.stats {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(232, 25, 12, 0.16), transparent 60%),
    #121110;
  color: var(--white);
  padding: clamp(90px, 11vw, 150px) 0;
}
.stats .section__sub { color: rgba(255, 253, 249, 0.62); }
.stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.stats__cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 253, 249, 0.14);
  border-top: 1px solid rgba(255, 253, 249, 0.14);
}
.stat {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(255, 253, 249, 0.14);
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}
.stat h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 253, 249, 0.62);
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -22px rgba(18, 17, 16, 0.3);
}
.step__num {
  display: inline-grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--red);
  border: 1px solid rgba(232, 25, 12, 0.35);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 40px;
}
.step h3 { font-size: 21px; margin-bottom: 12px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background:
    radial-gradient(1000px 500px at 15% -20%, #ff4436 0%, transparent 55%),
    linear-gradient(160deg, var(--red) 0%, var(--red-dark) 90%);
  color: #fff;
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.cta__marquee {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  translate: 0 -50%;
  opacity: 0.07;
  overflow: hidden;
  pointer-events: none;
}
.cta__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.cta__track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(90px, 14vw, 190px);
  letter-spacing: -0.04em;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
  color: transparent;
}
.cta__inner { position: relative; text-align: center; }
.cta__title {
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 900;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.cta__sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 54ch;
  margin: 0 auto 40px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: #121110;
  color: rgba(255, 253, 249, 0.66);
  padding: clamp(64px, 8vw, 100px) 0 0;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer__col--cta { align-items: flex-start; }
.footer__col--cta .btn { margin-top: 4px; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.7; }
.nav__brand--footer .nav__word { color: #fff; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 253, 249, 0.4);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 15px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}
.footer__col a:hover { color: #ff6a5e; transform: translateX(3px); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  font-size: 13.5px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: #ff6a5e; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; margin-inline: auto; width: 100%; }
  .stats__grid { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav__right .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(84vw, 360px);
    background: var(--paper);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    box-shadow: -30px 0 60px rgba(18, 17, 16, 0.12);
    z-index: 90;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links > a:not(.btn) {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    padding: 10px 0;
  }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links-cta { display: inline-flex; margin-top: 22px; }

  .svc__row a {
    grid-template-columns: 44px 1fr 32px;
    grid-template-areas: "num name arrow" ". desc desc";
    row-gap: 6px;
  }
  .svc__num { grid-area: num; }
  .svc__name { grid-area: name; }
  .svc__desc { grid-area: desc; }
  .svc__arrow { grid-area: arrow; }

  .steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero__visual { height: 420px; }
  .fcard--code { left: -4%; }
  .fcard--uptime { right: -2%; }
  .steps { grid-template-columns: 1fr; }
  .stats__cells { grid-template-columns: 1fr; }
  .stat { border-right: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: min(100%, 340px); }
}
