/* ============================================================
   SOAMIQ — light, Apple-inspired design system
   Soft grey canvas, blue-led accents (with subtle green),
   buttery scroll motion. No yellow.
   ============================================================ */

:root {
  --bg: #e9e9ec;
  --bg-2: #f1f1f4;
  --surface: #ffffff;
  --surface-2: #f6f6f8;
  --ink: #15151a;
  --text: #1d1d1f;
  --muted: #62626b;
  --faint: #94949c;

  --border: rgba(20, 22, 34, 0.09);
  --border-strong: rgba(20, 22, 34, 0.16);

  --blue: #1f6bff;
  --blue-ink: #0a52d8;
  --blue-soft: #ecf2ff;
  --green: #12a150;
  --green-ink: #0c7d3e;
  --green-soft: #e7f6ee;

  --grad: linear-gradient(100deg, #1f6bff 0%, #2f8fdc 55%, #12a150 100%);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(20, 30, 60, 0.06);
  --shadow: 0 30px 70px -34px rgba(20, 30, 60, 0.30);
  --shadow-lift: 0 40px 90px -40px rgba(20, 30, 60, 0.40);

  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 18px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 8% -8%, rgba(31, 107, 255, 0.07), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(18, 161, 80, 0.06), transparent 55%);
}

h1, h2, h3, h4 { font-family: "Inter", sans-serif; margin: 0; line-height: 1.06; letter-spacing: -0.035em; font-weight: 700; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 400; background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: var(--grad); transition: width .1s linear; }

/* ---------- Buttons ---------- */
.btn {
  --py: 13px; --px: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--py) var(--px); border-radius: 980px; font-weight: 600; font-size: 0.96rem;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap; color: var(--text);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn--sm { --py: 9px; --px: 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px -12px rgba(31, 107, 255, 0.8); }
.btn--primary:hover { transform: translateY(-2px); background: var(--blue-ink); box-shadow: 0 18px 38px -14px rgba(31, 107, 255, 0.85); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- Type helpers ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--blue-ink); margin: 0 0 16px; }
.section { padding: 120px 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section--white { background: var(--surface); }
.section__head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.lead { font-size: 1.2rem; color: var(--muted); margin-top: 18px; line-height: 1.5; }
.lead--center { max-width: 60ch; margin-inline: auto; }
.muted { color: var(--muted); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 980px; font-size: .82rem; font-weight: 600; color: var(--blue-ink); background: var(--blue-soft); border: 1px solid rgba(31, 107, 255, 0.18); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Brand / logo (image) ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__img { height: 34px; width: auto; display: block; }
.footer .brand__img { height: 46px; }
.nav__inner .brand__img { transition: opacity .25s var(--ease); }
.nav__inner a:hover .brand__img { opacity: .7; }

/* ---------- Nav (sticky, translucent) ---------- */
.nav { position: sticky; top: 0; z-index: 200; transition: background .4s var(--ease), box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); background: rgba(244, 244, 247, 0.72); }
.nav.is-scrolled { background: rgba(255, 255, 255, 0.82); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .94rem; color: var(--muted); transition: color .2s; position: relative; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; border-radius: 2px; background: var(--grad); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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; flex-direction: column; padding: 10px 28px 22px; background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav__mobile a { padding: 13px 6px; color: var(--muted); border-bottom: 1px solid var(--border); }
.nav__mobile a:last-of-type { border-bottom: 0; }
.nav__mobile .btn { margin-top: 14px; }
.nav__mobile.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 100px 0 90px; overflow: hidden; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .5; }
.hero__orb--1 { width: 480px; height: 480px; top: -140px; left: -120px; background: radial-gradient(circle, rgba(31,107,255,.40), transparent 65%); }
.hero__orb--2 { width: 420px; height: 420px; top: 60px; right: -120px; background: radial-gradient(circle, rgba(18,161,80,.34), transparent 65%); }
/* align-items:start keeps the right-hand panel anchored so it never
   moves while the typewriter line on the left changes length */
.hero__inner { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: start; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -0.04em; }
.hero__type { display: block; margin-top: 10px; min-height: 1.15em; color: var(--blue); font-weight: 800; }
.hero__caret { display: inline-block; width: 3px; height: 0.9em; background: var(--blue); margin-left: 5px; vertical-align: -0.1em; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__desc { color: var(--muted); font-size: 1.2rem; max-width: 54ch; margin-top: 24px; line-height: 1.55; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__proof { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero__proof dt { font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; }
.hero__proof dd { margin: 2px 0 0; color: var(--muted); font-size: .85rem; max-width: 18ch; }

/* hero panel (static) */
.panel { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.panel__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.panel__eyebrow { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.panel__status { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--green-ink); font-weight: 600; }
.panel__status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); animation: pulse 2.4s infinite; }
.panel__title { font-size: 1.2rem; margin-bottom: 18px; }
.panel__layers { display: grid; gap: 12px; }
.layer { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); position: relative; overflow: hidden; }
.layer::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad); }
.layer__idx { font-size: .8rem; color: var(--blue-ink); font-weight: 700; width: 22px; }
.layer__name { font-weight: 600; font-size: .96rem; color: var(--ink); }
.panel__note { margin-top: 16px; font-size: .85rem; color: var(--faint); }

/* ---------- Marquee strip ---------- */
.strip { border-block: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.strip__track { display: flex; gap: 50px; padding: 22px 0; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip__track span { color: var(--muted); font-weight: 600; font-size: .98rem; display: inline-flex; align-items: center; gap: 50px; }
.strip__track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { position: relative; padding: 32px 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; overflow: hidden; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); border-color: var(--border-strong); }
.card__tag { display: inline-grid; place-items: center; min-width: 46px; height: 46px; padding: 0 12px; border-radius: 13px; font-weight: 700; font-size: .95rem; color: var(--blue-ink); background: var(--blue-soft); border: 1px solid rgba(31,107,255,0.16); margin-bottom: 20px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--text); }
.card__list li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- Scrollytelling pillars ---------- */
.scrolly { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: start; }
.scrolly__aside { position: sticky; top: calc(var(--nav-h) + 48px); }
.scrolly__items { display: grid; gap: 26px; }
.flow__item { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; padding: 34px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.flow__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.flow__num { font-size: 1.1rem; font-weight: 700; color: #fff; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); }
.flow__label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-ink); margin-bottom: 8px; }
.flow__body h3 { font-size: 1.45rem; margin-bottom: 10px; letter-spacing: -0.03em; }
.flow__body p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Storytelling (domains / frameworks) ---------- */
.stories { display: grid; gap: 32px; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.story:nth-child(even) .story__visual { order: -1; }
.story__index { font-size: .82rem; font-weight: 700; letter-spacing: .14em; color: var(--faint); margin-bottom: 14px; }
.story h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.035em; }
.story p { color: var(--muted); font-size: 1.1rem; margin-top: 16px; line-height: 1.55; }
.story__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.story__tags span { font-size: .8rem; font-weight: 600; color: var(--blue-ink); background: var(--blue-soft); border: 1px solid rgba(31,107,255,0.18); padding: 6px 12px; border-radius: 980px; }
.story__visual { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 0% 0%, var(--blue-soft), transparent 58%),
    radial-gradient(120% 120% at 100% 100%, var(--green-soft), transparent 58%), var(--surface-2);
  border: 1px solid var(--border); }
.story__illu { position: relative; width: 70%; max-width: 320px; z-index: 1; }
.story__illu svg { width: 100%; height: auto; display: block; overflow: visible; }
.story__rings { position: absolute; inset: 0; pointer-events: none; }
.story__rings span { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid rgba(31,107,255,0.14); transform: translate(-50%, -50%); animation: ripple 5.5s ease-out infinite; }
.story__rings span:nth-child(2) { animation-delay: 1.8s; border-color: rgba(18,161,80,0.14); }
.story__rings span:nth-child(3) { animation-delay: 3.6s; }
@keyframes ripple { 0% { width: 70px; height: 70px; opacity: .7; } 100% { width: 440px; height: 440px; opacity: 0; } }

/* illustration motion */
.illu-float { animation: illoFloat 4.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.illu-swing { animation: illoSwing 4s ease-in-out infinite; transform-box: fill-box; transform-origin: top center; }
.illu-pulse { animation: illoPulse 2.2s ease-in-out infinite; }
.illu-draw { stroke-dasharray: 240; stroke-dashoffset: 240; animation: illoDraw 4.4s var(--ease) infinite; }
.illu-drop { transform-box: fill-box; animation: illoDrop 2.6s ease-in infinite; }
@keyframes illoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes illoSwing { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes illoPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes illoDraw { 0% { stroke-dashoffset: 240; } 45% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
@keyframes illoDrop { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(30px); opacity: 0; } }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; }
.timeline li { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s; }
.timeline li:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.timeline__num { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; }
.timeline h3 { font-size: 1.12rem; margin: 12px 0 8px; }
.timeline p { color: var(--muted); font-size: .92rem; }

/* ---------- Plays / case studies ---------- */
.plays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.play { display: flex; flex-direction: column; gap: 14px; padding: 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.play:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.play__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.play__client { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.play__result { font-size: .74rem; padding: 5px 12px; border-radius: 980px; color: var(--green-ink); background: var(--green-soft); border: 1px solid rgba(18,161,80,0.18); font-weight: 600; }
.play h3 { font-size: 1.28rem; }
.play p { color: var(--muted); flex: 1; }
.link-arrow { color: var(--blue-ink); font-weight: 600; font-size: .92rem; display: inline-flex; gap: 7px; align-items: center; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; padding: 34px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s; }
.member:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.member__avatar { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-weight: 700; font-size: 1.4rem; color: #fff; background: var(--grad); }
.member h3 { font-size: 1.12rem; }
.member__role { color: var(--blue-ink); font-size: .85rem; font-weight: 600; margin-top: 5px; }
.member__bio { color: var(--muted); font-size: .9rem; margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: box-shadow .3s; }
.faq__item.is-open { box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); padding: 22px 24px; font-size: 1.08rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; letter-spacing: -0.02em; }
.faq__q .ic { color: var(--blue); transition: transform .35s var(--ease); font-size: 1.5rem; line-height: 1; }
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- GAURI stages ---------- */
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: stage; }
.stage { padding: 30px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); position: relative; transition: transform .45s var(--ease), box-shadow .45s; }
.stage:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.stage::before { counter-increment: stage; content: "0" counter(stage); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.stage h3 { margin: 10px 0 8px; font-size: 1.18rem; }
.stage p { color: var(--muted); font-size: .92rem; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill { padding: 13px 22px; border-radius: 980px; background: var(--surface); border: 1px solid var(--border-strong); color: var(--text); font-weight: 500; transition: transform .35s var(--ease), box-shadow .35s; }
.pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 32px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.stat__value { font-size: 2.3rem; font-weight: 700; letter-spacing: -0.03em; }
.stat__label { color: var(--muted); font-size: .88rem; margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 72px 48px; text-align: center; background: var(--ink); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 20% 0%, rgba(31,107,255,0.4), transparent 60%), radial-gradient(700px 400px at 90% 100%, rgba(18,161,80,0.32), transparent 60%); opacity: .85; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 16px auto 30px; max-width: 56ch; font-size: 1.1rem; }
.cta-band .hero__cta { justify-content: center; }
.cta-band .btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); }
.cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.16); }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: 90px 0 50px; position: relative; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); letter-spacing: -0.04em; }
.page-hero p { color: var(--muted); max-width: 62ch; margin: 22px auto 0; font-size: 1.2rem; line-height: 1.5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { padding: 38px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-info h2 { font-size: 1.45rem; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info .row:last-child { border-bottom: 0; }
.contact-info .row .tag { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: .72rem; font-weight: 700; color: var(--blue-ink); background: var(--blue-soft); border: 1px solid rgba(31,107,255,0.16); }
.contact-info .row .k { color: var(--faint); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-info .row .v { color: var(--ink); font-size: 1.04rem; }
.form { padding: 38px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: grid; gap: 18px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text); font: inherit; font-size: .96rem; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,107,255,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form__status { font-size: .92rem; min-height: 1.2em; margin: 0; }
.form__status.is-ok { color: var(--green-ink); }
.form__status.is-err { color: #c0392b; }
.form__success { text-align: center; padding: 44px 24px; }
.form__success .ic { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; color: #fff; background: var(--green); }

/* ---------- Article / legal / use case ---------- */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.article p { color: var(--text); margin-bottom: 14px; font-size: 1.06rem; }
.article .updated { color: var(--faint); font-size: .92rem; margin-bottom: 30px; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; color: var(--text); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; border-radius: 8px; background: var(--green-soft); color: var(--green-ink); font-size: .8rem; display: grid; place-items: center; border: 1px solid rgba(18,161,80,0.2); }

/* ---------- Footer ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 80px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__about { max-width: 34ch; }
.footer__about p { color: var(--muted); font-size: .92rem; margin-top: 16px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { padding: 8px 15px; border-radius: 980px; border: 1px solid var(--border-strong); font-size: .85rem; color: var(--muted); transition: border-color .2s, color .2s, transform .3s var(--ease); }
.footer__social a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.footer__col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: .94rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--faint); font-size: .88rem; }

/* ---------- Reveal / scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal[data-anim="scale"] { transform: scale(0.93); }
.reveal[data-anim="blur"] { transform: translateY(30px); filter: blur(14px); }
.reveal[data-anim="left"] { transform: translateX(-50px); }
.reveal[data-anim="right"] { transform: translateX(50px); }
.reveal[data-anim="fade"] { transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .cards, .stages { grid-template-columns: repeat(2, 1fr); }
  .timeline, .stats { grid-template-columns: repeat(2, 1fr); }
  .plays { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .scrolly { grid-template-columns: 1fr; gap: 32px; }
  .scrolly__aside { position: static; }
  .story { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .story:nth-child(even) .story__visual { order: 0; }
}
@media (max-width: 640px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 60px; }
  .cards, .cards--2, .stages, .timeline, .stats, .team { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
  .flow__item { grid-template-columns: 1fr; }
  .hero__proof { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .strip__track, .story__rings span, .hero__caret, .illu-float, .illu-swing, .illu-pulse, .illu-draw, .illu-drop { animation: none !important; }
  .illu-draw { stroke-dashoffset: 0 !important; }
}
