/* ==========================================================================
   Sprinter — design system v3 · "Cinematic Light"
   Luminous light canvas · orange-red + sky-blue · motion, depth, premium type.
   ========================================================================== */

:root {
  /* Brand — orange-centric, all-warm (vibrant, no muddy cool midtones) */
  --brand: #FF5A1F;
  --brand-bright: #FF8A2E;
  --brand-deep: #E23410;
  --brand-2: #FFB020;          /* warm amber (secondary accent, replaces sky) */
  --brand-2-bright: #FFC24D;
  --violet: #FF7A2F;           /* warm (replaces violet) */

  /* Light canvas */
  --bg: #FCFCFE;
  --bg-2: #F4F6FB;
  --surface: #FFFFFF;

  /* Ink */
  --ink: #0B1020;
  --ink-soft: #3C4459;
  --muted: #79839A;

  /* Lines */
  --line: #EAECF3;
  --line-2: #DEE2ED;

  /* Gradients */
  --grad: linear-gradient(110deg, #FFA53D 0%, #FF6A2C 42%, #F03A12 100%);
  --grad-warm: linear-gradient(120deg, #FFB020, #FF5A1F);
  --grad-soft: linear-gradient(120deg, rgba(255,138,61,.16), rgba(255,176,32,.16));

  /* Soft, layered, tinted shadows (premium) */
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06);
  --shadow: 0 12px 32px -12px rgba(16,24,40,.16);
  --shadow-md: 0 28px 64px -24px rgba(16,24,40,.26);
  --shadow-lg: 0 60px 130px -36px rgba(16,24,40,.34);
  --glow-brand: 0 22px 60px -18px rgba(255,77,46,.50);
  --glow-blue: 0 22px 60px -18px rgba(255,176,32,.45);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* The layout is authored at the 1080p (1920×1080) baseline. Proportional
     scaling for every resolution from 1366p laptops up to 4K/8K is handled
     by the CSS `zoom` script in partials/_ui_scale.html — every value here
     stays the literal 1080p number; do NOT clamp/vw these. Below 1024px
     the script bails out and the mobile media-queries below take over. */
  --container: 1200px;
  --gutter: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', var(--font);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden; position: relative;
}
/* Reset zoom when printing — printed pages render at native 1:1. */
@media print { html { zoom: 1 !important; width: auto !important; height: auto !important; } }
/* Mobile / vertical screens (below the zoom gate): use fluid, comfortable sizes. */
@media (max-width: 1024px) {
  html { font-size: 15.5px; }
  :root { --container: 100%; --gutter: 22px; }
}
@media (max-width: 560px) {
  html { font-size: 15px; }
  :root { --gutter: 18px; }
}
/* subtle grain for richness */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
svg { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -0.15em; flex: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(255,77,46,.20); color: var(--ink); }

/* --- Typography -------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.7; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* --- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(64px, 9vw, 130px); }
.section--soft { background: var(--bg-2); }
.section--tight { padding-block: clamp(40px, 5vw, 76px); }
.center { text-align: center; }
.section-head { max-width: 780px; margin-inline: auto; margin-bottom: 56px; }
.section-head.center { text-align: center; }
/* Wider section-head sized for the 1080p baseline (zoom scales it for other resolutions) */
.section-head--wide { max-width: 1100px; }
/* Lead authored at the 1080p baseline; does NOT wrap. Below the zoom gate it wraps. */
.lead--oneline { font-size: 1.1rem; white-space: nowrap; max-width: 100%; }
@media (max-width: 1024px) {
  .section-head--wide { max-width: 100%; }
  .lead--oneline { white-space: normal; font-size: 1.05rem; }
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 18px; }
.eyebrow svg { color: var(--brand); }
.section-head p { margin-top: 18px; }

/* --- Buttons ----------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 26px; border-radius: var(--radius-pill); border: 1px solid transparent; font-weight: 600; font-size: .97rem; transition: all .22s var(--ease); white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); background-size: 150% 150%; color: #fff; box-shadow: var(--glow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 64px -16px rgba(255,77,46,.6); background-position: 100% 0; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-soft { background: rgba(255,176,32,.1); color: #B45309; border-color: rgba(255,176,32,.22); }
.btn-soft:hover { background: rgba(255,176,32,.16); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Pills / badges ---------------------------------------------------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-soft); font-size: .83rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); animation: pulse 2.4s var(--ease) infinite; }
.tag { display: inline-block; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--bg-2); color: var(--ink-soft); font-size: .76rem; font-weight: 600; border: 1px solid var(--line); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(252,252,254,.78); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo .logo-mark { width: 34px; height: 34px; border-radius: 10px; filter: drop-shadow(0 6px 16px rgba(255,61,46,.35)); }
.brand-img { height: 42px; width: auto; display: block; }
.brand-logo--img .logo-mark { display: none; }
.brand-logo--img.noimg .brand-img { display: none; }
.brand-logo--img.noimg .logo-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; letter-spacing: -.02em; }
.brand-sub { font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--brand); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { padding: 9px 14px; border-radius: 10px; font-weight: 500; font-size: .95rem; color: var(--ink-soft); transition: all .15s var(--ease); }
.nav-links a:hover { color: var(--ink); background: var(--bg-2); }
.nav-links a.active { color: var(--brand); }
/* Beautified "Get a demo" nav CTA — glassy top gloss + animated sheen + live pulse dot.
   NOTE: `.nav-links a` (specificity 0,1,1) wins over a plain `.nav-cta` selector for
   the `color` property, which would force the CTA text to dark ink. We use the more
   specific `.nav-links a.nav-cta` selector here so the white text actually applies. */
.nav-links a.nav-cta,
.nav-cta {
  margin-left: 8px;
  position: relative;
  overflow: hidden;
  padding: 11px 22px;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .005em;
  background: var(--grad);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow:
    0 1px 0 rgba(255,255,255,.42) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 10px 22px -6px rgba(255,77,46,.50),
    0 22px 44px -12px rgba(255,77,46,.32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-position .55s var(--ease);
}
/* Top half gloss highlight */
.nav-cta::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 52%;
  background: linear-gradient(to bottom, rgba(255,255,255,.30), rgba(255,255,255,.06) 60%, transparent);
  border-radius: var(--radius-pill) var(--radius-pill) 60% 60% / var(--radius-pill) var(--radius-pill) 100% 100%;
  pointer-events: none;
}
/* Animated sheen — sweeps on hover */
.nav-cta::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .75s var(--ease);
  pointer-events: none;
}
.nav-links a.nav-cta:hover,
.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  background: var(--grad);
  background-size: 200% 200%;
  background-position: 100% 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 -1px 0 rgba(0,0,0,.22) inset,
    0 16px 32px -8px rgba(255,77,46,.66),
    0 30px 64px -14px rgba(255,77,46,.48);
}
.nav-cta:hover::after { left: 140%; }
.nav-cta svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }
.nav-cta-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.65);
  animation: navCtaPulse 2s ease-in-out infinite;
  flex: 0 0 7px;
}
@keyframes navCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.65), 0 0 6px rgba(255,255,255,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0),   0 0 12px rgba(255,255,255,.85); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-cta-dot { animation: none; }
  .nav-cta::after { display: none; }
}
.nav-dd { position: relative; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-trigger svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.nav-dd:hover .nav-dd-trigger svg { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px); width: 580px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; backdrop-filter: blur(20px); transition: all .2s var(--ease); display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd-item { display: flex; gap: 12px; padding: 11px 12px; border-radius: 12px; align-items: flex-start; }
.nav-dd-item:hover { background: var(--bg-2); }
.nav-dd-ico { width: 36px; height: 36px; border-radius: 10px; flex: 0 0 36px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: var(--shadow); }
.nav-dd-ico svg { width: 19px; height: 19px; }
.nav-dd-item strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 600; }
.nav-dd-item span { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; border-radius: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero (cinematic light)
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(72px, 9vw, 130px) clamp(40px, 6vw, 80px); }
.hero::before {
  content: ""; position: absolute; inset: -18% -10% 0; z-index: -1;
  background:
    radial-gradient(32% 34% at 18% 22%, rgba(255,106,61,.45), transparent 70%),
    radial-gradient(34% 36% at 82% 16%, rgba(255,176,32,.42), transparent 70%),
    radial-gradient(40% 42% at 62% 78%, rgba(255,138,61,.26), transparent 72%);
  filter: blur(28px); animation: mesh 18s ease-in-out infinite alternate;
}
@keyframes mesh { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(0,-4%,0) scale(1.12); } }
.hero-inner { max-width: 920px; margin-inline: auto; text-align: center; position: relative; }
.hero h1 { margin-top: 24px; }
.hero .lead { margin-top: 26px; max-width: 720px; margin-inline: auto; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: .86rem; color: var(--muted); }

/* Hero floating product visual */
.hero-visual { margin-top: clamp(48px, 7vw, 88px); perspective: 1900px; }
.hero-visual .float { animation: floaty 7s ease-in-out infinite; will-change: transform; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-visual .p-preview { max-width: 960px; margin-inline: auto; transform: rotateX(var(--rx, 14deg)) rotateY(var(--ry, -7deg)); transform-style: preserve-3d; transition: transform .5s var(--ease); will-change: transform; box-shadow: var(--shadow-lg), var(--glow-brand); }
.hero-visual .p-preview::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(160deg, rgba(255,255,255,.5), transparent 40%); pointer-events: none; }

/* Trust strip */
.trust { margin-top: 60px; }
.trust p { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; padding: 10px 17px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .85rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.trust-chip .dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }

/* ==========================================================================
   Grids & cards
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.group-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 8px 0 30px; }
.group-head h2 { font-size: 1.7rem; display: inline-flex; align-items: center; gap: 10px; }
.group-head p { margin-top: 8px; max-width: 600px; }

.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; color: #fff; background: var(--grad); margin-bottom: 20px; box-shadow: var(--shadow); }
.card-ico svg { width: 28px; height: 28px; }
.card { min-width: 0; }
.card .cat { font-size: .64rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--brand); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card h3 { margin-top: 8px; font-size: 1.22rem; color: var(--ink); }
.card p { margin-top: 11px; font-size: .92rem; flex: 1; }
.card-foot { margin-top: 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--brand); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-flags { display: flex; gap: 7px; margin-left: auto; }

.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); box-shadow: var(--shadow-sm); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .f-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: 16px; box-shadow: var(--shadow); }
.feature .f-ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.08rem; color: var(--ink); }
.feature p { margin-top: 9px; font-size: .92rem; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow-sm); }
.stat .v { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { font-size: .85rem; color: var(--muted); margin-top: 6px; }

.checklist { display: grid; gap: 15px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); }
.checklist .ck { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; margin-top: 2px; box-shadow: var(--shadow-sm); }
.checklist .ck svg { width: 13px; height: 13px; }

/* ==========================================================================
   Product detail
   ========================================================================== */
.p-hero { padding-block: clamp(48px, 6vw, 84px); position: relative; overflow: hidden; }
.p-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(48% 60% at 12% 0%, rgba(255,106,61,.22), transparent 60%), radial-gradient(46% 56% at 96% 8%, rgba(255,176,32,.2), transparent 60%); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .5; }
.p-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.p-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-top: 18px; }
/* Partnership chip on the homepage carousel slides */
.car-partner {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 10px; margin-bottom: 4px;
  padding: 6px 14px;
  font-size: .8rem; font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,138,61,.10);
  border: 1px solid rgba(255,138,61,.30);
  border-radius: var(--radius-pill);
}
.car-partner .car-partner-l { color: var(--muted); }
.car-partner strong { color: var(--brand-deep); font-weight: 800; letter-spacing: -.01em; }

/* Partnership tagline on the product detail hero */
.p-partner {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 12px; margin-bottom: 6px;
  padding: 7px 16px;
  font-size: .82rem; font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,138,61,.10);
  border: 1px solid rgba(255,138,61,.30);
  border-radius: var(--radius-pill);
}
.p-partner .p-partner-l { color: var(--muted); }
.p-partner strong { color: var(--brand-deep); font-weight: 800; letter-spacing: -.01em; }
/* Partnership line on the small product cards (homepage + products grid) */
.card-partner {
  display: block;
  font-size: .74rem; font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .005em;
}
.card-partner strong { color: var(--brand-deep); font-weight: 700; }
.p-hero .lead { margin-top: 20px; }
.p-hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.p-ico-lg { width: 68px; height: 68px; border-radius: 19px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: var(--shadow-md); }
.p-ico-lg svg { width: 35px; height: 35px; }
.p-hero .p-preview { transform: perspective(1800px) rotateY(-9deg) rotateX(5deg); transition: transform .6s var(--ease); will-change: transform; }
.p-hero .p-preview:hover { transform: perspective(1800px) rotateY(0deg) rotateX(0deg); }

/* device frame */
.p-preview { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; min-width: 0; max-width: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden;
  /* Force a composited layer so the browser anti-aliases the rounded corners
     while the card is tilted in 3D. Without this, the clipped edge (especially
     over video) renders jagged/stair-stepped. white->white = no vignette. */
  -webkit-mask-image: -webkit-radial-gradient(white, white); mask-image: radial-gradient(white, white); }
.p-preview-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, #fafbff); }
/* Honest marker: every framed UI is an illustrative mockup, not a real screenshot. */
.p-preview-bar::after { content: "Illustrative"; margin-left: auto; font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.p-preview-bar i { width: 11px; height: 11px; border-radius: 50%; background: #E2E6F0; }
.p-preview-bar i:first-child { background: #ff6a5a; } .p-preview-bar i:nth-child(2) { background: #ffce4a; } .p-preview-bar i:nth-child(3) { background: #4ad07a; }
.p-preview-url { margin-left: 10px; font-size: 11px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.p-preview-url::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2bb673; }

.split { display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; }
.split h2 { font-size: 1.9rem; }
.audience-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; align-self: start; }
.audience-box h3 { font-size: 1.06rem; margin-bottom: 18px; color: var(--ink); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--grad); background-size: 150% 150%; color: #fff; padding: clamp(48px, 6vw, 76px); text-align: center; box-shadow: var(--glow-brand); }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .2; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 42px 42px; -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000, transparent); mask-image: radial-gradient(70% 90% at 50% 0%, #000, transparent); }
.cta-band h2 { color: #fff; position: relative; } .cta-band p { color: rgba(255,255,255,.92); margin-top: 14px; position: relative; max-width: 600px; margin-inline: auto; }
.cta-band .hero-cta { position: relative; }
.cta-band .btn-primary { background: #fff; color: var(--brand-deep); box-shadow: 0 12px 34px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover { background: #fff; transform: translateY(-2px); }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; border-color: #fff; }

/* ==========================================================================
   Downloads & Demos
   ========================================================================== */
.dl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); box-shadow: var(--shadow-sm); }
.dl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dl-head { display: flex; gap: 14px; align-items: center; margin-bottom: 15px; }
.dl-ico { width: 50px; height: 50px; border-radius: 14px; flex: 0 0 50px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: var(--shadow); }
.dl-ico svg { width: 25px; height: 25px; }
.dl-head strong { font-size: 1.06rem; display: block; color: var(--ink); }
.dl-head .sub { font-size: .8rem; color: var(--muted); }
.dl-card p { font-size: .9rem; flex: 1; }
.dl-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 17px 0; }
.dl-foot { margin-top: auto; }
.demo-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: #B45309; background: rgba(255,176,32,.1); padding: 6px 13px; border-radius: var(--radius-pill); border: 1px solid rgba(255,176,32,.22); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--surface); transition: border-color .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,77,46,.12); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 14px; }
.contact-item .ci-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: 0 0 46px; box-shadow: var(--shadow); }
.contact-item .ci-ico svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .95rem; color: var(--ink); }
.contact-item span { font-size: .9rem; color: var(--muted); }
.contact-item a:hover { color: var(--brand); }
.alert { background: #ecfdf5; border: 1px solid #a7f3d0; color: #057a55; padding: 16px 18px; border-radius: var(--radius); display: flex; gap: 12px; align-items: center; }
.alert svg { width: 22px; height: 22px; flex: 0 0 22px; color: #059669; }

/* ==========================================================================
   Testimonials, team, clients
   ========================================================================== */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.quote-card .qmark { font-family: Georgia, serif; font-size: 3.4rem; line-height: .7; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; height: 30px; }
.quote-prod { display: inline-flex; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); background: rgba(255,138,61,.10); border: 1px solid rgba(255,138,61,.28); padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; flex: 0 0 auto; }
.quote-card p { color: var(--ink); font-size: .98rem; margin-top: 14px; flex: 1; }
.quote-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote-author .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex: 0 0 44px; }
.quote-author strong { display: block; font-size: .9rem; color: var(--ink); }
.quote-author span { font-size: .78rem; color: var(--muted); }

.team-card { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-av { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.5rem; box-shadow: var(--glow-brand); }
.team-card h3 { font-size: 1.12rem; color: var(--ink); }
.team-card .role { color: var(--brand); font-weight: 600; font-size: .88rem; margin-top: 4px; }
.team-card .note { color: var(--muted); font-size: .85rem; margin-top: 10px; }

/* clients marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marq 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.client-chip { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px; text-align: center; font-size: .85rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; min-height: 64px; white-space: nowrap; box-shadow: var(--shadow-sm); }

/* ==========================================================================
   Client wall — static, beautified cards
   ========================================================================== */
.client-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 1180px; margin-inline: auto; }
.client-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.client-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  opacity: .55;
  transition: opacity .25s var(--ease);
}
.client-card:hover { transform: translateY(-3px); border-color: rgba(255,138,61,.45); box-shadow: var(--shadow-md); }
.client-card:hover::before { opacity: 1; }

.client-card .cc-ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,165,61,.18), rgba(240,58,18,.10));
  border: 1px solid rgba(255,138,61,.22);
  color: var(--brand);
  margin-bottom: 4px;
}
.client-card .cc-ico svg { width: 20px; height: 20px; }
.client-card .cc-kind {
  font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}
.client-card .cc-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: var(--ink);
  line-height: 1.32; letter-spacing: -.01em;
}
.client-card .cc-loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--muted);
  margin-top: 2px;
}
.client-card .cc-loc svg { width: 13px; height: 13px; color: var(--muted); }

@media (max-width: 900px) { .client-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .client-wall { grid-template-columns: 1fr; } }
.client-chip .svc-ico { color: var(--brand); margin-right: 8px; display: inline-flex; }
.client-chip .svc-ico svg { width: 16px; height: 16px; }

/* 90-day free trial card */
.trial-card { position: relative; overflow: hidden; background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 50px); box-shadow: var(--glow-brand); align-self: start; }
.trial-card::after { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 38px 38px; -webkit-mask-image: radial-gradient(80% 90% at 75% 0%, #000, transparent); mask-image: radial-gradient(80% 90% at 75% 0%, #000, transparent); }
.trial-num { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 9vw, 6.5rem); line-height: .85; }
.trial-num span { font-size: 1.4rem; font-weight: 700; margin-left: 12px; opacity: .92; }
.trial-tag { position: relative; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .85rem; margin-top: 12px; opacity: .95; }
.trial-list { position: relative; margin-top: 24px; display: grid; gap: 13px; }
.trial-list li { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .95rem; }
.trial-list svg { width: 20px; height: 20px; flex: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #0B1020; color: #AEB7C9; padding-block: 64px 30px; position: relative; overflow: hidden; isolation: isolate; }
.footer > .container { position: relative; z-index: 2; }

/* --- Footer circuit background ----------------------------------------- */
.footer-circuit { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.footer-circuit svg { width: 100%; height: 100%; display: block; }

/* Static traces — heavily faded so footer text reads clearly */
.fc-wires path {
  stroke: rgba(255, 138, 61, .14);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Current pulses — bright enough to read as "moving energy", soft enough not to fight text */
.fc-flow {
  stroke: #FF7A36;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80 1800;
  opacity: .55;
  filter: drop-shadow(0 0 5px rgba(255, 106, 44, .55));
  animation: fc-flow 5.5s linear infinite;
}
@keyframes fc-flow {
  0%   { stroke-dashoffset: 1800; opacity: 0; }
  6%   { opacity: .55; }
  94%  { opacity: .55; }
  100% { stroke-dashoffset: -80; opacity: 0; }
}

/* Pulsing junction nodes */
.fc-node {
  fill: #FFB020;
  opacity: .5;
  transform-origin: center;
  transform-box: fill-box;
  animation: fc-pulse 3.2s ease-in-out infinite;
}
@keyframes fc-pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.4); }
}

/* The AI chip itself — the visible "current source" */
.fc-chip { filter: drop-shadow(0 8px 28px rgba(255, 106, 44, .35)); }
.fc-chip-glow { animation: fc-chip-breathe 3.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.fc-chip-body { stroke: rgba(255,255,255,.18); stroke-width: 1; }
.fc-pin { fill: #FFB020; opacity: .92; }
.fc-chip-text {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 38px;
  fill: #fff;
  letter-spacing: 1px;
}
@keyframes fc-chip-breathe {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .fc-flow, .fc-node, .fc-chip-glow { animation: none; }
}
.footer a { color: #AEB7C9; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer .brand-logo .logo-mark { width: 32px; height: 32px; }
.footer .brand-img { height: 34px; }
.footer-about p { color: #7C879B; font-size: .92rem; margin-top: 18px; max-width: 330px; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #7C879B; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { text-align: center; padding-block: clamp(90px, 14vw, 180px); }
.notfound .code { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 10rem); font-weight: 800; letter-spacing: -.04em; }

/* ==========================================================================
   Product UI mockups (light, real-app feel)
   ========================================================================== */
.mk { padding: 18px; display: grid; gap: 12px; background: linear-gradient(180deg, #FFFFFF, #F7F9FE); font-size: 11px; color: var(--ink-soft); line-height: 1.5; }
.mk * { box-sizing: border-box; }
.mk svg { width: 1.1em; height: 1.1em; }
.mk-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mk-title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 12.5px; }
.mk-sub { font-size: 10px; color: var(--muted); }
.mk-pill { font-size: 9.5px; padding: 3px 9px; border-radius: 99px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); white-space: nowrap; }
.mk-grid { display: grid; gap: 9px; }
.mk-2 { grid-template-columns: repeat(2, 1fr); } .mk-3 { grid-template-columns: repeat(3, 1fr); } .mk-4 { grid-template-columns: repeat(4, 1fr); }
.mk-grid > *, .mk-row > * { min-width: 0; }
.mk-kpi { background: var(--bg-2); border: 1px solid var(--line); border-radius: 11px; padding: 11px; }
.mk-kpi .v { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.mk-kpi .l { font-size: 9px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }
.mk-kpi .v.g { color: #0f9d63; } .mk-kpi .v.o { color: var(--brand-deep); } .mk-kpi .v.b { color: #B45309; }
.mk-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 13px; }
.mk-bars { display: flex; align-items: flex-end; gap: 7px; height: 60px; }
.mk-bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--grad-warm); display: block; }
.mk-bars.blue i { background: linear-gradient(180deg, var(--brand-2-bright), #B45309); }
.mk-track { height: 7px; border-radius: 99px; background: #E9ECF4; overflow: hidden; }
.mk-track > i { display: block; height: 100%; border-radius: 99px; background: var(--grad); }
.mk-track.g > i { background: linear-gradient(90deg, #12b277, #0f9d63); }
.mk-row { display: flex; align-items: center; gap: 9px; padding: 7px 0; border-top: 1px solid var(--line); }
.mk-row:first-child { border-top: 0; }
.mk-row .grow { flex: 1; min-width: 0; }
.mk-row .nm { color: var(--ink); font-weight: 600; font-size: 10.5px; }
.mk-row .mut { color: var(--muted); font-size: 9.5px; }
.mk-tag { font-size: 9px; padding: 2px 8px; border-radius: 99px; font-weight: 700; white-space: nowrap; }
.mk-ok { background: #e6f8f0; color: #0f9d63; } .mk-warn { background: #fff3df; color: #b9760a; }
.mk-bad { background: #ffeae6; color: #d83a1e; } .mk-info { background: #FFF4E2; color: #B45309; }
.mk-av { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); flex: none; display: grid; place-items: center; color: #fff; font-size: 8.5px; font-weight: 700; }
.mk-ring { position: relative; width: 78px; height: 78px; border-radius: 50%; flex: none; background: conic-gradient(var(--brand) calc(var(--p, 70) * 1%), #E9ECF4 0); }
.mk-ring.g { background: conic-gradient(#12b277 calc(var(--p, 70) * 1%), #E9ECF4 0); }
.mk-ring.b { background: conic-gradient(var(--brand-2) calc(var(--p, 70) * 1%), #E9ECF4 0); }
.mk-ring span { position: absolute; inset: 9px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 17px; }
.mk-ring span small { font-size: 8px; color: var(--muted); font-weight: 600; }
.mk-term { background: #0A0E18; border: 1px solid #0A0E18; border-radius: 9px; padding: 11px 12px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 10px; line-height: 1.8; color: #8affc4; }
.mk-term .pr { color: #FFB020; } .mk-term .mut { color: #61708a; } .mk-term .wt { color: #e6edf7; }
.mk-doc { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 9px; padding: 12px; }
.mk-doc .ln { height: 7px; border-radius: 3px; background: #EAEDF4; margin: 7px 0; }
.mk-box { position: absolute; border: 1.5px solid #ff5a3c; border-radius: 3px; box-shadow: 0 0 0 3px rgba(255,90,60,.14); }
.mk-box.b { border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(255,176,32,.16); }
.mk-box span { position: absolute; top: -8px; left: -1px; font-size: 7.5px; font-weight: 700; padding: 1px 5px; border-radius: 4px; background: #ff5a3c; color: #fff; white-space: nowrap; }
.mk-box.b span { background: var(--brand-2); color: #fff; }
.mk-step { display: flex; align-items: flex-start; }
.mk-step .s { flex: 1; text-align: center; position: relative; }
.mk-step .s::before { content: ""; position: absolute; top: 9px; left: -50%; width: 100%; height: 2px; background: var(--line-2); }
.mk-step .s:first-child::before { display: none; }
.mk-step .s.done::before { background: #12b277; }
.mk-step .b { width: 20px; height: 20px; border-radius: 50%; margin: 0 auto 6px; display: grid; place-items: center; font-size: 9px; font-weight: 800; position: relative; z-index: 1; background: #E9ECF4; color: var(--muted); }
.mk-step .s.done .b { background: #12b277; color: #fff; }
.mk-step .s.active .b { background: var(--grad); color: #fff; box-shadow: 0 0 0 4px rgba(255,77,46,.16); }
.mk-step .lb { font-size: 8.5px; color: var(--muted); }
.mk-step .s.done .lb, .mk-step .s.active .lb { color: var(--ink-soft); }
.mk-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.mk-chip { font-size: 9px; padding: 3px 8px; border-radius: 99px; background: #FFF4E2; border: 1px solid rgba(255,176,32,.22); color: #B45309; font-weight: 600; }
.mk svg.mk-spark { width: 100%; height: 56px; display: block; }

/* Showcase rows */
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.show-row + .show-row { margin-top: 72px; }
.show-row:nth-child(even) .show-media { order: 2; }
.show-row .eyebrow { margin-bottom: 12px; }
.show-row h3 { font-size: 1.7rem; color: var(--ink); }
.show-row p { margin-top: 14px; }
.show-media { position: relative; min-width: 0; max-width: 100%; perspective: 1700px; }
.show-media .p-preview { transition: transform .6s var(--ease); transform: perspective(1700px) rotateY(8deg) rotateX(4deg); }
.show-row:nth-child(even) .show-media .p-preview { transform: perspective(1700px) rotateY(-8deg) rotateX(4deg); }
.show-media .p-preview:hover { transform: perspective(1700px) rotateY(0) rotateX(0); }

/* ==========================================================================
   Landing carousel (sliding product banner)
   ========================================================================== */
.hero-kicker { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 4vw, 52px); text-align: left; max-width: 1060px; margin: 0 auto clamp(40px, 6vw, 62px); }
.hero-kicker-text { min-width: 0; }
.hero-kicker h1 { margin-top: 16px; font-size: clamp(1.9rem, 4.3vw, 3.9rem); line-height: 1.06; }
.hero-kicker .hero-note { margin-top: 18px; }
.hero-video { flex: none; width: clamp(170px, 22vw, 280px); aspect-ratio: 1 / 1; margin: 0; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow); background: #fff; }
.hero-video-el { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; transform: scale(0.85); filter: saturate(1.16) contrast(1.06); }
@media (max-width: 760px) {
  .hero-kicker { flex-direction: column; text-align: center; gap: 16px; max-width: 560px; }
  .hero-video { margin: 0 auto; width: clamp(150px, 40vw, 200px); }
}
.carousel { position: relative; }
.car-viewport { overflow: hidden; }
.car-track { display: flex; transition: transform .6s var(--ease); }
.car-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 6px 14px; min-width: 0; }
/* Clip each slide's paint at its own left/right edges (vertical left open) so a
   neighbour slide's card shadow can't bleed across as a dark edge. */
.car-slide { clip-path: inset(-300px 1px); }
.car-text { min-width: 0; }
.car-text .pill { margin-bottom: 18px; }
.car-text .pill .card-ico { margin-bottom: 0; }
.car-text .pill .card-ico svg { width: 15px; height: 15px; }
.car-title { font-size: clamp(2rem, 4.2vw, 3.3rem); }
.car-text .lead { margin-top: 16px; }
.car-text .hero-cta { justify-content: flex-start; margin-top: 28px; }
.car-visual { min-width: 0; }
/* Flat inside the carousel: a 3D tilt here overflows the clipped track and cuts the
   card edges (and can escape overflow:hidden), so keep carousel shots straight. */
.car-visual .p-preview { transform: none; }
.car-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.car-arrow { width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); box-shadow: var(--shadow); display: grid; place-items: center; color: var(--ink); transition: all .2s var(--ease); }
.car-arrow:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-1px); }
.car-arrow svg { width: 20px; height: 20px; }
.car-prev svg { transform: rotate(90deg); }
.car-next svg { transform: rotate(-90deg); }
.car-dots { display: flex; gap: 8px; align-items: center; }
.car-dot { width: 9px; height: 9px; border-radius: 99px; background: var(--line-2); border: 0; padding: 0; cursor: pointer; transition: all .25s var(--ease); }
.car-dot.active { width: 30px; background: var(--grad); }
@media (max-width: 860px) {
  .car-slide { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .car-text .hero-cta { justify-content: center; }
  .car-visual { order: 2; }
  .car-visual .p-preview { transform: none; }
}

/* ==========================================================================
   AI chip graphic
   ========================================================================== */
.ai-chip { display: block; width: 100%; height: auto; max-width: 460px; margin-inline: auto; overflow: visible; filter: drop-shadow(0 24px 56px rgba(255,90,30,.26)); }
.ai-chip .glow { animation: chipGlow 3.6s ease-in-out infinite; }
@keyframes chipGlow { 0%, 100% { opacity: .45; } 50% { opacity: .95; } }
.ai-chip .flow { stroke-dasharray: 6 152; animation: chipFlow 2.8s linear infinite; }
@keyframes chipFlow { to { stroke-dashoffset: -158; } }
.ai-chip .node { animation: nodePulse 2.6s ease-in-out infinite; }
@keyframes nodePulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

.ai-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.ai-band .ai-visual { position: relative; }
@media (max-width: 860px) { .ai-band { grid-template-columns: 1fr; gap: 30px; } .ai-band .ai-visual { order: -1; max-width: 400px; margin-inline: auto; } }

/* ==========================================================================
   Reveal / motion
   ========================================================================== */
/* Hidden state only applies when JS is active (html.js) — so content is never
   stuck invisible if JS fails to load. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger > * { transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .stagger > * { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .07s; }
.stagger.in > *:nth-child(3) { transition-delay: .14s; }
.stagger.in > *:nth-child(4) { transition-delay: .21s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .35s; }
.stagger.in > *:nth-child(7) { transition-delay: .42s; }
.stagger.in > *:nth-child(8) { transition-delay: .49s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .p-hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .p-hero .p-preview, .show-media .p-preview { transform: none !important; }
  .p-preview { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .show-row { grid-template-columns: 1fr; gap: 28px; }
  .show-row:nth-child(even) .show-media { order: 0; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 4px; position: absolute; top: 74px; left: 0; right: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 20px; margin: 0; box-shadow: var(--shadow-md); backdrop-filter: blur(20px); }
  .nav.open .nav-links a { padding: 12px 14px; }
  .nav-dd-menu { display: none !important; }
  .nav-cta { margin: 8px 0 0; }
  .grid-2, .grid-3, .grid-4, .stats, .form-row { grid-template-columns: 1fr; }
  .group-head { flex-direction: column; align-items: flex-start; }
  .hero-visual .p-preview { transform: none !important; }
  .hero-visual { perspective: none; }
}
@media (max-width: 520px) {
  .mk-4 { grid-template-columns: repeat(2, 1fr); }
  .mk { font-size: 10.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .pill-dot, .hero-visual .float, .marquee-track,
  .ai-chip .glow, .ai-chip .flow, .ai-chip .node { animation: none; }
  .reveal, .stagger > *, .js .reveal, .js .stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-visual .p-preview, .p-hero .p-preview, .show-media .p-preview { transform: none; }
}

/* Product hero preview as video (overrides .mk mockup) */
.p-preview--video { background: #0B1020; }
.p-preview--video .p-preview-bar::after { content: "Live promo"; color: #FFB07A; border-color: rgba(255,138,61,.45); }
.p-hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #0B1020;
}

/* Mute / unmute floating control */
.p-video-mute {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 3;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(11,16,32,.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,.36);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.p-video-mute:hover {
  background: var(--brand);
  border-color: rgba(255,255,255,.32);
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(255,77,46,.55);
}
.p-video-mute:active { transform: scale(.96); }
.p-video-mute:focus-visible { outline: 2px solid var(--brand-bright); outline-offset: 3px; }
.p-video-mute svg { width: 20px; height: 20px; pointer-events: none; }
/* Default state = muted: show the "X" speaker icon, hide the "wave" speaker */
.p-video-mute .vm-muted { display: block; }
.p-video-mute .vm-on    { display: none; }
/* When the video is unmuted (.is-on toggled by JS): swap icons */
.p-video-mute.is-on .vm-muted { display: none; }
.p-video-mute.is-on .vm-on    { display: block; }

/* ==========================================================================
   Sofia P2P bespoke detail page
   ========================================================================== */

/* Pain-point band — "cost of fragmentation" pills */
.p2p-cost { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.cost-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-deep);
  background: linear-gradient(180deg, rgba(255,165,61,.12), rgba(240,58,18,.08));
  border: 1px solid rgba(255,138,61,.32);
  padding: 9px 18px; border-radius: var(--radius-pill);
}
.cost-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px rgba(255,106,44,.7); }

/* 7-step source-to-pay flow */
.p2p-flow {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
  list-style: none; padding: 0;
  max-width: 1100px; margin-inline: auto;
  counter-reset: step;
}
.p2p-flow li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.p2p-flow .step-n {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  margin: 0 auto 12px;
}
.p2p-flow strong { display: block; font-family: var(--font-display); font-size: .9rem; color: var(--ink); margin-bottom: 4px; }
.p2p-flow span:not(.step-n) { font-size: .75rem; color: var(--muted); }
.p2p-flow li + li::before {
  content: ""; position: absolute; top: 38px; left: -10px; width: 12px; height: 2px; background: rgba(255,138,61,.45);
}
@media (max-width: 1100px) {
  .p2p-flow { grid-template-columns: repeat(4, 1fr); }
  .p2p-flow li + li::before { display: none; }
}
@media (max-width: 640px) {
  .p2p-flow { grid-template-columns: repeat(2, 1fr); }
}

/* Live e-Auction spotlight — image-right, light-on-grad band */
.p2p-spotlight {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  background: linear-gradient(120deg, #FFF6EE 0%, #FFEEDC 100%);
  border: 1px solid rgba(255,138,61,.25);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px);
  margin: 64px 0;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.p2p-spotlight::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,106,44,.22), transparent 70%); pointer-events: none;
}
.spot-text h3 { font-size: 1.65rem; line-height: 1.15; margin-top: 12px; }
.spot-media { position: relative; }
@media (max-width: 900px) { .p2p-spotlight { grid-template-columns: 1fr; gap: 36px; } }

/* Auction card */
.auc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-md);
  font-family: var(--font);
}
.auc-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.auc-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--brand-deep); padding: 5px 11px; border-radius: var(--radius-pill);
  animation: aucBlink 1.6s ease-in-out infinite;
}
.auc-lot { flex: 1; font-weight: 700; color: var(--ink); font-size: .92rem; }
.auc-timer { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--brand-deep); }
.auc-list { list-style: none; padding: 0; margin-top: 14px; display: grid; gap: 10px; }
.auc-row {
  display: grid; grid-template-columns: 32px 1fr auto auto; gap: 14px; align-items: center;
  padding: 12px 14px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--line);
}
.auc-row.auc-lead {
  background: linear-gradient(110deg, rgba(255,165,61,.18), rgba(255,106,44,.12));
  border-color: rgba(255,106,44,.4);
}
.auc-rank { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--brand-deep); text-align: center; }
.auc-vendor { font-weight: 700; color: var(--ink); font-size: .95rem; }
.auc-bid { font-family: var(--font-display); font-weight: 700; font-size: .98rem; color: var(--ink); letter-spacing: -.01em; }
.auc-row.auc-lead .auc-bid { color: var(--brand-deep); }
.auc-flag {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
  color: #fff; background: var(--grad); padding: 4px 10px; border-radius: var(--radius-pill);
  grid-column: 4 / 5;
}
.auc-foot { margin-top: 14px; font-size: .76rem; color: var(--muted); text-align: center; }
@keyframes aucBlink { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* Vendor network — two side-by-side cards with a sync link */
.p2p-network {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: stretch;
  max-width: 1080px; margin-inline: auto;
}
.net-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 28px 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.net-head { display: flex; flex-direction: column; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.net-head strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.net-tag {
  display: inline-flex; align-self: flex-start;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); background: rgba(255,138,61,.12); border: 1px solid rgba(255,138,61,.3);
  padding: 5px 11px; border-radius: var(--radius-pill);
}
.net-tag--vendor { color: var(--brand-deep); background: rgba(240,58,18,.10); border-color: rgba(240,58,18,.32); }
.net-link {
  display: grid; place-items: center; position: relative;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.net-link::before, .net-link::after {
  content: ""; position: absolute; left: -10px; right: -10px; height: 2px;
  background: linear-gradient(90deg, rgba(255,138,61,.05), rgba(255,106,44,.6), rgba(255,138,61,.05));
}
.net-link::before { top: calc(50% - 12px); }
.net-link::after  { top: calc(50% + 10px); animation: netFlow 2.6s linear infinite; }
@keyframes netFlow { 0% { transform: translateX(-40%); } 100% { transform: translateX(40%); } }
@media (max-width: 800px) {
  .p2p-network { grid-template-columns: 1fr; }
  .net-link::before, .net-link::after { display: none; }
  .net-link::before { content: "real-time sync"; position: static; background: transparent; height: auto; }
}

/* "Why Sofia P2P" stat tiles */
.p2p-why .why-stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 24px 26px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.p2p-why .why-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.p2p-why .why-stat .v {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.p2p-why .why-stat .t {
  margin-top: 6px; font-weight: 700; color: var(--ink); font-size: .92rem; letter-spacing: -.01em;
}
.p2p-why .why-stat p { margin-top: 12px; font-size: .88rem; line-height: 1.5; }

/* ==========================================================================
   About page
   ========================================================================== */

/* Hero — left text block + right AI-chip visual (mirrors homepage hero rhythm) */
.about-hero { padding-block: clamp(80px, 11vw, 140px) clamp(48px, 6vw, 78px); }
.about-hero-kicker {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 5vw, 72px);
  align-items: center; text-align: left; max-width: 1180px; margin: 0 auto;
}
.about-hero .pill { background: rgba(255,138,61,.10); border-color: rgba(255,138,61,.32); color: var(--brand-deep); }
.about-hero h1 { font-size: clamp(2.2rem, 4.4vw, 4rem); letter-spacing: -.025em; }
.about-hero-visual { position: relative; }
.about-hero-visual .ai-chip { max-width: 460px; }
@media (max-width: 900px) {
  .about-hero-kicker { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .about-hero-visual { order: -1; max-width: 360px; margin-inline: auto; }
}

/* At-a-glance stat band */
.about-stat-band { padding-block: clamp(28px, 4vw, 48px); }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 36px);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF7 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); opacity: .65;
}
.about-stat { text-align: center; position: relative; }
.about-stat + .about-stat::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 1px; background: var(--line);
}
.about-stat .v {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem); line-height: 1;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-stat .v .plus { font-size: .7em; }
.about-stat .l {
  margin-top: 10px; font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -.005em;
}
@media (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-stat + .about-stat::before { display: none; }
}
@media (max-width: 500px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* "What we stay focused on" sidebar */
.about-focus {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.about-focus::before {
  content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 3px;
  background: var(--grad); opacity: .55; border-radius: 0 0 4px 4px;
}
.af-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}
.af-eyebrow svg { color: var(--brand); width: 16px; height: 16px; }

/* Journey timeline — left spine + year pill above each card */
.about-journey {
  list-style: none;
  padding: 0 0 0 44px;
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.about-journey::before {
  content: "";
  position: absolute;
  left: 11px; top: 6px; bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(255,138,61,.22) 100%);
}
.about-journey li {
  position: relative;
  padding-bottom: 28px;
}
.about-journey li:last-child { padding-bottom: 0; }
.about-journey li::before {
  content: "";
  position: absolute;
  left: -39px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 5px var(--bg-2), 0 0 16px rgba(255,77,46,.45);
  z-index: 1;
}
.aj-year {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(255,138,61,.12);
  border: 1px solid rgba(255,138,61,.32);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  white-space: nowrap;
}
.aj-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.aj-body:hover {
  transform: translateY(-2px); border-color: rgba(255,138,61,.42); box-shadow: var(--shadow);
}
.aj-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.22rem; color: var(--ink);
  letter-spacing: -.015em;
}
.aj-body p { margin-top: 8px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 560px) {
  .about-journey { padding-left: 28px; }
  .about-journey::before { left: 5px; }
  .about-journey li::before { left: -27px; width: 12px; height: 12px; }
}

/* --- Download chooser (per-product platform picker) ------------------- */
.dl-picker { max-width: 980px; margin-inline: auto; gap: 22px; }
.dl-platform {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 38px 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  color: inherit;
  position: relative;
  overflow: hidden;
}
.dl-platform::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: .55;
  transition: opacity .25s var(--ease);
}
.dl-platform:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,61,.45);
  box-shadow: var(--shadow-md);
}
.dl-platform:hover::before { opacity: 1; }

.dl-platform-ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,165,61,.16), rgba(240,58,18,.10));
  border: 1px solid rgba(255,138,61,.28);
  color: var(--brand-deep);
  margin-bottom: 16px;
}
.dl-platform-ico svg { width: 32px; height: 32px; display: block; }
.dl-platform-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.6rem;
  color: var(--ink); letter-spacing: -.02em;
}
.dl-platform-meta {
  margin-top: 4px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
}
.dl-platform-min {
  margin-top: 12px; font-size: .85rem; color: var(--muted); line-height: 1.5;
  flex: 1;
}
.dl-platform-btn {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--grad);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff; font-weight: 700; font-size: .94rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px -6px rgba(255,77,46,.45);
  transition: background-position .55s var(--ease);
}
.dl-platform:hover .dl-platform-btn { background-position: 100% 50%; }
.dl-platform-btn svg { width: 16px; height: 16px; }

.dl-foot-note {
  max-width: 720px; margin-inline: auto; text-align: center;
}
.dl-foot-note p { color: var(--ink-soft); line-height: 1.6; }

/* Coming-soon platform card — reads as "we know about this, just not yet" */
.dl-platform--coming {
  cursor: default;
  opacity: .78;
}
.dl-platform--coming:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.dl-platform--coming::before { opacity: .25 !important; }
.dl-platform--coming .dl-platform-ico {
  background: linear-gradient(135deg, rgba(124, 135, 155, .12), rgba(124, 135, 155, .04));
  border-color: var(--line-2);
  color: var(--muted);
}
.dl-platform--coming .dl-platform-meta { color: var(--muted); letter-spacing: .08em; }
.dl-platform-btn--coming {
  background: var(--bg-2) !important;
  color: var(--muted) !important;
  box-shadow: none !important;
  border: 1px solid var(--line);
}
.dl-platform--coming:hover .dl-platform-btn--coming { background: var(--bg-2) !important; }

/* --- Sofia for Small Business "Free forever" card --------------------- */
.sfsb-free-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.sfsb-free-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--grad);
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.sfsb-free-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 600; color: var(--ink);
  font-size: 1rem;
}
.sfsb-free-row:first-of-type { border-top: 0; }
.sfsb-check {
  display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(15, 157, 99, .12);
  color: #0f9d63;
}
.sfsb-check svg { width: 16px; height: 16px; }

/* --- Generic bespoke "Capability NN" panel (services-style show-row) ---- */
.mk-feat-panel {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  padding: 56px 32px;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(255,165,61,.06) 0%, rgba(255,255,255,0) 60%);
  overflow: hidden;
}
.mk-feat-deco {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 82%, rgba(255,138,61,.16), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(240,58,18,.12), transparent 40%);
}
.mk-feat-num {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(255,138,61,.10);
  border: 1px solid rgba(255,138,61,.30);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.mk-feat-ico {
  position: relative;
  width: 94px; height: 94px;
  display: grid; place-items: center;
  border-radius: 24px;
  background: var(--grad);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 22px 50px -16px rgba(255,77,46,.55),
    0 12px 26px -8px rgba(255,77,46,.4);
  transition: transform .35s var(--ease), background-position .6s var(--ease);
}
.mk-feat-ico svg { width: 46px; height: 46px; }
.show-row:hover .mk-feat-ico {
  transform: translateY(-3px) scale(1.04);
  background-position: 100% 50%;
}
.mk-feat-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.18rem;
  color: var(--ink);
  text-align: center;
  letter-spacing: -.015em;
  max-width: 28ch;
  line-height: 1.25;
}

/* 5-col grid for the "five disconnected tools" row */
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .grid-5 { grid-template-columns: 1fr; } }

/* Industry row (Fit & Deployment / Built For) — gradient-bordered pills */
.industry-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 980px; margin: 36px auto 0;
}
.industry-pill {
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 700; letter-spacing: -.005em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 12px 22px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.industry-pill:hover { transform: translateY(-2px); border-color: rgba(255,138,61,.55); box-shadow: var(--shadow); }

/* ==========================================================================
   SprintLink bespoke detail page
   ========================================================================== */

/* Protocol banner (slide 3) */
.sl-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 880px; margin: 0 auto;
}
.sl-bullet {
  position: relative;
  display: grid; place-items: center;
  padding: 30px 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,165,61,.10), rgba(240,58,18,.06));
  border: 1px solid rgba(255,138,61,.32);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; letter-spacing: .04em;
  color: var(--brand-deep);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sl-bullet:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
@media (max-width: 720px) { .sl-banner { grid-template-columns: repeat(2, 1fr); } }

/* Terminal mockup (slide 6) */
.sl-term {
  background: #0B1020;
  color: #E9EDF7;
  font-family: 'JetBrains Mono', 'Fira Code', Menlo, Consolas, monospace;
  font-size: 12.5px; line-height: 1.55;
  padding: 22px 20px;
  border-radius: 0 0 18px 18px;
  min-height: 180px;
}
.sl-term-line { white-space: pre-wrap; }
.sl-prompt { color: #FFB020; margin-right: 8px; }
.sl-mut { color: #79839A; font-size: 11.5px; }
.sl-ok { color: #5fe0a8; margin-right: 6px; }
.sl-caret { display: inline-block; width: 7px; height: 14px; background: #FFB020; vertical-align: middle; animation: slBlink 1.05s steps(2) infinite; }
@keyframes slBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Screen-share access code (slide 7) */
.sl-code {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,165,61,.12), rgba(240,58,18,.08));
  border: 1px solid rgba(255,138,61,.36);
}
.sl-code-l { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
.sl-code-v { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .18em; color: var(--brand-deep); }

/* Multi-session tabs (slide 8) */
.sl-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1080px; margin: 0 auto;
}
.sl-tab {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.sl-tab:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.sl-tab strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-top: 8px; }
.sl-tab > span:last-child { font-size: .82rem; color: var(--muted); }
.sl-tab-kind {
  align-self: flex-start;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; padding: 4px 9px; border-radius: var(--radius-pill);
}
.sl-tab-kind--rdp    { background: #FF6A2C; }
.sl-tab-kind--ssh    { background: #1F2937; }
.sl-tab-kind--sftp   { background: #FFB020; color: #6E4500; }
.sl-tab-kind--screen { background: #E23410; }
@media (max-width: 880px) { .sl-tabs { grid-template-columns: repeat(2, 1fr); } }

/* Security architecture diagram (slide 9) */
.sl-arch {
  display: flex; align-items: stretch; justify-content: center; gap: 22px;
  flex-wrap: wrap;
  max-width: 920px; margin: 0 auto;
}
.sl-node {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 26px; min-width: 180px;
  box-shadow: var(--shadow-sm);
}
.sl-node-ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow);
}
.sl-node-ico svg { width: 24px; height: 24px; }
.sl-node-l { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .95rem; text-align: center; }
.sl-node--proxy { border: 2px dashed rgba(255,138,61,.5); background: linear-gradient(135deg, rgba(255,165,61,.05), rgba(255,255,255,1)); }
.sl-arrow {
  align-self: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.6rem; color: var(--brand);
}
@media (max-width: 700px) {
  .sl-arch { flex-direction: column; align-items: center; }
  .sl-arrow { transform: rotate(90deg); }
}
