/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   BiX Credit — landing styles
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */
:root {
  --ink:        #1A1340;
  --ink-2:      #0F0A26;
  --ink-3:      #251B52;
  --primary:    #4F3FCC;
  --primary-d:  #4233ad;
  --violet:     #7B5CFF;
  --lilac:      #B4A3FF;
  --mist:       #EDE9FE;
  --cloud:      #F4F2FA;
  --mint:       #00D9A3;
  --text:       #1F1A38;
  --text-soft:  #6B6786;
  --line:       #E8E4F4;
  --white:      #FFFFFF;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(26,19,64,.06), 0 4px 16px rgba(26,19,64,.05);
  --shadow-md: 0 10px 30px rgba(40,28,110,.10), 0 2px 8px rgba(40,28,110,.06);
  --shadow-lg: 0 24px 60px rgba(40,28,110,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ░░░ Buttons ░░░ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--primary));
  color: #fff; box-shadow: 0 8px 22px rgba(79,63,204,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(79,63,204,.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--violet); color: var(--primary); transform: translateY(-2px); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: var(--lilac); color: #fff; background: rgba(255,255,255,.06); }

/* ░░░ Header ░░░ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 42px; width: auto; }
.brand-mark { width: 34px; height: 30px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.brand-name { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.brand-name .x { color: var(--violet); }
.nav { display: flex; gap: 30px; margin-left: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text-soft); position: relative; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--violet); transition: width .25s var(--ease); border-radius: 2px; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { margin-left: auto; }

.nav-toggle { display: none; margin-left: auto; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.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); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.mobile-nav a { padding: 12px 6px; font-size: 17px; font-weight: 500; color: var(--text); border-radius: 10px; }
.mobile-nav a:hover { background: var(--cloud); }
.mobile-nav .btn { margin-top: 10px; }

/* ░░░ Hero ░░░ */
.hero { position: relative; display: grid; align-content: center; width: 100%; aspect-ratio: 16 / 9; min-height: 560px; background: #130c30; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* full-bleed artwork across the whole banner; hero shares the artwork's
   aspect ratio so the lens always lands at the same spot */
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; background: #130c30 url(assets/hero-bg.webp) center / cover no-repeat; }
/* darken the left (headline) and the far right (labels), soften top & bottom */
.hero-veil { position: absolute; inset: 0; background:
  linear-gradient(90deg, #110a2b 2%, rgba(17,10,43,.86) 25%, rgba(17,10,43,.4) 44%, rgba(17,10,43,.05) 60%, transparent 72%, rgba(17,10,43,.45) 88%, rgba(17,10,43,.62) 100%),
  linear-gradient(180deg, rgba(17,10,43,.32), transparent 24%, transparent 74%, rgba(17,10,43,.5)); }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 540px); align-items: center; min-height: 560px; padding: 88px 24px 100px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); color: #fff; letter-spacing: -0.035em; line-height: 1.06; font-weight: 800; }
.hero h1 .hl { color: var(--lilac); }
.hero-divider { display: block; height: 2px; width: 280px; max-width: 80%; margin: 26px 0 22px; background: linear-gradient(90deg, var(--violet), rgba(123,92,255,0)); position: relative; }
.hero-divider i { position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--lilac); transform: translate(50%,-50%); box-shadow: 0 0 10px 2px rgba(180,163,255,.6); }
.hero .lead { font-size: clamp(16px, 1.5vw, 18px); color: #C5BEE6; max-width: 44ch; line-height: 1.75; font-weight: 400; }
.hero .lead b { color: #fff; font-weight: 700; }
.hero .lead b.hl { color: var(--lilac); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ── Hero radar overlay — floats over the full-bleed artwork ── */
.hero-radar { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.radar-links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.radar-links line { stroke: rgba(175,160,255,.7); stroke-width: 1.2; vector-effect: non-scaling-stroke; stroke-dasharray: 2 3.5; animation: dashFlow 14s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -120; } }

/* the BiX mark sits inside the artwork's lens */
.radar { position: absolute; z-index: 2; left: 76.8%; top: 58.1%; transform: translate(-50%,-50%); width: 6.5%; aspect-ratio: 1; }
.radar .ring, .sweep, .orbit-dot { display: none; }
.radar-core { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.radar-core svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 0 10px rgba(123,92,255,.6)); animation: corePulse 5s ease-in-out infinite; }
@keyframes corePulse { 0%,100% { filter: drop-shadow(0 0 8px rgba(123,92,255,.45)); } 50% { filter: drop-shadow(0 0 16px rgba(123,92,255,.85)); } }
/* vector dial parts kept for the mobile fallback */
.radar .ring { position: absolute; inset: 0; border-radius: 50%; }
.ring-1 { border: 1px solid rgba(150,135,240,.22); }
.ring-2 { inset: 13%; border: 1px dashed rgba(150,135,240,.30); animation: spin 26s linear infinite; }
.ring-3 { inset: 26%; border: 1px solid rgba(123,92,255,.18); }
.sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(123,92,255,.32), rgba(123,92,255,0) 110deg); -webkit-mask: radial-gradient(circle, transparent 26%, #000 27%); mask: radial-gradient(circle, transparent 26%, #000 27%); animation: spin 7s linear infinite; }
.orbit-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--lilac); box-shadow: 0 0 8px 1px rgba(180,163,255,.7); }
.dot-a { top: 4%; left: 50%; transform: translate(-50%,-50%); animation: orbit 18s linear infinite; transform-origin: 0 calc(50% - 4%); }
.dot-b { bottom: 8%; left: 30%; animation: orbit 24s linear infinite reverse; transform-origin: 20% -42%; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-node { position: absolute; left: 87.5%; width: 240px; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 15px; white-space: nowrap; opacity: 0; animation: nodeIn .6s var(--ease) forwards; }
.orbit-node .on-icon { flex: none; width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; color: var(--lilac); border: 1px solid rgba(150,135,240,.45); background: radial-gradient(circle at 50% 35%, rgba(40,28,92,.92), rgba(18,12,42,.85)); box-shadow: 0 6px 20px rgba(0,0,0,.35); position: relative; }
.orbit-node .on-icon::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid rgba(123,92,255,.35); opacity: 0; animation: nodePulse 3.4s ease-out infinite; }
.orbit-node .on-icon svg { width: 30px; height: 30px; }
.orbit-node .on-label { font-size: 16.5px; font-weight: 500; color: #E4DFF6; line-height: 1.28; text-shadow: 0 1px 6px rgba(10,6,28,.7); }
.n1 { top: 32%; } .n2 { top: 44%; } .n3 { top: 56%; } .n4 { top: 68%; } .n5 { top: 80%; }
.n1 { animation-delay: .15s; } .n2 { animation-delay: .3s; } .n3 { animation-delay: .45s; } .n4 { animation-delay: .6s; } .n5 { animation-delay: .75s; }
.n1 .on-icon::after { animation-delay: 0s; } .n2 .on-icon::after { animation-delay: .5s; } .n3 .on-icon::after { animation-delay: 1s; } .n4 .on-icon::after { animation-delay: 1.5s; } .n5 .on-icon::after { animation-delay: 2s; }
@keyframes nodeIn { from { opacity: 0; transform: translate(-50%,-50%) translateX(14px); } to { opacity: 1; transform: translate(-50%,-50%); } }
@keyframes nodePulse { 0% { opacity: .7; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }

/* ░░░ Stats strip ░░░ */
.strip { background: var(--ink-2); border-top: 1px solid rgba(180,163,255,.12); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { padding: 26px 24px; display: flex; flex-direction: column; gap: 4px; position: relative; }
.strip-item + .strip-item::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: rgba(180,163,255,.16); }
.strip-k { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.strip-v { font-size: 14px; color: #9C95C4; }

/* ░░░ Sections ░░░ */
.section { padding: 96px 0; }
.section-alt { background: var(--cloud); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); background: var(--mist); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.kicker-light { color: var(--lilac); background: rgba(180,163,255,.12); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-sub { margin-top: 18px; font-size: 17px; color: var(--text-soft); }

/* Feature cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(135deg, var(--mist), #fff); color: var(--primary); margin-bottom: 20px; box-shadow: inset 0 0 0 1px var(--line); }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 15px; color: var(--text-soft); }

/* Solutions */
.solutions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.solution {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; place-items: center; min-height: 132px; padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(120deg, #7E6BFF 0%, var(--violet) 28%, var(--primary) 62%, #4233ad 100%);
  background-size: 220% 220%;
  box-shadow: 0 14px 30px rgba(79,63,204,.30);
  animation: solGrad 9s ease-in-out infinite;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
/* staggered drift so the four cards shimmer out of sync */
.solution:nth-child(2) { animation-delay: -2.2s; }
.solution:nth-child(3) { animation-delay: -4.4s; }
.solution:nth-child(4) { animation-delay: -6.6s; }
@keyframes solGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
/* soft glossy orb on the right, like the reference */
.solution::before {
  content: ""; position: absolute; z-index: -1; right: -34px; top: 50%; transform: translateY(-50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.20), rgba(255,255,255,0) 68%);
}
.solution h3 { color: #fff; font-size: 19px; text-align: center; letter-spacing: -0.01em; }
/* light sheen that sweeps across on hover */
.solution-shine { position: absolute; z-index: -1; top: -20%; left: -70%; width: 45%; height: 140%; transform: skewX(-22deg); background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.35), rgba(255,255,255,0)); }
.solution:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(79,63,204,.42); }
.solution:hover .solution-shine { animation: sheen 0.9s var(--ease); }
@keyframes sheen { from { left: -70%; } to { left: 130%; } }

/* Metrics */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.metric { position: relative; overflow: hidden; text-align: center; background: linear-gradient(180deg, var(--cloud), #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.metric:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.metric::after { content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--violet), var(--mint)); transition: transform .35s var(--ease); }
.metric:hover::after { transform: scaleX(1); }
.metric-num { display: block; font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--violet), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-unit { font-size: 32px; }
.metric-sym { font-size: 60px; }
.metric h3 { font-size: 19px; margin: 16px 0 8px; }
.metric p { font-size: 14.5px; color: var(--text-soft); }

/* Roles (dark) */
.section-dark { background: radial-gradient(120% 100% at 50% 0%, var(--ink-3) 0%, var(--ink) 55%, var(--ink-2) 100%); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-sub { color: #B6AFD6; }
.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.role { background: rgba(255,255,255,.035); border: 1px solid rgba(180,163,255,.16); border-radius: var(--radius); padding: 26px 24px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.role:hover { transform: translateY(-6px); border-color: rgba(180,163,255,.45); background: rgba(255,255,255,.06); }
.role header { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(180,163,255,.16); }
.role-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--lilac); background: rgba(180,163,255,.14); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.role h3 { font-size: 18px; color: #fff; }
.role ul { display: flex; flex-direction: column; gap: 12px; }
.role li { position: relative; padding-left: 26px; font-size: 14.5px; color: #CFC9EC; }
.role li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: rgba(0,217,163,.16); }
.role li::after { content: ""; position: absolute; left: 5px; top: 9px; width: 6px; height: 3px; border-left: 1.6px solid var(--mint); border-bottom: 1.6px solid var(--mint); transform: rotate(-45deg); }

/* CTA band */
.cta-band { padding: 30px 0; }
.cta-inner { position: relative; overflow: hidden; text-align: center; background: linear-gradient(120deg, var(--primary), var(--violet) 60%, #9C8CFF); border-radius: 28px; padding: 64px 32px; color: #fff; box-shadow: var(--shadow-lg); }
.cta-inner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%), radial-gradient(circle at 85% 80%, rgba(0,217,163,.22), transparent 45%); }
.cta-inner > * { position: relative; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); max-width: 18ch; margin: 0 auto; }
.cta-inner p { margin: 18px auto 30px; font-size: 17px; color: rgba(255,255,255,.9); max-width: 52ch; }
.cta-band .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { box-shadow: 0 16px 34px rgba(0,0,0,.24); }

/* Contact */
.contact-inner { text-align: center; }
.contact-head { margin-bottom: 44px; }
.contact-head h2 { font-size: clamp(26px, 3.2vw, 38px); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lilac); }
.contact-icon { width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--mist); color: var(--primary); margin-bottom: 10px; }
.contact-icon svg { width: 25px; height: 25px; }
.contact-k { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.contact-v { font-size: 16px; font-weight: 600; color: var(--ink); }
.contact-cta { margin-top: 40px; }

/* ░░░ Footer ░░░ */
.site-footer { background: var(--ink-2); color: #fff; padding: 56px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(180,163,255,.14); }
.footer-brand { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.brand-mark-light { width: 32px; height: 28px; }
.brand-name-light { color: #fff; }
.footer-tag { margin: 0; padding-left: 18px; border-left: 1px solid rgba(180,163,255,.22); font-size: 14.5px; color: #9C95C4; white-space: nowrap; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.footer-nav a { font-size: 15px; color: #C9C3E6; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; font-size: 13.5px; color: #837CAB; text-align: center; }

/* ░░░ Reveal animation ░░░ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ░░░ Responsive ░░░ */
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  /* mobile: hide the whole animated banner; lead with the headline text */
  .hero { display: flex; flex-direction: column; height: auto; aspect-ratio: auto; min-height: 0; max-height: none; align-content: normal; }
  .hero-art, .hero-veil, .hero-radar { display: none; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; gap: 12px; padding: 56px 24px 60px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-copy h1, .hero .lead { width: 100%; max-width: 100%; }
  .hero .lead { max-width: 52ch; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .cards-3, .solutions, .metrics, .roles, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3)::before, .strip-item:nth-child(odd)::before { display: none; }
  .strip-item:nth-child(2)::before, .strip-item:nth-child(4)::before { display: block; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .cards-3, .solutions, .metrics, .roles, .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .solution { min-height: 92px; padding: 22px; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .cta-inner { padding: 48px 24px; border-radius: 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-tag { padding-left: 0; border-left: 0; }
  .btn-lg { width: 100%; }
  .hero-actions { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .orbit-node { opacity: 1; }
}
