@font-face{font-family:'DM Sans';font-style:normal;font-weight:400 700;font-display:swap;src:url(/fonts/dm-sans-latin.woff2) format('woff2')}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 500;font-display:swap;src:url(/fonts/inter-latin.woff2) format('woff2')}

:root {
  --bg: #050C16;
  --card: #0D1526;
  --card-h: #121D34;
  --surface: #091120;
  --accent: #5BA4B5;
  --accent-h: #4E96A6;
  --accent-dim: rgba(91,164,181,.08);
  --t: #E8ECF2;
  --ts: rgba(232,236,242,.78);
  --tm: rgba(232,236,242,.48);
  --ln: rgba(232,236,242,.07);
  --la: rgba(91,164,181,.22);
  --fh: 'DM Sans', sans-serif;
  --fb: 'Inter', -apple-system, sans-serif;
  --w: min(1320px, 90vw);
  --r: 8px;
  --rl: 14px;
  --eo: cubic-bezier(.16,1,.3,1);
  --eio: cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ts);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--fh);
  color: var(--t);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.025em;
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px; font-weight: 600; z-index: 10000;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* Layout */
.container { max-width: var(--w); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--surface); }

/* Section headers */
.sh { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.sh h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.sh p { font-size: 1.0625rem; color: var(--ts); max-width: 600px; margin: 0 auto; }

/* Buttons — teal */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-weight: 600; font-size: 14px;
  padding: 14px 32px; border-radius: 6px;
  transition: all .3s var(--eio); white-space: nowrap;
}
.btn--p {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(91,164,181,.2);
}
.btn--p:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,164,181,.25);
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all .4s var(--eio);
}
.nav--s {
  background: rgba(5,12,22,.94);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--ln); padding: 12px 0;
}
.nav__i { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; letter-spacing: -.03em; }
.nav__logo b { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-family: var(--fh); font-size: 13px; font-weight: 500;
  color: var(--tm); transition: color .25s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--t);
  transition: width .35s var(--eo);
}
.nav__link:hover { color: var(--t); }
.nav__link:hover::after { width: 100%; }
.nav__c { margin-left: 8px; }

/* Hamburger */
.hb { display: none; flex-direction: column; gap: 5px; padding: 12px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; z-index: 1001; }
.hb span { width: 20px; height: 1.5px; background: var(--ts); border-radius: 2px; transition: all .3s var(--eio); }
.hb.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hb.open span:nth-child(2) { opacity: 0; }
.hb.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mm {
  position: fixed; inset: 0; background: rgba(5,12,22,.98); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mm.open { opacity: 1; pointer-events: all; }
.mm a { font-family: var(--fh); font-size: 18px; font-weight: 500; color: var(--ts); padding: 12px 24px; min-height: 44px; display: flex; align-items: center; }
.mm a:hover { color: var(--t); }
@media (max-width: 768px) { .nav__links { display: none; } .hb { display: flex; } }

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 1200px; height: 1200px; border-radius: 50%;
  background: radial-gradient(circle at 30% 40%, rgba(91,164,181,.05) 0%, transparent 60%);
  top: 50%; left: 25%; transform: translate(-50%,-50%);
  pointer-events: none; filter: blur(80px);
}

/* Waveform — steep, spread, atmospheric */
.hero__w {
  position: absolute; top: 0; left: -5vw; right: -5vw; bottom: 0;
  z-index: 0; pointer-events: none; overflow: visible;
}
.hero__w svg { position: absolute; top: 0; left: 0; width: 110vw; height: 100%; }

/* Smooth sine waves — wide control points for round curves */
@keyframes d1{0%,100%{d:path("M0,100 Q180,60 360,100 T720,100 T1080,100 T1440,100")}50%{d:path("M0,100 Q180,140 360,100 T720,100 T1080,100 T1440,100")}}
@keyframes d2{0%,100%{d:path("M0,340 Q240,280 480,340 T960,340 T1440,340")}50%{d:path("M0,340 Q240,400 480,340 T960,340 T1440,340")}}
@keyframes d3{0%,100%{d:path("M0,620 Q360,560 720,620 T1440,620")}50%{d:path("M0,620 Q360,680 720,620 T1440,620")}}
@keyframes d4{0%,100%{d:path("M0,480 Q200,420 400,480 T800,480 T1200,480 T1440,480")}50%{d:path("M0,480 Q200,540 400,480 T800,480 T1200,480 T1440,480")}}
@keyframes d5{0%,100%{d:path("M0,200 Q300,140 600,200 T1200,200 T1440,200")}50%{d:path("M0,200 Q300,260 600,200 T1200,200 T1440,200")}}
@keyframes d6{0%,100%{d:path("M0,710 Q240,660 480,710 T960,710 T1440,710")}50%{d:path("M0,710 Q240,760 480,710 T960,710 T1440,710")}}
@keyframes d7{0%,100%{d:path("M0,60 Q200,20 400,60 T800,60 T1200,60 T1440,60")}50%{d:path("M0,60 Q200,100 400,60 T800,60 T1200,60 T1440,60")}}
@keyframes d8{0%,100%{d:path("M0,550 Q280,490 560,550 T1120,550 T1440,550")}50%{d:path("M0,550 Q280,610 560,550 T1120,550 T1440,550")}}
@keyframes d9{0%,100%{d:path("M0,150 Q180,100 360,150 T720,150 T1080,150 T1440,150")}50%{d:path("M0,150 Q180,200 360,150 T720,150 T1080,150 T1440,150")}}
@keyframes d10{0%,100%{d:path("M0,670 Q220,620 440,670 T880,670 T1320,670 T1440,670")}50%{d:path("M0,670 Q220,720 440,670 T880,670 T1320,670 T1440,670")}}
@keyframes d11{0%,100%{d:path("M0,280 Q320,220 640,280 T1280,280 T1440,280")}50%{d:path("M0,280 Q320,340 640,280 T1280,280 T1440,280")}}
@keyframes d12{0%,100%{d:path("M0,430 Q260,380 520,430 T1040,430 T1440,430")}50%{d:path("M0,430 Q260,480 520,430 T1040,430 T1440,430")}}

.w1{fill:none;stroke:rgba(232,236,242,.09);stroke-width:1.5;animation:d1 8s ease-in-out infinite}
.w2{fill:none;stroke:rgba(232,236,242,.07);stroke-width:1;animation:d2 11s ease-in-out infinite}
.w3{fill:none;stroke:rgba(91,164,181,.08);stroke-width:1.5;animation:d3 9s ease-in-out infinite}
.w4{fill:none;stroke:rgba(232,236,242,.06);stroke-width:.8;animation:d4 13s ease-in-out infinite}
.w5{fill:none;stroke:rgba(232,236,242,.1);stroke-width:1;animation:d5 7s ease-in-out infinite}
.w6{fill:none;stroke:rgba(91,164,181,.06);stroke-width:.8;animation:d6 15s ease-in-out infinite}
.w7{fill:none;stroke:rgba(232,236,242,.05);stroke-width:1.2;animation:d7 10s ease-in-out infinite}
.w8{fill:none;stroke:rgba(232,236,242,.07);stroke-width:1;animation:d8 12s ease-in-out infinite}
.w9{fill:none;stroke:rgba(91,164,181,.06);stroke-width:1.3;animation:d9 6s ease-in-out infinite}
.w10{fill:none;stroke:rgba(232,236,242,.04);stroke-width:.7;animation:d10 14s ease-in-out infinite}
.w11{fill:none;stroke:rgba(232,236,242,.08);stroke-width:1;animation:d11 9.5s ease-in-out infinite}
.w12{fill:none;stroke:rgba(91,164,181,.05);stroke-width:.9;animation:d12 11.5s ease-in-out infinite}

.hero__sp {
  position: relative; z-index: 2;
  max-width: var(--w); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
}
.hero__txt { max-width: 520px; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; margin-bottom: 20px; }
.hero__sub { font-size: clamp(.95rem, 1.4vw, 1rem); margin-bottom: 36px; line-height: 1.85; }
.hero__a { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__vis { position: relative; overflow: visible; margin-right: -43%; margin-left: 15%; }
.hero__img {
  border-radius: 12px 0 0 12px; border: 1px solid var(--ln); border-right: none;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transition: transform .6s var(--eo);
  width: 100%; height: auto; max-width: none;
}
.hero__img:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
@media (max-width: 960px) {
  .hero__sp { grid-template-columns: 1fr; text-align: center; padding: 0 24px; }
  .hero__txt { max-width: 100%; margin: 0 auto; }
  .hero__vis { margin-top: 40px; margin-right: 0; margin-left: 0; overflow: visible; }
  .hero__img { transform: none; width: 100%; border-radius: 12px; border: 1px solid var(--ln); border-right: 1px solid var(--ln); }
  .hero__sub { margin-left: auto; margin-right: auto; max-width: 520px; }
  .hero__a { justify-content: center; }
}

/* Trust bar */
.trust {
  border-top: 1px solid var(--ln); border-bottom: 1px solid var(--ln);
  padding: 48px 0; background: var(--surface);
}
.trust__g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust__i { position: relative; padding: 0 12px; }
.trust__i:not(:last-child)::after {
  content: ''; position: absolute; top: 10%; right: 0; width: 1px; height: 80%; background: var(--ln);
}
.trust__v {
  font-family: var(--fh); font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700; color: var(--t); line-height: 1.2; margin-bottom: 4px; letter-spacing: -.02em;
}
.trust__l { font-size: .8125rem; color: var(--tm); letter-spacing: .02em; }
@media (max-width: 640px) {
  .trust__g { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust__i:nth-child(2)::after { display: none; }
}

/* ═══════════════════════════════
   PARTNER — Starker Partner
   ═══════════════════════════════ */
.partner__grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 24px; align-items: center; }
.partner__card {
  background: var(--card); border: 1px solid var(--ln); border-radius: var(--rl);
  padding: 36px 28px; transition: all .35s var(--eo);
}
.partner__card:hover {
  background: var(--card-h); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.partner__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--ts);
}
.partner__card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.partner__card p { font-size: .9375rem; line-height: 1.75; }
.partner__card--feat {
  background: var(--card-h); padding: 48px 36px;
  box-shadow: 0 20px 56px rgba(0,0,0,.4);
}
.partner__card--feat:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.partner__card--feat .partner__icon {
  width: 60px; height: 60px; border-radius: 14px;
}
.partner__card--feat h3 { font-size: 1.375rem; }
.partner__card--feat p { font-size: 1rem; }
@media (max-width: 768px) { .partner__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   ARCHITECTURE SPLITS (Inbound/Outbound)
   ═══════════════════════════════ */
.arch__split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.arch__split--reverse { direction: rtl; }
.arch__split--reverse > * { direction: ltr; }
.arch__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.arch__text p { font-size: 1rem; margin-bottom: 24px; line-height: 1.85; }
.arch__text ul { margin-bottom: 24px; }
.arch__text li {
  padding: 10px 0 10px 20px; border-left: 2px solid var(--ln);
  font-size: .9375rem; line-height: 1.75;
  transition: all .3s var(--eo); cursor: default;
}
.arch__text li:hover { border-left-color: var(--accent); transform: translateX(4px); }
.arch__text li strong { color: var(--t); font-weight: 600; }

/* SVG shared styles */
.arch-svg { width: 100%; max-width: 580px; margin: 0 auto; display: block; }
.arch-svg text { font-family: var(--fh); fill: var(--t); font-size: 13px; font-weight: 600; }
.arch-svg .bx { fill: var(--card); stroke: var(--ln); stroke-width: 1; rx: 10; ry: 10; }
.arch-svg .ar { fill: none; stroke: var(--accent); stroke-width: 1.2; stroke-dasharray: 6 4; opacity: .75; }
@keyframes afl { 0% { stroke-dashoffset: 20; } 100% { stroke-dashoffset: 0; } }
.arch-svg .ar { animation: afl 1.5s linear infinite; }
.arch-svg .ar-d { fill: none; stroke: var(--tm); stroke-width: 1; stroke-dasharray: 3 4; }
.arch-svg .ic { fill: none; stroke: var(--ts); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.arch-svg .sm { font-size: 11px; fill: var(--tm); }
@media (max-width: 960px) {
  .arch__split, .arch__split--reverse { grid-template-columns: 1fr; direction: ltr; }
  .arch-svg { margin-top: 40px; max-width: 380px; }
}

/* ═══════════════════════════════
   SELF-IMPROVING + A/B
   ═══════════════════════════════ */
.si__split { display: flex; align-items: center; }
.si__split > * { width: 50%; }
.si__split .si__text { padding-right: 60px; }
.si__split .si__vis { display: flex; align-items: center; justify-content: center; padding-left: 48px; }
.si__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.si__text p { font-size: 1rem; line-height: 1.85; margin-bottom: 16px; }
.ab-card {
  background: var(--card); border: 1px solid var(--ln); border-radius: var(--rl);
  padding: 24px; margin-top: 24px;
}
.ab-card h3 { font-size: 1rem; margin-bottom: 8px; }
.ab-card p { font-size: .9375rem; line-height: 1.75; }

/* Circular loop SVG */
.loop-svg { width: 100%; max-width: 420px; }
.loop-svg text { font-family: var(--fh); fill: var(--t); font-size: 11px; font-weight: 600; }
.loop-svg .lb { fill: var(--card); stroke: var(--ln); stroke-width: 1; }
.loop-svg .li { fill: none; stroke: var(--ts); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.loop-svg .la { fill: none; stroke: var(--accent); stroke-width: 1.2; stroke-dasharray: 6 4; opacity: .75; animation: afl 3s linear infinite; }
@media (max-width: 960px) {
  .si__split { flex-direction: column; }
  .si__split > * { width: 100%; }
  .si__split .si__text { padding-right: 0; }
  .si__split .si__vis { padding-left: 0; }
  .loop-svg { margin-top: 40px; }
}

/* ═══════════════════════════════
   STEPS
   ═══════════════════════════════ */
.steps__g {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 960px; margin: 0 auto;
}
.step { text-align: center; position: relative; }
@keyframes sp { 0%,100% { box-shadow: 0 0 16px var(--accent-dim); } 50% { box-shadow: 0 0 28px rgba(91,164,181,.15); } }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--accent);
  font-family: var(--fh); font-size: 1.125rem; font-weight: 700; color: var(--t);
  margin-bottom: 20px; animation: sp 4s ease-in-out infinite; position: relative; z-index: 1;
}
.step:nth-child(2) .step__n { animation-delay: 1.3s; }
.step:nth-child(3) .step__n { animation-delay: 2.6s; }
@media (min-width: 769px) {
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 27px;
    left: calc(50% + 35px); width: calc(100% - 70px); height: 1px;
    background: linear-gradient(90deg, var(--la), var(--ln)); z-index: 0;
  }
}
.step h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 8px; }
.step__t { color: var(--tm); font-weight: 400; font-size: .8125rem; }
.step p { font-size: .9375rem; max-width: 280px; margin: 0 auto; }
.steps__fn { text-align: center; margin-top: 52px; font-family: var(--fh); font-size: .9375rem; font-weight: 600; color: var(--t); }
@media (max-width: 768px) { .steps__g { grid-template-columns: 1fr; gap: 48px; } }

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
.faq {
  border-bottom: 1px solid var(--ln); padding: 20px 0;
}
.faq summary {
  font-family: var(--fh); font-size: 1.0625rem; font-weight: 600; color: var(--t);
  cursor: pointer; padding: 4px 0; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq summary::after {
  content: '+'; font-size: 1.25rem; color: var(--tm); transition: transform .3s var(--eio);
}
.faq[open] summary::after { content: '−'; }
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  font-size: .9375rem; line-height: 1.85; color: var(--ts); padding: 12px 0 8px; max-width: 680px;
}

/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */
.cta { padding: 110px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; width: 900px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91,164,181,.03) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; filter: blur(60px);
}
.cta__sp { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.cta__text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.cta__text p { font-size: 1.0625rem; margin-bottom: 36px; max-width: 460px; line-height: 1.85; }
.cta__vis img {
  border-radius: 10px; border: 1px solid var(--ln);
  box-shadow: 0 20px 60px rgba(0,0,0,.5); max-width: 360px; margin: 0 auto;
}
@media (max-width: 960px) {
  .cta__sp { grid-template-columns: 1fr; text-align: center; }
  .cta__text p { margin-left: auto; margin-right: auto; }
  .cta__vis { margin-top: 24px; }
  .cta__vis img { max-width: 300px; }
  .cta__vis svg { max-width: 340px; margin: 0 auto; display: block; }
}

/* ═══════════════════════════════
   MODAL
   ═══════════════════════════════ */
.mo {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--eio); padding: 24px;
}
.mo.open { opacity: 1; pointer-events: all; }
.mod {
  background: var(--card); border: 1px solid rgba(232,236,242,.12);
  border-radius: var(--rl); padding: 44px 36px; max-width: 520px; width: 100%;
  position: relative; transform: scale(.96) translateY(8px); transition: transform .35s var(--eo);
}
.mo.open .mod { transform: scale(1) translateY(0); }
.mod__x {
  position: absolute; top: 8px; right: 8px; color: var(--tm);
  font-size: 1.375rem; padding: 12px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; transition: color .2s;
}
.mod__x:hover { color: var(--t); }
.mod h3 { font-size: 1.25rem; margin-bottom: 6px; }
.mod > p { font-size: .9375rem; color: var(--ts); margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 13px; font-weight: 600; color: rgba(232,236,242,.78);
  margin-bottom: 5px; letter-spacing: .03em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px; background: var(--bg);
  border: 1px solid var(--ln); border-radius: 6px; color: var(--t);
  font-family: var(--fb); font-size: .9375rem; transition: all .25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-dim);
}
.fg textarea { resize: vertical; min-height: 72px; }
.fg select { cursor: pointer; }
.fg select option { background: var(--bg); }
.fs { width: 100%; margin-top: 6px; }

/* Cookie Consent */
.cc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 3000;
  background: var(--card); border-top: 1px solid var(--ln);
  padding: 20px 24px; display: none; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; font-size: .8125rem; color: var(--ts);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.cc.show { display: flex; }
.cc a { color: var(--accent); text-decoration: underline; }
.cc__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cc__btn {
  font-family: var(--fh); font-size: .8125rem; font-weight: 600;
  padding: 8px 20px; border-radius: 6px; cursor: pointer; transition: all .2s;
}
.cc__btn--ok { background: var(--accent); color: #fff; border: none; }
.cc__btn--ok:hover { background: var(--accent-h); }
.cc__btn--no { background: none; color: var(--tm); border: 1px solid var(--ln); }
.cc__btn--no:hover { color: var(--ts); border-color: var(--ts); }

/* Footer */
.footer { border-top: 1px solid var(--ln); padding: 48px 0; text-align: center; }
.footer__brand { font-family: var(--fh); font-size: 1.0625rem; font-weight: 700; margin-bottom: 14px; color: var(--t); }
.footer__brand b { color: var(--accent); }
.footer__comp {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px; font-size: .8125rem; color: var(--tm);
}
.footer__comp span { display: flex; align-items: center; gap: 5px; }
.footer__comp svg { opacity: .5; }
.footer__links { display: flex; gap: 20px; justify-content: center; font-size: .8125rem; }
.footer__links a { color: var(--tm); transition: color .2s; }
.footer__links a:hover { color: var(--ts); }
.footer__copy { font-size: .75rem; color: var(--tm); margin-top: 16px; }
.footer__links a { padding: 10px 8px; }

/* ═══════════════════════════════
   MOBILE OPTIMIZATIONS
   ═══════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .mo { align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mod { padding: 32px 24px; margin: 24px auto; }
  .partner__card--feat { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .cta { padding: 48px 0; }
  .arch-svg { max-width: 100%; }
  .arch-svg text { font-size: 15px; }
  .arch-svg .sm { font-size: 13px; }
  .loop-svg text { font-size: 12px; }
}

/* Reveals */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--eo), transform .8s var(--eo); }
.rv.v { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) { .d { display: none; } }
.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }

/* ═══════════════════════════════
   BLOG
   ═══════════════════════════════ */
.blog-content h2 { font-size: 1.5rem; color: var(--t); margin: 48px 0 16px; }
.blog-content h3 { font-size: 1.25rem; color: var(--t); margin: 36px 0 12px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin-bottom: 20px; padding-left: 24px; }
.blog-content li { margin-bottom: 8px; }
.blog-content a { color: var(--accent); text-decoration: underline; }
.blog-content a:hover { color: var(--accent-h); }
.blog-content blockquote {
  border-left: 3px solid var(--accent); padding: 16px 24px; margin: 24px 0;
  background: var(--accent-dim); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--ts);
}
.blog-content code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.blog-content pre { background: var(--surface); padding: 20px; border-radius: var(--r); overflow-x: auto; margin-bottom: 24px; }
.blog-content pre code { background: none; padding: 0; }
.blog-content img { border-radius: var(--r); border: 1px solid var(--ln); margin: 24px 0; }
.blog-content strong { color: var(--t); }
