/* ==========================================================================
   OFFICE SOLUTION — Design System
   Premium editorial + ethereal-glass. Clash Display / Satoshi.
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,700,900&display=swap');

/* ----------------------------- Tokens ----------------------------------- */
:root {
  /* Color — Office Solution brand */
  --ink:        #0B2A33;   /* deep teal near-black */
  --ink-2:      #103744;   /* dark surface */
  --ink-3:      #18586b;   /* brand deep teal */
  --ivory:      #F3F5F6;   /* cool off-white */
  --ivory-2:    #E8EDEF;
  --ivory-3:    #DCE5E8;
  --paper:      #FBFCFD;
  --white:      #FFFFFF;

  --accent:     #0097b2;   /* brand bright teal */
  --accent-2:   #18586b;   /* brand deep teal */
  --accent-3:   #34B7CE;   /* light cyan glow */
  --accent-ink: #FFFFFF;   /* text on accent */

  --muted:      #5C6B70;
  --muted-soft: #8A9AA0;
  --line:       rgba(11,42,51,.14);
  --line-soft:  rgba(11,42,51,.08);
  --line-light: rgba(255,255,255,.14);

  /* Type */
  --font-display: 'Clash Display', 'Satoshi', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Satoshi', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(5rem, 10vw, 11rem);
  --gutter:    clamp(1.25rem, 4vw, 4rem);
  --maxw:      1320px;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);

  /* Shadow (soft, diffused — never harsh) */
  --shadow-sm: 0 1px 2px rgba(12,13,16,.04), 0 8px 24px -12px rgba(12,13,16,.10);
  --shadow-md: 0 2px 6px rgba(12,13,16,.05), 0 24px 60px -28px rgba(12,13,16,.22);
  --shadow-lg: 0 4px 12px rgba(12,13,16,.06), 0 50px 100px -40px rgba(12,13,16,.34);
}

/* ----------------------------- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  font-size: clamp(1rem, .96rem + .25vw, 1.0625rem);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ----------------------------- Type scale ------------------------------- */
.display, h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.03em; }
.h-hero  { font-size: clamp(2.8rem, 1.4rem + 6.4vw, 6.6rem); line-height: 0.98; letter-spacing: -0.04em; }
.h-1     { font-size: clamp(2.4rem, 1.4rem + 4.6vw, 4.8rem); }
.h-2     { font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem); }
.h-3     { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem); }
.h-4     { font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); font-weight: 600; }
.lead    { font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); line-height: 1.5; color: var(--muted); letter-spacing: -0.015em; }
.fine    { font-size: .82rem; color: var(--muted); }

.serif-accent { font-style: italic; font-family: var(--font-display); font-weight: 400; }

/* eyebrow tag */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; color: var(--ink);
  padding: .45rem .85rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(0,151,178,.22); }
.eyebrow.on-dark { color: var(--ivory); border-color: var(--line-light); background: rgba(255,255,255,.05); }

/* ----------------------------- Layout ----------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 6rem); }
main { overflow-x: clip; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

.stack-sm { display: flex; flex-direction: column; gap: .6rem; }
.center { text-align: center; }
.measure { max-width: 56ch; }
.measure-sm { max-width: 44ch; }

/* surfaces */
.dark { background: var(--ink); color: var(--ivory); }
.dark .lead { color: rgba(244,241,234,.66); }
.dark .fine { color: rgba(244,241,234,.5); }
.cream { background: var(--ivory-2); }

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--ivory);
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--bg); color: var(--fg);
  padding: .9rem 1rem .9rem 1.45rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  position: relative; isolation: isolate;
  transition: transform .5s var(--ease-out), background .4s var(--ease-out), color .4s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn .ic {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: rgba(255,255,255,.14);
  transition: transform .5s var(--ease-spring), background .4s var(--ease-out);
}
.btn .ic svg { width: 15px; height: 15px; }
.btn:hover .ic { transform: translate(3px,-3px) rotate(0deg) scale(1.06); }
.btn:hover { box-shadow: var(--shadow-md); }

.btn--accent { --bg: var(--accent); --fg: var(--accent-ink); }
.btn--accent .ic { background: rgba(18,21,10,.14); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost .ic { background: rgba(12,13,16,.06); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--ghost:hover .ic { background: rgba(255,255,255,.16); }
.dark .btn--ghost { --fg: var(--ivory); border-color: var(--line-light); }
.dark .btn--ghost .ic { background: rgba(255,255,255,.1); }
.dark .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.dark .btn--ghost:hover .ic { background: rgba(12,13,16,.08); }

.btn--lg { padding: 1.05rem 1.15rem 1.05rem 1.7rem; font-size: 1.05rem; }
.btn--lg .ic { width: 40px; height: 40px; }

/* text link with underline sweep */
.tlink { position: relative; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.tlink::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { width: 14px; height: 14px; transition: transform .4s var(--ease-out); }
.tlink:hover svg { transform: translate(2px,-2px); }

/* ----------------------------- Cards (double-bezel) --------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .6s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.dark .card { background: var(--ink-2); border-color: var(--line-light); box-shadow: none; }
.dark .card:hover { border-color: rgba(255,255,255,.22); }

.bezel {
  background: rgba(12,13,16,.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 9px;
}
.dark .bezel { background: rgba(255,255,255,.04); border-color: var(--line-light); }
.bezel > .bezel-core {
  border-radius: calc(var(--r-xl) - 9px);
  background: var(--white);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
  overflow: hidden;
}
.dark .bezel > .bezel-core { background: var(--ink-2); box-shadow: inset 0 1px 1px rgba(255,255,255,.06); }

/* icon chip */
.chip {
  width: 52px; height: 52px; border-radius: 16px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--accent);
  transition: transform .5s var(--ease-spring);
}
.chip svg { width: 24px; height: 24px; }
.card:hover .chip { transform: rotate(-6deg) scale(1.04); }
.chip.is-accent { background: var(--accent); color: var(--accent-ink); }

/* ----------------------------- Nav -------------------------------------- */
.nav-spacer { height: 92px; }
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: center;
  padding-top: 1.1rem;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  padding: .55rem .65rem .55rem 1.4rem;
  background: rgba(251,250,246,.72);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), background .6s var(--ease-out);
}
.nav.is-scrolled .nav__inner { box-shadow: var(--shadow-md); background: rgba(251,250,246,.85); }
.nav.is-hidden .nav__inner { transform: translateY(-140%); }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .logo { width: auto; height: 30px; }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav__links a {
  font-size: .94rem; font-weight: 500; color: var(--ink);
  padding: .5rem .85rem; border-radius: var(--r-pill);
  position: relative; transition: background .35s var(--ease-out), color .35s var(--ease-out);
}
.nav__links a:hover { background: rgba(12,13,16,.06); }
.nav__links a.active { background: var(--ink); color: var(--ivory); }
.nav__cta { display: flex; align-items: center; gap: .5rem; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav__burger span { width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .45s var(--ease-out), opacity .3s; }

/* mobile overlay */
.menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(12,13,16,.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.menu.open { opacity: 1; visibility: visible; }
.menu a {
  color: var(--ivory); font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 9vw, 3.4rem); line-height: 1.1; letter-spacing: -.03em;
  padding: .35rem 0; opacity: 0; transform: translateY(28px);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.menu a span { font-family: var(--font-body); font-size: .9rem; color: var(--muted-soft); font-weight: 500; }
.menu.open a { opacity: 1; transform: translateY(0); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.menu.open a:nth-child(1){transition-delay:.08s}.menu.open a:nth-child(2){transition-delay:.13s}.menu.open a:nth-child(3){transition-delay:.18s}.menu.open a:nth-child(4){transition-delay:.23s}.menu.open a:nth-child(5){transition-delay:.28s}.menu.open a:nth-child(6){transition-delay:.33s}.menu.open a:nth-child(7){transition-delay:.38s}.menu.open a:nth-child(8){transition-delay:.43s}
body.menu-open .nav__burger span:nth-child(1){ transform: translateY(6.8px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2){ opacity: 0; }
body.menu-open .nav__burger span:nth-child(3){ transform: translateY(-6.8px) rotate(-45deg); }
body.menu-open .nav__burger span { background: var(--ivory); }
body.menu-open .nav__burger { border-color: rgba(255,255,255,.3); }

/* ----------------------------- Hero ------------------------------------- */
.hero { position: relative; padding-top: clamp(7rem, 14vh, 11rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero.dark { background: var(--ink); }
.mesh { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.mesh .orb { position: absolute; border-radius: 50%; filter: blur(64px); opacity: .55; transform: translateZ(0); }
.orb-1 { width: 44vw; height: 44vw; background: radial-gradient(circle, var(--accent) 0%, transparent 68%); top: -12%; right: -6%; opacity: .42; }
.orb-2 { width: 40vw; height: 40vw; background: radial-gradient(circle, var(--accent-2) 0%, transparent 66%); bottom: -16%; left: -8%; opacity: .5; }
.orb-3 { width: 30vw; height: 30vw; background: radial-gradient(circle, var(--accent-3) 0%, transparent 66%); top: 30%; left: 36%; opacity: .3; }

/* grain overlay */
.grain { position: fixed; inset: 0; z-index: 4; pointer-events: none; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.dark .grain, .grain.on-dark { mix-blend-mode: screen; opacity: .045; }

/* ----------------------------- Marquee ---------------------------------- */
.marquee { display: flex; overflow: hidden; gap: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: clamp(2rem,5vw,4rem); align-items: center; padding-right: clamp(2rem,5vw,4rem); white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem,2.4vw,1.7rem); color: var(--muted); display: inline-flex; align-items: center; gap: clamp(2rem,5vw,4rem); letter-spacing: -.02em; }
.marquee__track span::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- Stats ------------------------------------ */
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.6rem + 4vw, 4.6rem); line-height: 1; letter-spacing: -.04em; }
.stat__num .u { color: var(--accent); }
.stat__lab { font-size: .92rem; color: var(--muted); max-width: 22ch; }
.dark .stat__lab { color: rgba(244,241,234,.6); }

/* ----------------------------- Reveal animations ------------------------ */
[data-reveal] { opacity: 0; transform: translateY(30px); will-change: transform, opacity; }
[data-reveal].in { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: auto; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(26px); }
.reveal-line { display: block; overflow: hidden; padding-block: 0.14em; margin-block: -0.14em; }
.reveal-line > span { display: block; transform: translateY(110%); will-change: transform; }

/* ----------------------------- Accordion -------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 1rem + .8vw, 1.55rem); letter-spacing: -.02em; }
.acc__head .pm { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; position: relative; transition: background .4s var(--ease-out), border-color .4s, transform .5s var(--ease-out); }
.acc__head .pm::before, .acc__head .pm::after { content: ""; position: absolute; background: currentColor; transition: transform .45s var(--ease-out), opacity .3s; }
.acc__head .pm::before { width: 13px; height: 1.8px; }
.acc__head .pm::after { width: 1.8px; height: 13px; }
.acc__item.open .pm { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: rotate(90deg); }
.acc__item.open .pm::after { transform: scaleY(0); opacity: 0; }
.acc__body { overflow: hidden; height: 0; }
.acc__body-inner { padding: 0 0 1.6rem; color: var(--muted); max-width: 60ch; line-height: 1.65; }

/* ----------------------------- Pill list -------------------------------- */
.plist { display: flex; flex-direction: column; }
.plist li { display: flex; align-items: flex-start; gap: .85rem; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
.plist .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex: none; margin-top: 2px; }
.plist .tick svg { width: 12px; height: 12px; }
.dark .plist li { border-color: var(--line-light); }

/* ----------------------------- Footer ----------------------------------- */
.footer { background: var(--ink); color: var(--ivory); padding-top: clamp(4rem,7vw,7rem); position: relative; overflow: hidden; }
.footer a { color: rgba(244,241,234,.66); transition: color .3s; }
.footer a:hover { color: var(--ivory); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__cta-huge { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.5rem + 6vw, 7rem); line-height: .95; letter-spacing: -.04em; }
.footer__col h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(244,241,234,.4); margin-bottom: 1.1rem; font-weight: 700; }
.footer__col a { display: block; padding: .35rem 0; font-size: 1rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding: 2rem 0; margin-top: 3rem; border-top: 1px solid var(--line-light); font-size: .86rem; color: rgba(244,241,234,.5); }

/* ----------------------------- Page header ------------------------------ */
.phead { padding-top: clamp(8rem, 16vh, 13rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { opacity: .5; }

/* ----------------------------- Device mockups --------------------------- */
.device-wrap { position: relative; }
.float-tag {
  position: absolute; background: var(--white); color: var(--ink); border: 1px solid var(--line-soft);
  border-radius: var(--r-pill); padding: .6rem .95rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .55rem; font-size: .86rem; font-weight: 600;
  will-change: transform;
}
.float-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.float-tag .dot.teal { background: var(--accent-2); }

/* ----------------------------- Custom cursor ---------------------------- */
.cursor { position: fixed; top: 0; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); z-index: 9999; pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: difference; transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s; }
.cursor.grow { width: 46px; height: 46px; background: var(--accent); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ----------------------------- Forms ------------------------------------ */
.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: .9rem 1.1rem;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-soft); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,151,178,.20);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .9rem; color: var(--muted); min-height: 1.2em; }
.form-note.ok { color: #2c7a4b; font-weight: 600; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }

.info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.info-card .chip { width: 46px; height: 46px; border-radius: 14px; }
.info-card .chip svg { width: 20px; height: 20px; }
.info-card h4 { font-family: var(--font-body); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .3rem; }
.info-card a, .info-card p { font-size: 1.15rem; font-weight: 500; letter-spacing: -.01em; }

/* ----------------------------- Misc ------------------------------------- */
.divider { height: 1px; background: var(--line); border: 0; }
.kpi-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 4rem); }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.tag { font-size: .82rem; font-weight: 500; padding: .4rem .85rem; border-radius: var(--r-pill); border: 1px solid var(--line); color: var(--ink); }
.dark .tag { border-color: var(--line-light); color: var(--ivory); }
.tag.solid { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.ratio { position: relative; width: 100%; }
.ratio > * { position: absolute; inset: 0; width: 100%; height: 100%; }
.ratio-4x3 { aspect-ratio: 4/3; }
.ratio-1x1 { aspect-ratio: 1/1; }
.ratio-16x10 { aspect-ratio: 16/10; }
.gradient-img { background: linear-gradient(135deg, var(--ink-3), var(--ink)); position: relative; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta .btn:not(.nav__burger-keep) { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  :root { --r-xl: 30px; --r-lg: 24px; }
  .nav__inner { padding-left: 1.1rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .marquee__track { animation: none; }
  .mesh .orb { display: none; }
}
