/* =========================================================
   YHN Services — design tokens
   ========================================================= */
:root {
  --paper: #f2f0eb;
  --paper-2: #e8e5de;
  --paper-3: #dcd8cf;
  --ink: #0f0f0e;
  --ink-2: #1b1b19;
  --graphite: #26261f;
  --text: #2b2a27;
  --mute: #6f6c64;
  --line: rgba(15, 15, 14, .12);
  --line-inv: rgba(242, 240, 235, .14);
  --accent: #7ed957;        /* brand green from the logo — fills & text on dark */
  --accent-strong: #2f9420; /* large text on light backgrounds */
  --accent-deep: #2a7a1c;   /* small text on light backgrounds */
  --accent-ink: #0f0f0e;

  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Syne", "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: clamp(16px, 3.2vw, 48px);
  --r-lg: clamp(18px, 2vw, 28px);
  --r-md: 16px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--ink); }

.wrap { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .02em; text-transform: uppercase; }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--mute); }
/* Bold-statement typography: headings in Syne caps, <em> = outlined word, .hl = green word */
em { font-style: normal; color: transparent; -webkit-text-stroke: max(1px, .022em) var(--stroke, var(--ink)); padding-right: .02em; }
.hl { color: var(--accent-strong); }
.arch, .industries, .footer, .menu, .svc--ink, .svc--graphite { --stroke: var(--accent); }
.svc--paper, .svc--accent, .cta { --stroke: var(--ink); }
@supports not (-webkit-text-stroke: 1px black) { em { color: inherit; } }

h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 74px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --h: 52px;
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  height: var(--h); padding: 0 24px; border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: -.01em;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .4s var(--ease), border-color .4s var(--ease), transform .3s var(--ease), translate .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: scale(.98); }

.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent::before { background: var(--ink); }
.btn-accent:hover { color: var(--paper); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink::before { background: var(--accent); }
.btn-ink:hover { color: var(--ink); }
.btn-outline { border: 1px solid currentColor; color: var(--ink); }
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: var(--paper); border-color: var(--ink); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--line); transition: border-color .3s; }
.link-arrow:hover { border-color: var(--ink); }
.link-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   Nav
   ========================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 80; padding: 8px var(--gutter); transition: transform .5s var(--ease); }
.nav.hidden { transform: translateY(-110%); }
.nav-inner {
  max-width: calc(1440px - 2 * var(--gutter)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 56px; padding: 0 6px 0 14px; border-radius: 999px;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled .nav-inner { background: rgba(242, 240, 235, .78); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 0 0 1px var(--line), 0 10px 30px -18px rgba(0,0,0,.35); }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); transition: color .3s; }
.logo { display: block; width: 66px; height: 30px; }
.logo path { fill: currentColor; }
.logo circle { fill: var(--accent); }
.brand-sub { font-family: var(--mono); font-size: 10px; line-height: 1.3; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); padding-left: 12px; border-left: 1px solid var(--line); transition: color .3s, border-color .3s; }

.nav-links { display: flex; gap: 4px; }
.nav-links a { position: relative; padding: 8px 14px; font-size: 15px; color: var(--text); border-radius: 999px; transition: background .3s, color .3s; }
.nav-links a:hover { background: rgba(15,15,14,.06); color: var(--ink); }
.nav-cta { --h: 42px; padding: 0 18px 0 20px; }
.nav-cta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); transition: background .3s; }
.nav-cta:hover .dot { background: var(--ink); }

.burger { display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.6px; background: var(--paper); transition: transform .4s var(--ease), top .4s var(--ease); }
.burger span:first-child { top: 18px; } .burger span:last-child { top: 25px; }
.burger.open span:first-child { top: 21.5px; transform: rotate(45deg); }
.burger.open span:last-child { top: 21.5px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 70; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between; padding: 110px var(--gutter) 32px;
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease); visibility: hidden;
}
.menu.open { clip-path: inset(0 0 0 0); visibility: visible; }
.menu-open .nav .nav-inner { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.menu-open .brand { color: var(--paper); }
.menu-open .brand-sub { color: rgba(242,240,235,.6); border-color: var(--line-inv); }
.menu-open .burger { background: var(--accent); }
.menu-open .burger span { background: var(--ink); }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { display: flex; align-items: baseline; gap: 14px; font-family: var(--display); text-transform: uppercase; font-size: clamp(30px, 8.6vw, 56px); font-weight: 700; letter-spacing: -.035em; line-height: 1.15; padding: 4px 0; border-bottom: 1px solid var(--line-inv); }
.menu nav small { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0; }
.menu-foot { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 13px; color: rgba(242,240,235,.7); }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding-top: 84px; }
.hero-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--mute); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.hero-title {
  margin: clamp(20px, 2.6vw, 36px) 0 clamp(24px, 3vw, 40px);
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 122px);
  line-height: .95; letter-spacing: -.045em; font-weight: 700; color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero-title .line > span { display: inline-block; }
.hero-title em { padding-right: .04em; }

.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; padding-bottom: clamp(32px, 4vw, 56px); }
.hero-foot p { max-width: 520px; font-size: clamp(16px, 1.35vw, 19px); color: var(--text); }
.hero-cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: clamp(420px, 78vh, 820px); background: var(--ink);
}
.live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #7cf29a; }
.live i { width: 7px; height: 7px; border-radius: 50%; background: #3ee06b; box-shadow: 0 0 0 0 rgba(62,224,107,.6); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(62,224,107,0); } 100% { box-shadow: 0 0 0 0 rgba(62,224,107,0); } }

/* =========================================================
   Ticker
   ========================================================= */
.ticker { margin-top: clamp(56px, 7vw, 110px); background: var(--ink); color: var(--paper); overflow: hidden; padding: 22px 0; }
.ticker-track { display: flex; align-items: center; gap: 36px; width: max-content; animation: marquee 38s linear infinite; }
.ticker span { font-family: var(--display); text-transform: uppercase; font-size: clamp(20px, 2.2vw, 32px); font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.ticker i { font-style: normal; color: var(--accent); font-size: 20px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Statement
   ========================================================= */
.statement { padding: clamp(90px, 12vw, 190px) 0; }
.statement .eyebrow { margin-bottom: 28px; }
.statement-text {
  font-family: var(--display); font-size: clamp(28px, 3.9vw, 62px); line-height: 1.12; letter-spacing: -.035em; font-weight: 600; color: var(--ink);
  max-width: 1280px;
}
.statement-text .w { display: inline; transition: opacity .2s; }
.pill-img {
  display: inline-block; vertical-align: middle; width: 1.9em; height: .95em; margin: 0 .08em; border-radius: 999px;
  background-size: cover; background-position: center; transform: translateY(-.06em);
}

/* =========================================================
   Section heads
   ========================================================= */
.sec-head { margin-bottom: clamp(44px, 6vw, 88px); max-width: 900px; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head p { margin-top: 22px; font-size: clamp(16px, 1.3vw, 19px); color: var(--mute); max-width: 560px; }
.sec-head--split { max-width: none; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.sec-head--split p { margin-top: 0; justify-self: end; }

/* =========================================================
   Services — sticky stacked cards
   ========================================================= */
.services { padding-bottom: clamp(90px, 10vw, 160px); }
.stack { position: relative; }
.svc {
  position: sticky; top: calc(100px + var(--i) * 22px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 3vw, 48px);
  min-height: min(620px, calc(100vh - 150px)); margin-bottom: 28px; padding: clamp(22px, 3vw, 44px);
  border-radius: var(--r-lg); transform-origin: center top; will-change: transform;
}
.svc:last-child { margin-bottom: 0; }
.svc--ink { background: var(--ink); color: var(--paper); }
.svc--paper { background: #fbfaf7; color: var(--ink); box-shadow: 0 0 0 1px var(--line); }
.svc--accent { background: var(--accent); color: var(--accent-ink); }
.svc--graphite { background: var(--graphite); color: var(--paper); }

.svc-body { display: flex; flex-direction: column; }
.svc-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: auto; padding-bottom: 40px; }
.svc-num { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 4vw, 64px); line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--stroke); }
.chip { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; border: 1px solid currentColor; opacity: .75; }
.svc h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(28px, 3.1vw, 50px); line-height: 1; letter-spacing: -.035em; font-weight: 700; margin-bottom: 18px; }
.svc p { font-size: clamp(15px, 1.2vw, 18px); opacity: .78; max-width: 520px; margin-bottom: 26px; }
.svc ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.svc li { font-size: 14.5px; padding: 12px 0 12px 22px; border-top: 1px solid currentColor; border-color: color-mix(in srgb, currentColor 18%, transparent); position: relative; }
.svc li::before { content: ""; position: absolute; left: 0; top: 19px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }
.svc--accent li::before { background: var(--accent-ink); }
.svc-media { border-radius: calc(var(--r-lg) - 8px); overflow: hidden; min-height: 280px; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; }

.also { margin-top: clamp(60px, 8vw, 110px); }
.also .eyebrow { margin-bottom: 20px; }
.also-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.also-item { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 26px 48px 26px 0; border-bottom: 1px solid var(--line); }
.also-item + .also-item { padding-left: 24px; border-left: 1px solid var(--line); }
.also-item b { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.also-item span { font-size: 14.5px; color: var(--mute); }
.also-item svg { position: absolute; right: 16px; top: 28px; width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease), stroke .3s; }
.also-item:hover svg { transform: translate(3px, -3px); stroke: var(--accent-strong); }

/* =========================================================
   Use cases — before / after
   ========================================================= */
.usecases { padding: clamp(90px, 10vw, 150px) 0; }
.uc-list { border-top: 1px solid var(--line); }
.uc { display: grid; grid-template-columns: .9fr 1.2fr 1.2fr; gap: clamp(20px, 3vw, 44px); padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.uc h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(18px, 1.7vw, 25px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); line-height: 1.12; }
.uc-col { display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; }
.uc-col small { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.uc-col small::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.uc-before small { color: var(--mute); }
.uc-before small::before { border: 1.5px solid var(--mute); }
.uc-before p { color: var(--mute); }
.uc-after small { color: var(--accent-deep); }
.uc-after small::before { background: var(--accent-strong); }
.uc-after p { color: var(--ink); font-weight: 500; }

.apps { margin-top: clamp(48px, 6vw, 80px); display: flex; gap: 32px; align-items: baseline; }
.apps .mono { color: var(--mute); flex: none; }
.apps div { display: flex; flex-wrap: wrap; gap: 10px; }
.apps b { font-weight: 400; font-size: 14px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fbfaf7; color: var(--text); }

/* =========================================================
   Skill India automation (dark)
   ========================================================= */
.arch { background: var(--ink); color: var(--paper); padding: clamp(90px, 11vw, 170px) 0; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.arch h2 { color: var(--paper); }
.arch .eyebrow { color: rgba(242,240,235,.55); }
.arch .sec-head p { color: rgba(242,240,235,.62); }

.skill-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; margin-bottom: clamp(48px, 6vw, 80px); }
.skill-media { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 500px; background: var(--ink-2); }
.sheetcard {
  position: absolute; right: 18px; bottom: 18px; width: min(380px, calc(100% - 36px));
  background: rgba(242, 240, 235, .95); color: var(--ink); border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.7);
}
.sheet-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.sheet-head b { font-size: 15px; font-weight: 600; letter-spacing: -.02em; }
.sheet-ok { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: #0f7b3a; background: rgba(15,123,58,.1); padding: 4px 8px; border-radius: 999px; white-space: nowrap; }
.sheetcard table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sheetcard th { text-align: left; font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--mute); letter-spacing: .04em; text-transform: uppercase; padding: 6px 0; border-bottom: 1px solid var(--line); }
.sheetcard td { padding: 7px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.sheetcard td:last-child, .sheetcard th:last-child { text-align: right; }
.sheetcard .pass { color: #0f7b3a; font-weight: 600; }
.sheet-foot { margin-top: 10px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; color: var(--mute); }

.skill-side { display: flex; flex-direction: column; gap: 32px; }
.skill-side .mono { color: rgba(242,240,235,.5); }
.audience { list-style: none; border-top: 1px solid var(--line-inv); margin-top: 14px; }
.audience li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-inv); font-family: var(--display); text-transform: uppercase; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -.02em; font-weight: 700; }
.audience li span { font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--accent); letter-spacing: .04em; }
.schemes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.schemes b { font-weight: 400; font-size: 13.5px; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-inv); color: rgba(242,240,235,.85); }
.skill-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.btn-outline-inv { border: 1px solid rgba(242,240,235,.5); color: var(--paper); }
.btn-outline-inv::before { background: var(--paper); }
.btn-outline-inv:hover { color: var(--ink); border-color: var(--paper); }

.skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-inv); border: 1px solid var(--line-inv); border-radius: var(--r-lg); overflow: hidden; }
.skill-card { background: var(--ink); padding: clamp(24px, 2.6vw, 36px); display: flex; flex-direction: column; gap: 10px; transition: background .4s; }
.skill-card:hover { background: var(--ink-2); }
.skill-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(126,217,87,.12); margin-bottom: 14px; transition: background .4s, transform .5s var(--ease); }
.skill-card:hover .ic { background: var(--accent); }
.skill-card .ic svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
.skill-card:hover .ic svg { stroke: var(--ink); }
.skill-card h4 { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.025em; }
.skill-card p { font-size: 15px; color: rgba(242,240,235,.62); }
.skill-note { margin-top: 24px; font-size: 13px; line-height: 1.6; color: rgba(242,240,235,.45); max-width: 820px; }

/* =========================================================
   Industries
   ========================================================= */
.industries { background: var(--ink); color: var(--paper); padding: 0 0 clamp(90px, 11vw, 170px); }
.industries .wrap { border-top: 1px solid var(--line-inv); padding-top: clamp(80px, 9vw, 140px); }
.industries h2 { color: var(--paper); }
.industries .eyebrow { color: rgba(242,240,235,.55); }
.industries .sec-head p { color: rgba(242,240,235,.62); }

.ind-list { border-top: 1px solid var(--line-inv); }
.ind {
  position: relative; display: grid; grid-template-columns: 70px 1.1fr 1fr 40px; gap: 24px; align-items: center;
  padding: 30px 0; border-bottom: 1px solid var(--line-inv); transition: padding .5s var(--ease), color .3s;
}
.ind::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: 0; }
.ind > * { position: relative; z-index: 1; }
.ind-ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(242,240,235,.24); background: rgba(255,255,255,.04); color: var(--accent); transition: border-color .3s, background .3s, color .3s; }
.ind-ic .ic { width: 22px; height: 22px; }
.ind h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(22px, 2.7vw, 42px); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; }
.ind p { font-size: 15px; color: rgba(242,240,235,.62); max-width: 420px; transition: color .3s; }
.ind-arrow { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; justify-self: end; transition: transform .5s var(--ease); }
@media (hover: hover) {
  .ind:hover { padding-inline: 24px; color: var(--accent-ink); }
  .ind:hover::before { transform: scaleY(1); }
  .ind:hover p { color: var(--accent-ink); }
  .ind:hover .ind-ic { border-color: var(--ink); background: var(--ink); color: var(--accent); }
  .ind:hover .ind-arrow { transform: rotate(45deg); }
}

/* =========================================================
   Process
   ========================================================= */
.process { padding: clamp(90px, 11vw, 170px) 0; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.steps-bar { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--line); }
.steps-bar i { display: block; height: 100%; width: 100%; background: var(--accent-strong); transform-origin: left; }
.js.anim .steps-bar i { transform: scaleX(0); }
.step { padding: 36px 28px 0 0; }
.step + .step { padding-left: 28px; border-left: 1px solid var(--line); }
.step-n { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(56px, 5.8vw, 96px); line-height: .9; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1.5px var(--ink); margin-bottom: 36px; }
.step h4 { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.025em; color: var(--ink); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--mute); }

/* =========================================================
   About
   ========================================================= */
.about { background: var(--paper-2); padding: clamp(90px, 11vw, 170px) 0 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.about-media { position: sticky; top: 110px; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.about-copy .eyebrow { margin-bottom: 20px; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy > p { font-size: clamp(16px, 1.3vw, 19px); color: var(--text); max-width: 620px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats > div { padding: 24px 16px 24px 0; }
.stats > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.stats b { display: block; font-family: var(--display); font-size: clamp(34px, 3.6vw, 56px); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ink); margin-bottom: 8px; }
.stats > div > span { font-size: 13.5px; color: var(--mute); }

.why { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
.why li { display: flex; flex-direction: column; gap: 4px; padding-left: 26px; position: relative; }
.why li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; border: 3px solid var(--accent-strong); }
.why b { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -.02em; }
.why span { font-size: 14.5px; color: var(--mute); }

.tech { margin-top: clamp(80px, 10vw, 140px); border-top: 1px solid var(--line); padding: 26px 0; overflow: hidden; }
.tech-track { display: flex; gap: 12px; width: max-content; animation: marquee 44s linear infinite reverse; }
.tech span { font-family: var(--mono); font-size: 13px; letter-spacing: .02em; padding: 10px 18px; border-radius: 999px; background: var(--paper); color: var(--text); white-space: nowrap; }

/* =========================================================
   CTA
   ========================================================= */
.cta { background: var(--accent); color: var(--accent-ink); padding: clamp(90px, 11vw, 170px) 0 clamp(60px, 7vw, 100px); }
.cta .eyebrow { color: var(--accent-ink); opacity: .7; }
.cta-title { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: clamp(40px, 8.6vw, 150px); line-height: .92; letter-spacing: -.045em; color: var(--accent-ink); margin: 24px 0 clamp(40px, 5vw, 72px); }
.cta-title em { -webkit-text-stroke-width: max(1.5px, .016em); }
.cta-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; padding-top: 28px; border-top: 1px solid rgba(26,10,2,.2); }
.cta-row p { font-size: clamp(16px, 1.35vw, 20px); max-width: 460px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-ink::before { background: #fff; }
.cta .btn-ink:hover { color: var(--ink); }
.cta .btn-outline { color: var(--accent-ink); }
.cta .btn-outline::before { background: var(--accent-ink); }
.cta .btn-outline:hover { color: var(--accent); }

/* =========================================================
   Contact
   ========================================================= */
.contact { padding: clamp(90px, 11vw, 170px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 120px); }
.contact-info .eyebrow { margin-bottom: 20px; }
.info { margin-top: 48px; border-top: 1px solid var(--line); }
.info > div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info dt { color: var(--mute); padding-top: 3px; }
.info dd { font-size: 17px; color: var(--ink); line-height: 1.5; }
.info a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .4s var(--ease); }
.info a:hover { background-size: 100% 1px; }

.form { display: flex; flex-direction: column; gap: 8px; padding: clamp(24px, 3vw, 44px); background: #fbfaf7; border-radius: var(--r-lg); box-shadow: 0 0 0 1px var(--line); }
.chips-field { border: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chips-field legend { color: var(--mute); margin-bottom: 14px; }
.chips-field label { position: relative; cursor: pointer; }
.chips-field input { position: absolute; opacity: 0; pointer-events: none; }
.chips-field span { display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; transition: background .3s, color .3s, border-color .3s; }
.chips-field label:hover span { border-color: var(--ink); }
.chips-field input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chips-field input:focus-visible + span { outline: 2px solid var(--accent-strong); outline-offset: 2px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { position: relative; display: block; padding-top: 18px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--line); padding: 12px 0 12px; border-radius: 0; resize: vertical;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field span { position: absolute; left: 0; top: 30px; font-size: 16px; color: var(--mute); pointer-events: none; transition: transform .3s var(--ease), font-size .3s, color .3s; transform-origin: left; }
.field input:focus + span, .field input:not(:placeholder-shown) + span,
.field textarea:focus + span, .field textarea:not(:placeholder-shown) + span { transform: translateY(-24px); font-size: 12px; color: var(--ink); }
.field .invalid { border-color: #d92d20; }
.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.form-note { color: var(--mute); font-size: 11px; }
.form-note.ok { color: #0f7b3a; }
.form-note.err { color: #d92d20; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink); color: rgba(242,240,235,.7); padding-top: clamp(70px, 8vw, 120px); overflow: hidden; }
.foot-top { display: grid; grid-template-columns: 1.2fr 1.3fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-inv); }
.foot-lead { font-family: var(--display); font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -.03em; line-height: 1.2; color: var(--paper); font-weight: 700; }
.foot-lead a { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); margin-top: 6px; }
.foot-lead svg { width: .8em; height: .8em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.foot-lead a:hover svg { transform: translate(3px, -3px); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-cols div { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.foot-cols .mono { color: rgba(242,240,235,.45); margin-bottom: 6px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; padding: 24px 0; color: rgba(242,240,235,.45); flex-wrap: wrap; }
.to-top:hover { color: var(--paper); }
.foot-word {
  font-family: var(--display); font-size: 8.1vw; font-weight: 800; letter-spacing: -.05em; line-height: .8; white-space: nowrap; text-align: center;
  margin-top: 12px; margin-bottom: -.1em; user-select: none;
  background: linear-gradient(180deg, rgba(242,240,235,.46) 0%, rgba(242,240,235,.14) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* WhatsApp */
.wa { position: fixed; right: 18px; bottom: 18px; z-index: 65; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); }
.wa:hover { transform: scale(1.08); }
.wa svg { width: 28px; height: 28px; fill: #fff; }

/* =========================================================
   Automation visuals — animated UI instead of stock photos
   ========================================================= */
.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.viz:not(.playing) *, .viz:not(.playing) *::before, .viz:not(.playing) *::after { animation-play-state: paused !important; }
@keyframes spin { to { transform: rotate(360deg); } }
.vd-dots { display: inline-flex; gap: 5px; }
.vd-dots i { width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; }
.vd-dots i:nth-child(2) { background: #febc2e; }
.vd-dots i:nth-child(3) { background: #28c840; }

/* ---- Hero: automation engine ---- */
.hero-media.flowviz {
  height: auto; min-height: 540px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: clamp(28px, 6vw, 110px);
  padding: clamp(22px, 3vw, 44px) clamp(18px, 3vw, 44px) 84px;
  color: var(--paper);
  background:
    radial-gradient(560px 340px at 50% 46%, rgba(126,217,87,.16), transparent 70%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--ink);
}
.hero-media.flowviz::after { display: none; }
.fv-wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.fv-wires path { fill: none; stroke: rgba(242,240,235,.14); stroke-width: 1.4; stroke-dasharray: 4 6; transition: stroke .3s; }
.fv-wires path.on { stroke: rgba(126,217,87,.75); stroke-dasharray: none; }
.fv-wires .pk { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(126,217,87,.95)); }
.fv-col { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.fv-head { color: rgba(242,240,235,.45); font-size: 11px; margin-bottom: 4px; }
.fv-node {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  transition: border-color .35s, background .35s, transform .45s var(--ease), box-shadow .35s;
}
.fv-ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: rgba(242,240,235,.85); flex: none; transition: background .35s, color .35s; }
.fv-ic .ic { width: 18px; height: 18px; }
.fv-t { display: flex; flex-direction: column; min-width: 0; }
.fv-t b { font-weight: 500; font-size: 14.5px; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv-t small { font-size: 12px; color: rgba(242,240,235,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv-node.active { border-color: rgba(126,217,87,.75); background: rgba(126,217,87,.09); transform: translateX(5px); box-shadow: 0 0 0 4px rgba(126,217,87,.07); }
.fv-out .fv-node.active { transform: translateX(-5px); }
.fv-node.active .fv-ic, .fv-out .fv-node.done .fv-ic { background: var(--accent); color: var(--ink); }
.fv-node.done { border-color: rgba(126,217,87,.3); }
.fv-ok { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--ink); transform: scale(0); transition: transform .45s var(--ease); flex: none; }
.fv-ok .ic { width: 13px; height: 13px; stroke-width: 2.8; }
.fv-node.done .fv-ok { transform: scale(1); }
.fv-hub { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.fv-core {
  position: relative; width: clamp(120px, 12vw, 168px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, #262623, #111110 70%); border: 1px solid rgba(126,217,87,.4);
  box-shadow: 0 0 60px -10px rgba(126,217,87,.35), inset 0 0 30px rgba(0,0,0,.6); transition: transform .35s var(--ease), box-shadow .35s;
}
.fv-core .logo { width: 56%; height: auto; aspect-ratio: 248 / 113; color: var(--paper); }
.fv-core.hit { transform: scale(1.07); box-shadow: 0 0 100px -4px rgba(126,217,87,.65), inset 0 0 30px rgba(0,0,0,.6); }
.fv-ring { position: absolute; inset: -12px; border-radius: 50%; border: 1px dashed rgba(126,217,87,.45); animation: spin 18s linear infinite; }
.fv-ring.r2 { inset: -12px; border: 1px solid rgba(126,217,87,.35); animation: ringOut 2.6s ease-out infinite; }
@keyframes ringOut { 0% { transform: scale(.92); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
.fv-hub b { font-family: var(--display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: -.01em; margin-top: 18px; }
.fv-hub small { display: inline-flex; align-items: center; gap: 8px; color: #7cf29a; font-size: 11px; }
.fv-live { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #3ee06b; animation: ping 1.8s infinite; }
.fv-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; display: flex; justify-content: space-between; gap: 16px;
  padding: 16px clamp(18px, 3vw, 44px); border-top: 1px solid rgba(255,255,255,.08); color: rgba(242,240,235,.5); font-size: 11px;
}
.fv-bar span { display: inline-flex; align-items: center; gap: 8px; }
.fv-bar b { color: var(--paper); font-weight: 500; }

/* ---- Service visuals: shared ---- */
.svc-viz { position: relative; display: flex; align-items: center; justify-content: center; padding: clamp(16px, 2.4vw, 32px); background-image: radial-gradient(rgba(128,128,128,.22) 1px, transparent 1px); background-size: 18px 18px; }
.svc--ink .svc-viz { background-color: #1d1d1b; }
.svc--paper .svc-viz { background-color: var(--paper-2); }
.svc--accent .svc-viz { background-color: var(--ink); }
.svc--graphite .svc-viz { background-color: #171714; }

/* 01 — Excel → WhatsApp report */
.v-report { flex-direction: column; align-items: center; }
.vr-sheet { position: relative; width: min(100%, 380px); background: #fbfaf7; color: var(--ink); border-radius: 12px; padding: 12px 12px 10px; font-size: 12.5px; box-shadow: 0 18px 34px -18px rgba(0,0,0,.85); align-self: flex-start; }
.vr-top { display: flex; justify-content: space-between; align-items: center; font-size: 10.5px; color: var(--mute); margin: 0 4px 8px; }
.vr-top span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.vr-top .ic { width: 14px; height: 14px; color: #1d6f42; }
.vr-read { color: var(--accent-deep); animation: vrRead 8s infinite; }
.vr-row { display: grid; grid-template-columns: 1.7fr .6fr 1fr; gap: 8px; padding: 6px 8px; border-radius: 6px; font-variant-numeric: tabular-nums; animation: vrRow 8s infinite backwards; animation-delay: calc(var(--d, 0) * .45s); }
.vr-row span:nth-child(n+2) { text-align: right; }
.vr-h { color: var(--mute); font-family: var(--mono); font-size: 10px; text-transform: uppercase; border-bottom: 1px solid var(--line); border-radius: 0; animation: none; }
.vr-t { font-weight: 600; border-top: 1px solid var(--line); border-radius: 0 0 6px 6px; margin-top: 2px; animation: vrTotal 8s infinite; }
@keyframes vrRow { 0%, 2% { background: transparent; } 4%, 9% { background: rgba(126,217,87,.3); } 12%, 100% { background: transparent; } }
@keyframes vrTotal { 0%, 24% { background: transparent; } 27%, 36% { background: var(--accent); } 42%, 100% { background: transparent; } }
@keyframes vrRead { 0%, 30% { opacity: 1; } 34%, 94% { opacity: .25; } 100% { opacity: 1; } }
.vr-chat { position: relative; z-index: 1; width: min(100%, 290px); align-self: flex-end; margin-top: -30px; background: #efeae2; color: #111b21; border-radius: 14px; overflow: hidden; box-shadow: 0 22px 44px -18px rgba(0,0,0,.9); }
.vr-head { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #202c33; color: #e9edef; }
.vr-av { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 13px; }
.vr-head b { display: block; font-size: 13px; font-weight: 600; line-height: 1.2; }
.vr-head small { font-size: 11px; opacity: .6; }
.vr-body { position: relative; padding: 12px; min-height: 100px; }
.vr-typing { position: absolute; left: 12px; top: 12px; display: inline-flex; gap: 4px; padding: 11px 12px; background: #fff; border-radius: 10px; animation: vrTyping 8s infinite; }
.vr-typing i { width: 6px; height: 6px; border-radius: 50%; background: #8696a0; animation: typeDot 1s infinite; }
.vr-typing i:nth-child(2) { animation-delay: .15s; }
.vr-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typeDot { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-3px); opacity: 1; } }
.vr-msg { position: relative; background: #d9fdd3; border-radius: 10px 10px 10px 3px; padding: 9px 11px 20px; font-size: 12.5px; line-height: 1.45; transform-origin: left bottom; animation: vrMsg 8s infinite; }
.vr-time { position: absolute; right: 9px; bottom: 5px; font-size: 9.5px; color: #53bdeb; text-transform: none; }
@keyframes vrTyping { 0%, 36% { opacity: 0; } 38%, 52% { opacity: 1; } 54%, 100% { opacity: 0; } }
@keyframes vrMsg { 0%, 53% { opacity: 0; transform: translateY(8px) scale(.96); } 57%, 92% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; transform: translateY(-4px); } }

/* 02 — apps hub */
.v-hub { flex-direction: column; gap: 12px; }
.hub-svg { width: 100%; max-width: 460px; height: auto; overflow: visible; }
.hub-lines path { fill: none; stroke: rgba(15,15,14,.2); stroke-width: 1.4; stroke-dasharray: 3 5; }
.hub-pk circle { fill: var(--accent-strong); }
.hub-pk circle.in { fill: var(--ink); }
.hn rect { fill: #fbfaf7; stroke: rgba(15,15,14,.14); stroke-width: 1.5; animation: hnFlash 2.4s infinite backwards; animation-delay: var(--d); }
.hn text { font-family: var(--sans); font-size: 12.5px; font-weight: 500; fill: var(--ink); }
.hn-dot { fill: var(--accent-strong); }
@keyframes hnFlash { 0%, 100% { stroke: rgba(15,15,14,.14); fill: #fbfaf7; } 3%, 16% { stroke: var(--accent-strong); fill: #eefbe7; } }
.hc-bg { fill: var(--ink); }
.hc-logo { fill: var(--paper); }
.hc-dot { fill: var(--accent); }
.hc-halo { fill: none; stroke: var(--accent-strong); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: haloOut 2.4s ease-out infinite; }
@keyframes haloOut { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.hub-ai { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; font-size: 10.5px; color: var(--text); background: #fbfaf7; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; }
.hub-ai b { font-weight: 500; color: var(--accent-deep); animation: aiTick 4.8s infinite backwards; }
.hub-ai b:nth-of-type(2) { animation-delay: .5s; }
.hub-ai b:nth-of-type(3) { animation-delay: 1s; }
@keyframes aiTick { 0%, 8% { opacity: .15; } 16%, 88% { opacity: 1; } 100% { opacity: .15; } }
.hub-ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-strong); animation: ping 1.8s infinite; }

/* 03 — ERP dashboard */
.vd-win { width: min(100%, 470px); background: #fbfaf7; color: var(--ink); border-radius: 12px; overflow: hidden; box-shadow: 0 26px 50px -24px rgba(0,0,0,.95); font-size: 12px; }
.vd-top { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: #f0ede7; border-bottom: 1px solid var(--line); }
.vd-top .mono { flex: 1; font-size: 10px; color: var(--mute); }
.vd-user { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); font-size: 9.5px; font-weight: 700; }
.vd-body { display: grid; grid-template-columns: 34px 1fr; }
.vd-side { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 12px 0; background: var(--ink); }
.vd-side i { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,.18); }
.vd-side i.on { background: var(--accent); }
.vd-main { display: flex; flex-direction: column; gap: 10px; padding: 12px; min-width: 0; }
.vd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vd-kpis > div { display: flex; flex-direction: column; gap: 1px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; min-width: 0; }
.vd-kpis small { font-size: 9.5px; color: var(--mute); white-space: nowrap; }
.vd-kpis b { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.vd-up { font-size: 9.5px; color: var(--accent-deep); }
.vd-dn { font-size: 9.5px; color: #c2410c; }
.vd-chart { display: flex; align-items: flex-end; gap: 7px; height: 76px; padding: 6px 4px 0; border-bottom: 1px solid var(--line); }
.vd-chart i { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: var(--ink); transform-origin: bottom; animation: vdBar 6s infinite backwards; animation-delay: calc(var(--d) * .12s); }
.vd-chart i:nth-child(6) { background: var(--accent-strong); }
@keyframes vdBar { 0% { transform: scaleY(.12); } 18%, 86% { transform: scaleY(1); } 100% { transform: scaleY(.12); } }
.vd-tr { display: grid; grid-template-columns: minmax(0, 1fr) auto 58px; gap: 10px; align-items: center; padding: 5px 0; border-bottom: 1px dashed var(--line); font-size: 11px; }
.vd-tr span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vd-st { position: relative; height: 19px; }
.vd-st i { position: absolute; inset: 0; display: grid; place-items: center; border-radius: 999px; font-style: normal; font-size: 9.5px; font-weight: 600; }
.vd-st i:first-child { background: #fdebd9; color: #9a3412; animation: vdPend 6s infinite backwards; animation-delay: calc(var(--d, 0) * .7s + .8s); }
.vd-st i:last-child { background: #dcfce7; color: #166534; animation: vdPaid 6s infinite backwards; animation-delay: calc(var(--d, 0) * .7s + .8s); }
.vd-tr:nth-child(2) .vd-st i { animation-delay: 1.5s; }
.vd-tr:nth-child(3) .vd-st i { animation-delay: 2.2s; }
@keyframes vdPend { 0%, 38% { opacity: 1; } 44%, 94% { opacity: 0; } 100% { opacity: 1; } }
@keyframes vdPaid { 0%, 38% { opacity: 0; transform: scale(.8); } 44%, 94% { opacity: 1; transform: none; } 100% { opacity: 0; } }

/* 04 — website + mobile app */
.v-phone { overflow: hidden; }
.vp-browser { position: absolute; left: 6%; top: 12%; width: 62%; height: 72%; background: #fbfaf7; border-radius: 10px; overflow: hidden; box-shadow: 0 22px 44px -22px rgba(0,0,0,.95); }
.vp-bar { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: #efece6; }
.vp-url { flex: 1; font-size: 9.5px; text-transform: none; color: var(--mute); background: #fff; border-radius: 99px; padding: 3px 10px; }
.vp-site { display: flex; flex-direction: column; gap: 8px; padding: 16px 14px; }
.sk { display: block; height: 10px; border-radius: 6px; background: linear-gradient(90deg, #e6e2da 25%, #f5f2ec 50%, #e6e2da 75%); background-size: 200% 100%; animation: shimmer 1.8s linear infinite; }
.sk.w70 { width: 70%; height: 16px; }
.sk.w45 { width: 45%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.vp-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.vp-tiles i { aspect-ratio: 1; border-radius: 8px; background: #ece8e0; }
.vp-tiles i:nth-child(2) { background: #dff5d3; }
.vp-phone { position: relative; z-index: 1; margin-left: 36%; width: 44%; max-width: 205px; aspect-ratio: 9 / 18.5; padding: 7px; border-radius: 28px; background: #0b0b0a; box-shadow: 0 30px 50px -20px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.1); }
.vp-notch { position: absolute; z-index: 5; top: 13px; left: 50%; width: 32%; height: 12px; border-radius: 99px; background: #0b0b0a; transform: translateX(-50%); }
.vp-screen { position: relative; height: 100%; display: flex; flex-direction: column; gap: 7px; padding: 32px 10px 10px; border-radius: 21px; overflow: hidden; background: #fbfaf7; color: var(--ink); font-size: 10.5px; }
.vp-app b { display: block; font-family: var(--display); font-size: 13px; font-weight: 700; }
.vp-app small { font-size: 9px; color: var(--mute); }
.vp-item { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 7px; padding: 6px; border-radius: 9px; background: #fff; border: 1px solid var(--line); }
.vp-item i { width: 24px; height: 24px; border-radius: 6px; background: #f1ead9; }
.vp-item:nth-of-type(3) i { background: #fbe3c8; }
.vp-item:nth-of-type(4) i { background: #fff1b8; }
.vp-item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vp-pay { margin-top: auto; padding: 9px; border-radius: 10px; text-align: center; font-weight: 600; background: var(--ink); color: var(--paper); animation: vpTap 8s infinite; }
@keyframes vpTap { 0%, 9% { transform: scale(1); background: var(--ink); } 11% { transform: scale(.94); } 14%, 92% { transform: scale(1); background: var(--accent-strong); } 100% { background: var(--ink); } }
.vp-toast { position: absolute; z-index: 6; left: 8px; right: 8px; top: 8px; display: flex; align-items: center; gap: 7px; padding: 9px 10px; border-radius: 12px; background: rgba(20,20,18,.94); color: var(--paper); font-size: 10px; font-weight: 500; box-shadow: 0 12px 22px -10px rgba(0,0,0,.7); transform: translateY(-160%); animation: vpToast 8s infinite backwards; }
.vp-toast .ic { width: 14px; height: 14px; color: var(--accent); }
.vp-toast.t1 { animation-delay: 1.1s; }
.vp-toast.t2 { animation-delay: 3.3s; }
.vp-toast.t3 { animation-delay: 5.5s; }
@keyframes vpToast { 0% { transform: translateY(-160%); } 5%, 22% { transform: translateY(0); } 27%, 100% { transform: translateY(-160%); } }

/* ---- Skill India pipeline ---- */
.skill-viz { display: flex; flex-direction: column; gap: 14px; min-height: 0; padding: clamp(14px, 2vw, 22px); background: #1b1b19; border: 1px solid var(--line-inv); }
.skill-viz .sheetcard { position: static; width: auto; box-shadow: none; }
.sv-track { display: flex; align-items: center; gap: 6px; }
.sv-track span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--line-inv); color: rgba(242,240,235,.6); font-size: 12px; white-space: nowrap; animation: svStep 8s infinite backwards; animation-delay: calc(var(--d) * 2s); }
.sv-track .ic { width: 14px; height: 14px; }
.sv-track > i { flex: 1; min-width: 8px; height: 1px; background: var(--line-inv); }
@keyframes svStep { 0%, 100% { background: transparent; border-color: var(--line-inv); color: rgba(242,240,235,.6); } 2%, 24% { background: var(--accent); border-color: var(--accent); color: var(--ink); } 27% { background: transparent; border-color: var(--line-inv); color: rgba(242,240,235,.6); } }
.skill-viz tbody tr { animation: svRow 8s infinite backwards; animation-delay: calc(var(--r) * .5s + .4s); }
.skill-viz tbody td span { display: inline-block; animation: svCell 8s infinite backwards; animation-delay: calc(var(--r) * .5s + .4s); }
@keyframes svRow { 0%, 1% { background: transparent; } 3%, 7% { background: rgba(126,217,87,.28); } 10%, 100% { background: transparent; } }
@keyframes svCell { 0%, 2% { opacity: 0; transform: translateY(5px); } 6%, 93% { opacity: 1; transform: none; } 98%, 100% { opacity: 0; } }
.sheetcard .fail { color: #b42318; font-weight: 600; }
.sv-prog { display: inline-block; width: 72px; height: 5px; border-radius: 99px; background: var(--line); overflow: hidden; }
.sv-prog i, .sv-bar i { display: block; height: 100%; transform-origin: left; animation: svProg 8s infinite; }
.sv-prog i { background: var(--accent-strong); }
@keyframes svProg { 0% { transform: scaleX(0); } 45%, 93% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.sv-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sv-mini { display: flex; flex-direction: column; gap: 9px; padding: 12px 14px; border: 1px solid var(--line-inv); border-radius: 14px; color: var(--paper); }
.sv-mini small { font-size: 10.5px; color: rgba(242,240,235,.5); }
.sv-mini b { font-size: 13px; font-weight: 500; }
.sv-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; }
.sv-bar i { background: var(--accent); }
.sv-fp { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.sv-fp i { position: relative; aspect-ratio: 3 / 4; border: 1px dashed rgba(242,240,235,.3); border-radius: 5px; overflow: hidden; }
.sv-fp i::after { content: ""; position: absolute; inset: 3px; border-radius: 45% 45% 40% 40%; background: repeating-radial-gradient(ellipse at 50% 75%, rgba(126,217,87,.95) 0 1px, transparent 1px 3px); opacity: 0; animation: svFp 8s infinite backwards; }
.sv-fp i:nth-child(2)::after { animation-delay: .45s; }
.sv-fp i:nth-child(3)::after { animation-delay: .9s; }
.sv-fp i:nth-child(4)::after { animation-delay: 1.35s; }
.sv-fp i:nth-child(5)::after { animation-delay: 1.8s; }
@keyframes svFp { 0%, 4% { opacity: 0; transform: scale(.6); } 9%, 90% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }

/* ---- Statement icon pills ---- */
.pill-ic { display: inline-grid; place-items: center; vertical-align: middle; width: 1.9em; height: .95em; margin: 0 .08em; border-radius: 999px; background: var(--accent); color: var(--ink); transform: translateY(-.06em); }
.pill-ic .ic { width: .55em; height: .55em; stroke-width: 2; }
.pill-ic.pi-chat { background: var(--ink); color: var(--accent); }
.pill-ic.pi-gear .ic { animation: spin 6s linear infinite; }

/* ---- About: live automation log ---- */
.about-log { display: flex; flex-direction: column; background: var(--ink); color: var(--paper); font-size: 13px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.log-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line-inv); }
.log-head .mono { flex: 1; font-size: 11px; color: rgba(242,240,235,.55); text-transform: none; }
.log-list { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 0; padding: 8px 18px; list-style: none; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%); mask-image: linear-gradient(to bottom, transparent, #000 28%); }
.log-list li { display: grid; grid-template-columns: 46px 20px minmax(0, 1fr); gap: 10px; align-items: start; padding: 10px 0; border-bottom: 1px dashed rgba(242,240,235,.09); animation: logIn .6s var(--ease) both; }
.log-list time { padding-top: 2px; font-family: var(--mono); font-size: 11px; color: rgba(242,240,235,.45); }
.log-ok { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--ink); }
.log-ok .ic { width: 12px; height: 12px; stroke-width: 3; }
.log-list b { font-weight: 500; }
.log-list small { display: block; font-size: 11.5px; color: rgba(242,240,235,.5); }
@keyframes logIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.log-foot { display: flex; justify-content: space-between; gap: 12px; padding: 12px 18px; border-top: 1px solid var(--line-inv); font-size: 11px; color: rgba(242,240,235,.5); }
.log-foot b { color: var(--accent); font-weight: 500; }

@media (max-width: 860px) {
  .hero-media.flowviz { grid-template-columns: minmax(0, 1fr); gap: 34px; min-height: 0; padding-bottom: 64px; }
  .fv-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .fv-node { min-width: 0; }
  .fv-bar span { white-space: nowrap; }
  .fv-bar .hide-sm { display: none; }
  .fv-head { grid-column: 1 / -1; }
  .fv-col .fv-node:last-child { grid-column: 1 / -1; }
  .fv-node, .fv-node.active, .fv-out .fv-node.active { transform: none; }
  .fv-core { width: 116px; }
  .about-log { aspect-ratio: auto; height: 460px; }
  .svc-media.svc-viz { aspect-ratio: auto; min-height: 300px; }
  .v-phone { min-height: 380px; }
  .skill-viz { order: -1; }
}
@media (max-width: 600px) {
  .hero-media.flowviz { padding-inline: 12px; }
  .fv-node { gap: 8px; padding: 8px; border-radius: 12px; }
  .fv-ic { width: 26px; height: 26px; border-radius: 7px; }
  .fv-ic .ic { width: 15px; height: 15px; }
  .fv-t b { font-size: 12.5px; }
  .fv-t small { font-size: 10.5px; }
  .fv-ok { display: none; }
  .vp-browser { display: none; }
  .vp-phone { margin: 0 auto; width: 210px; }
  .sv-track span { padding: 6px 8px; font-size: 10.5px; }
  .sv-track .ic { display: none; }
  .sv-minis { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .viz *, .viz *::before, .viz *::after, .pill-ic .ic { animation: none !important; }
  .vr-typing { display: none; }
  .vr-msg { opacity: 1; transform: none; }
  .vp-toast.t1 { transform: none; }
  .vd-st i:first-child { opacity: 0; }
  .sv-fp i::after { opacity: 1; }
}

/* =========================================================
   Cursor network — floating nodes that connect to the pointer
   ========================================================= */
[data-net] { position: relative; isolation: isolate; }
[data-net] > :not(.net-bg) { position: relative; z-index: 1; }
.net-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; border-radius: inherit; pointer-events: none; }

/* =========================================================
   Hover interactions (mouse / trackpad only)
   ========================================================= */
.spot::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), var(--spot-c, rgba(126,217,87,.13)), transparent 62%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.svc--paper { --spot-c: rgba(47,148,32,.09); }
.svc--accent { --spot-c: rgba(255,255,255,.3); }

@media (hover: hover) and (pointer: fine) {
  .spot:hover::after { opacity: 1; }

  /* buttons & links */
  .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(15,15,14,.55); }
  .btn:active { transform: translateY(0) scale(.98); }
  .link-arrow svg { transition: transform .4s var(--ease); }
  .link-arrow:hover svg { transform: translateY(3px); }
  .brand .logo circle { transform-box: fill-box; transform-origin: center; transition: transform .55s cubic-bezier(.3, 1.8, .5, 1); }
  .brand:hover .logo circle { transform: translateY(-30%) scale(1.08); }
  .menu nav a { transition: color .3s, padding .45s var(--ease); }
  .menu nav a:hover { color: var(--accent); padding-left: 12px; }
  .foot-cols a { transition: color .3s, transform .4s var(--ease); }
  .foot-cols a:hover { color: var(--accent); transform: translateX(4px); }

  /* marquees pause so a word can be read */
  .ticker:hover .ticker-track, .tech:hover .tech-track { animation-play-state: paused; }
  .ticker span { transition: color .3s; }
  .ticker span:hover { color: var(--accent); }

  /* hero engine */
  .fv-node:hover { border-color: rgba(242,240,235,.32); background: rgba(255,255,255,.08); }
  .fv-node:hover .fv-ic { color: var(--paper); background: rgba(255,255,255,.14); }
  .fv-core:hover { transform: scale(1.05); }

  /* service cards */
  .svc .svc-num { transition: color .45s var(--ease); }
  .svc:hover .svc-num { color: var(--stroke); }
  .svc .chip { transition: opacity .3s, background .3s, color .3s; }
  .svc:hover .chip { opacity: 1; }
  .svc-viz > * { transition: transform .7s var(--ease); }
  .svc:hover .svc-viz > * { transform: translateY(-4px) scale(1.02); }
  .svc li { transition: padding .35s var(--ease), color .3s; }
  .svc li:hover { padding-left: 28px; }

  .also-item { transition: background .35s; }
  .also-item::before { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent-strong); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
  .also-item:hover::before { transform: scaleX(1); }
  .also-item b, .also-item span { transition: transform .45s var(--ease), color .3s; }
  .also-item:hover b { color: var(--accent-strong); transform: translateX(6px); }
  .also-item:hover span { transform: translateX(6px); }

  /* use-case rows */
  .uc-list { isolation: isolate; }
  .uc { position: relative; transition: padding .45s var(--ease); }
  .uc::before { content: ""; position: absolute; z-index: -1; inset: 8px -16px; border-radius: 16px; background: #fbfaf7; box-shadow: 0 16px 36px -22px rgba(15,15,14,.35), 0 0 0 1px var(--line); opacity: 0; transform: scale(.985); transition: opacity .35s, transform .45s var(--ease); }
  .uc:hover::before { opacity: 1; transform: none; }
  .uc h3, .uc-after p { transition: color .3s, transform .45s var(--ease); }
  .uc:hover h3 { color: var(--accent-strong); transform: translateX(6px); }
  .uc:hover .uc-after p { transform: translateX(4px); }

  /* skill india */
  .skill-card { position: relative; }
  .skill-card > * { position: relative; z-index: 1; transition: transform .5s var(--ease), color .3s; }
  .skill-card::before { content: ""; position: absolute; z-index: 2; left: 0; right: 0; top: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
  .skill-card:hover::before { transform: scaleX(1); }
  .skill-card:hover > * { transform: translateY(-4px); }
  .skill-card:hover .ic { transform: translateY(-4px) rotate(-6deg); }
  .skill-card:hover h4 { color: var(--accent); }
  .audience li { transition: color .3s, padding .45s var(--ease); }
  .audience li:hover { color: var(--accent); padding-left: 10px; }
  .schemes b, .apps b, .tech span { transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease); }
  .schemes b:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
  .sv-mini { transition: border-color .35s, background .35s; }
  .sv-mini:hover { border-color: rgba(126,217,87,.55); background: rgba(126,217,87,.05); }

  /* industries */
  .ind-ic .ic { transition: transform .5s var(--ease); }
  .ind:hover .ind-ic .ic { transform: scale(1.12) rotate(-8deg); }

  /* process, stats, why */
  .step { transition: background .35s; }
  .step-n { transition: color .45s var(--ease), -webkit-text-stroke-color .45s, transform .5s var(--ease); }
  .step:hover .step-n { color: var(--accent-strong); -webkit-text-stroke-color: var(--accent-strong); transform: translateY(-6px); }
  .step h4 { transition: color .3s; }
  .step:hover h4 { color: var(--accent-strong); }
  .stats b { transition: color .35s, transform .45s var(--ease); }
  .stats > div:hover b { color: var(--accent-strong); transform: translateY(-3px); }
  .why li { transition: transform .45s var(--ease); }
  .why li::before { transition: background .3s, transform .45s var(--ease); }
  .why li:hover { transform: translateX(6px); }
  .why li:hover::before { background: var(--accent-strong); transform: scale(1.15); }
  .apps b:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px); }
  .tech span:hover { background: var(--ink); color: var(--accent); transform: translateY(-2px); }

  /* about log */
  .log-list li { transition: background .3s; }
  .log-list li:hover { background: rgba(255,255,255,.05); }

  /* contact */
  .info > div dt, .info > div dd { transition: color .3s, transform .45s var(--ease); }
  .info > div:hover dt { color: var(--accent-deep); }
  .info > div:hover dd { transform: translateX(4px); }
  .field input:hover, .field textarea:hover { border-color: rgba(15,15,14,.32); }
  .form { transition: box-shadow .4s; }
  .form:hover { box-shadow: 0 0 0 1px var(--line), 0 30px 60px -36px rgba(15,15,14,.35); }
}

/* =========================================================
   Motion — initial states only when JS + GSAP are active
   ========================================================= */
.js.anim .hero-title .line > span { transform: translateY(105%); }
.js.anim [data-intro] { opacity: 0; transform: translateY(16px); }
.js.anim .hero-media { clip-path: inset(12% 6% 0 6% round var(--r-lg)); }
.js.anim [data-reveal]:not(.revealed) { opacity: 0; transform: translateY(28px); }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .tech-track, .live i { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-cta { display: none; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .also-grid { grid-template-columns: repeat(2, 1fr); }
  .also-item:nth-child(3) { padding-left: 0; border-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .step:nth-child(4) { padding-left: 0; border-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .stats > div:nth-child(4) { border-top: 1px solid var(--line); }
  .foot-top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero { padding-top: 78px; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-media { height: 72vh; min-height: 520px; }
  .sec-head--split { grid-template-columns: 1fr; gap: 0; }
  .sec-head--split p { justify-self: start; margin-top: 22px; }

  .svc { position: relative; top: 0; grid-template-columns: 1fr; min-height: 0; }
  .svc-media { order: -1; aspect-ratio: 16 / 10; min-height: 0; }
  .svc-top { padding-bottom: 28px; }

  .ind { grid-template-columns: 44px 1fr auto; grid-template-areas: "ic h arrow" "ic p p"; gap: 4px 14px; padding: 22px 0; align-items: center; }
  .ind-ic { grid-area: ic; width: 44px; height: 44px; align-self: start; } .ind h3 { grid-area: h; } .ind p { grid-area: p; margin-top: 6px; } .ind-arrow { grid-area: arrow; align-self: start; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: relative; top: 0; aspect-ratio: 4 / 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .apps { flex-direction: column; gap: 16px; }
  .uc { grid-template-columns: 1fr 1fr; }
  .uc h3 { grid-column: 1 / -1; }
  .skill-top { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hide-sm { display: none; }
  .hero-title { font-size: clamp(34px, 10.4vw, 56px); letter-spacing: -.04em; }
  .hero-cta { gap: 20px; }
  .svc ul { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr; }
  .also-item + .also-item { padding-left: 0; border-left: 0; }
  .uc { grid-template-columns: 1fr; gap: 14px; }
  .skill-grid { grid-template-columns: 1fr; }
  .audience li { font-size: 18px; }
  .steps { grid-template-columns: 1fr; row-gap: 36px; }
  .step + .step { padding-left: 0; border-left: 0; }
  .step { padding-top: 28px; border-top: 1px solid var(--line); }
  .steps-bar { display: none; }
  .step-n { margin-bottom: 18px; }
  .why { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .info > div { grid-template-columns: 1fr; gap: 6px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .cta-btns { width: 100%; }
  .cta-btns .btn { flex: 1; justify-content: center; }
}
