/* ============================================================
   ServiceBuddy — Design System (refined)
   Archetype: SaaS / Product · Premium · HIGH complexity
   Type: Instrument Sans (display) + Inter (body) + JetBrains Mono (UI)
   Color: Ink #0A0A14 · Brand Teal #00B2CC · Mint #00E5A0 · Cream #FAFAF7
          Structural: Deep Teal #2C4750 · Copper #A85D3B (mascot palette)
   ============================================================ */

/* -------- Tokens -------- */
:root {
  --ink: #0A0A14;
  --ink-2: #14141F;
  --ink-3: #1E1E2C;
  --ink-soft: #353542;
  --violet: #00B2CC;        /* brand teal — "Buddy" accent, all interactive */
  --violet-2: #33C2D4;
  --violet-3: #80DCEA;
  --violet-glow: rgba(0, 178, 204, 0.28);
  --mint: #00E5A0;
  --mint-2: #62F0BC;
  --mint-glow: rgba(0, 229, 160, 0.30);
  --teal: #2C4750;          /* mascot body */
  --copper: #A85D3B;        /* mascot trim */
  --cream: #FAFAF7;
  --cream-2: #F4F2EC;
  --cream-3: #E8E6DD;
  --line: #E8E6DD;
  --line-strong: #D6D3C7;
  --muted: #6B6B76;
  --muted-2: #8B8B95;
  --on-dark-muted: #9794B5;
  --primary: var(--violet);
  --accent: var(--mint);

  --f-display: 'Instrument Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 1px 2px rgba(10,10,20,.04), 0 6px 18px rgba(10,10,20,.06);
  --shadow-float: 0 12px 30px rgba(10,10,20,.12), 0 2px 4px rgba(10,10,20,.04);
  --shadow-violet: 0 18px 40px rgba(0,178,204,.18);
  --shadow-mint: 0 18px 40px rgba(0,229,160,.22);
  --shadow-stage: 0 40px 90px rgba(10,10,20,.22), 0 4px 12px rgba(10,10,20,.06), inset 0 0 0 1px rgba(255,255,255,.6);

  /* Panel surfaces — cinematic cream gradient with subtle violet/mint mood */
  --panel-grad: radial-gradient(120% 100% at 50% 0%, #FBFAF5, #EDEAE0 78%, #E2DFD3);
  --panel-grad-warm: radial-gradient(120% 100% at 30% 10%, #FBF8F1, rgba(232,230,221,.95) 70%, #DFDDD0);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { position: relative; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(0,229,160,.18);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6.5vw, 76px); letter-spacing: -0.035em; line-height: 1; }
h2 { font-size: clamp(30px, 4.2vw, 48px); letter-spacing: -0.025em; line-height: 1.05; }
h3 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.015em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--muted); max-width: 56ch; }

/* -------- Buttons -------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  min-height: 48px;
  isolation: isolate;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(10,10,20,.18);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: -1;
}
.btn-primary:hover { color: var(--ink); transform: translateY(-1px); box-shadow: 0 16px 32px rgba(0,178,204,.32); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-light {
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* -------- Header — modernized -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,.78);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250,250,247,.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
/* Brand mark — mascot avatar chip */
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--panel-grad);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10,10,20,.10), inset 0 0 0 1px rgba(255,255,255,.6);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .brand-mark { transform: rotate(-5deg) scale(1.06); }
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
/* Wordmark — text-only, two-tone */
.brand-text { display: inline-flex; align-items: center; }
.brand-service { color: #1F2D3D; }
.brand-buddy { color: #2A9090; }
/* On dark backgrounds (footer, CTA bands) */
.brand-dark .brand-service { color: rgba(250,250,247,.92); }
.brand-dark .brand-buddy { color: #4EC4C4; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  margin: 0; padding: 0;
  list-style: none;
}
.nav-links li { list-style: none; padding: 0; margin: 0; }
.nav-links li::before, .nav-links li::marker { content: none; display: none; }
.nav-links a {
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 450;
  padding: 8px 4px;
  display: inline-block;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-cta .btn { padding: 10px 18px; min-height: 40px; font-size: 14px; }
/* Mobile-only CTA lives inside the slide-out panel — hidden on desktop */
.nav-links .mobile-cta { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); position: relative; transition: background .2s ease; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
  transition: transform .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* -------- Hero -------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 7vw, 90px);
}
.hero::before {
  content: '';
  position: absolute; inset: -10% -5% auto -5%;
  height: 75%;
  background:
    radial-gradient(60% 70% at 18% 30%, rgba(0,178,204,.22), transparent 60%),
    radial-gradient(45% 60% at 82% 20%, rgba(0,229,160,.18), transparent 65%);
  filter: blur(2px);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 75%);
  z-index: -1;
  opacity: .6;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9C7E0;
  margin-bottom: 28px;
}
.hero-badge .pill {
  background: linear-gradient(135deg, var(--violet), var(--mint));
  color: var(--ink);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero h1 { color: var(--cream); }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--violet-2) 10%, var(--mint) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: #C9C7E0;
  margin: 22px 0 32px;
  max-width: 50ch;
  line-height: 1.55;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-cta .btn-primary {
  background: var(--cream); color: var(--ink);
}
.hero-cta .btn-primary:hover { color: var(--ink); }

/* Hero meta — icon row (replaces dash separators) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #B0AECF;
}
.hero-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}
.hero-meta .meta-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,229,160,.12);
  display: grid; place-items: center;
  color: var(--mint);
  flex-shrink: 0;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,229,160,.24), 0 0 12px rgba(0,229,160,.1);
}
.hero-meta .meta-item:nth-child(2) .meta-icon {
  background: rgba(0,188,214,.16);
  color: var(--violet-2);
  box-shadow: inset 0 0 0 1px rgba(0,188,214,.28), 0 0 12px rgba(0,178,204,.12);
}
.hero-meta .meta-item:nth-child(3) .meta-icon {
  background: rgba(0,229,160,.10);
  color: var(--mint);
}
.hero-meta .meta-icon svg { width: 12px; height: 12px; stroke-width: 2; }
.hero-meta .meta-icon::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: inherit;
  filter: blur(8px);
  opacity: .35;
  z-index: -1;
}

/* -------- Mascot stage (hero) -------- */
.hero-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.mascot-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}
.mascot-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  box-shadow: var(--shadow-stage);
  isolation: isolate;
  aspect-ratio: 1 / 1;
}
.mascot-panel::before {
  content: '';
  position: absolute; inset: -1px;
  background:
    radial-gradient(50% 40% at 50% 110%, rgba(0,178,204,.10), transparent 70%),
    radial-gradient(40% 30% at 80% 0%, rgba(0,229,160,.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.mascot-panel::after {
  /* Subtle floor reflection so mascot feels grounded */
  content: '';
  position: absolute;
  left: 12%; right: 12%;
  bottom: 0; height: 18%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.10), transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.mascot-img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.mascot-stage .mascot-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
}
.mascot-corner-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(10,10,20,.85);
  color: var(--cream);
  border-radius: 999px;
  padding: 7px 13px 7px 9px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.mascot-corner-tag .dot {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,229,160,.18);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,229,160,.18); }
  50% { box-shadow: 0 0 0 10px rgba(0,229,160,0); }
}

/* Float cards anchored to mascot panel */
.float-card {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  z-index: 4;
}
.float-card .fc-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
  flex-shrink: 0;
}
.float-card .fc-mark.is-mint { background: var(--mint); color: var(--ink); }
.float-card .fc-mark.is-violet { background: var(--violet); color: var(--cream); }
.float-card .fc-text strong { display: block; font-weight: 600; font-size: 13.5px; }
.float-card .fc-text span { color: var(--muted); font-size: 11.5px; font-family: var(--f-mono); }

.mascot-stage .float-1 { top: 10%; left: -10%; animation: floatA 6s ease-in-out infinite; }
.mascot-stage .float-2 { bottom: 14%; right: -10%; animation: floatB 7s ease-in-out infinite; }
.mascot-stage .float-3 {
  bottom: -4%; left: 12%;
  background: var(--ink);
  color: var(--cream);
  animation: floatC 8s ease-in-out infinite;
  box-shadow: 0 22px 50px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.06);
}
.mascot-stage .float-3 .fc-text span { color: rgba(255,255,255,.65); }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(-2deg); } }

/* -------- Sections -------- */
.sec { padding: clamp(72px, 10vw, 130px) 0; }
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.sec-head .lead { margin: 0; }

/* -------- Product showcase -------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}
.feature h3 { margin: 0; }
.feature p { margin: 0; font-size: 14.5px; color: var(--muted); }
.feature-cta {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.feature-cta::after { content: '→'; transition: transform .2s ease; }
.feature:hover .feature-cta::after { transform: translateX(4px); }

/* Feature mascot panel (homepage cards) */
.feature-mascot {
  position: relative;
  aspect-ratio: 5 / 4;
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.feature-mascot::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 0; height: 16%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.08), transparent 80%);
  z-index: 0;
}
.feature-mascot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  z-index: 1;
}
.feature-mascot .pill {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,10,20,.85);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 2;
}
.feature-mascot .pill.is-mint { background: var(--mint); color: var(--ink); }
.feature-mascot .pill.is-violet { background: var(--violet); color: var(--cream); }

/* Mini-mock (kept for ekonomi card on funktioner page) */
.feature-visual {
  aspect-ratio: 5 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #14141F, #1E1E2C);
  position: relative;
  border: 1px solid rgba(255,255,255,.04);
}
.mini-mock {
  position: absolute; inset: 0;
  padding: 14px;
  display: grid;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: #B0AECF;
}
.mini-mock .line {
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  height: 14px;
  position: relative;
  overflow: hidden;
}
.mini-mock .line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,178,204,.4) 50%, transparent);
  animation: shimmer 3s infinite;
}
.mini-mock .line.short { width: 60%; }
.mini-mock .line.tall { height: 22px; background: linear-gradient(90deg, rgba(0,178,204,.3), rgba(0,229,160,.18)); }
.mini-mock .line.tag { width: 40%; height: 10px; background: rgba(0,229,160,.18); }
.mini-mock .pill {
  align-self: start;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: #C9C7E0;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.06);
}
.mini-mock .pill.is-mint { background: rgba(0,229,160,.16); color: var(--mint); }
.mini-mock .pill.is-violet { background: rgba(0,178,204,.18); color: var(--violet-3); }

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* -------- Solutions tab switcher -------- */
.solutions {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute; inset: -20%;
  background: radial-gradient(40% 40% at 80% 20%, rgba(0,229,160,.18), transparent 70%);
  pointer-events: none;
}
.solutions h2 { color: var(--cream); }
.solutions .lead { color: #C9C7E0; }
.solutions .eyebrow { color: var(--mint); }
.solutions .eyebrow::before { background: var(--mint); }

.sol-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 36px 0 28px;
  padding: 6px;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  width: fit-content;
}
.sol-tab {
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  color: #C9C7E0;
  font-family: var(--f-body);
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}
.sol-tab:hover { color: var(--cream); }
.sol-tab.is-active { background: var(--cream); color: var(--ink); }

.sol-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: fadeUp .4s ease both;
}
.sol-panel.is-active { display: grid; }
.sol-panel h3 { color: var(--cream); font-size: clamp(22px, 2.4vw, 30px); }
.sol-panel p { color: #C9C7E0; font-size: 15.5px; }
.sol-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.sol-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: #DAD8F0;
}
.sol-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  flex-shrink: 0;
  margin-top: 4px;
}
.sol-visual {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(160deg, #1E1E2C, #14141F);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.sol-mascot {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: 0 28px 60px rgba(0,0,0,.30), inset 0 0 0 1px rgba(255,255,255,.5);
}
.sol-mascot::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 0; height: 16%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.08), transparent 80%);
  z-index: 0;
}
.sol-mascot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  z-index: 1;
}
.sol-mascot .pill {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,10,20,.88);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.sol-mascot .pill.is-mint { background: var(--mint); color: var(--ink); }
.sol-mascot .pill.is-violet { background: var(--violet); color: var(--cream); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* -------- Workflow / how it works -------- */
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.step:hover { border-color: var(--ink); transform: translateX(4px); box-shadow: var(--shadow-card); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.step.is-mint .step-num { background: var(--mint); color: var(--ink); }
.step.is-violet .step-num { background: var(--violet); color: var(--cream); }
.step-body h3 { font-size: 19px; margin-bottom: 6px; letter-spacing: -0.02em; }
.step-body p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* Workflow mascot — cinematic, integrated, no edge clipping */
.workflow-mascot-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  overflow: hidden;
  box-shadow: var(--shadow-stage);
  isolation: isolate;
}
.workflow-mascot-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 0%, rgba(0,178,204,.18), transparent 60%),
    radial-gradient(50% 40% at 80% 100%, rgba(0,229,160,.18), transparent 70%);
  z-index: 0;
}
.workflow-mascot-img::after {
  /* Soft floor shadow to ground the mascot */
  content: '';
  position: absolute; left: 8%; right: 8%; bottom: 0; height: 22%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.16), transparent 80%);
  z-index: 0;
}
.workflow-mascot-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.workflow-mascot-img .pill-set {
  position: absolute;
  top: 22px; left: 22px;
  display: grid;
  gap: 8px;
  z-index: 2;
}
.workflow-mascot-img .pill-set .pill {
  background: rgba(10,10,20,.88);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.workflow-mascot-img .pill-set .pill .pulse-dot {
  width: 6px; height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: livePulse 2.4s ease-in-out infinite;
}

/* -------- Metrics / proof -------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding: 36px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.metric { border-right: 1px solid var(--line); padding-right: 24px; }
.metric:last-child { border-right: 0; }
.metric .num {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric .label { font-size: 13.5px; color: var(--muted); }

/* Testimonial */
.testimonial {
  background: var(--cream-2);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line);
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.testimonial blockquote::before {
  content: '“';
  font-size: 80px;
  line-height: 0.6;
  display: block;
  color: var(--violet);
  margin-bottom: 12px;
}
.testimonial-byline {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.testimonial-byline strong { display: block; }
.testimonial-byline span { color: var(--muted); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; }

.testimonial-stat {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-align: left;
}
.testimonial-stat .num {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet-2), var(--mint));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.testimonial-stat .lbl {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B0AECF;
}

/* -------- Pricing -------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.plan.is-pop {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,178,204,.18);
}
.plan.is-pop:hover { box-shadow: 0 30px 70px rgba(0,178,204,.28); }
.plan.is-pop p, .plan.is-pop .plan-feat li { color: #C9C7E0; }
.plan.is-pop h3 { color: var(--cream); }
.plan-tag {
  position: absolute;
  top: -12px; right: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-name {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.plan.is-pop .plan-name { color: var(--mint); }
.plan h3 { font-size: 24px; margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.plan-price .amount {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price .per {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.plan.is-pop .plan-price .per { color: #B0AECF; }
.plan-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.plan-feat {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; gap: 9px;
  font-size: 14px;
}
.plan-feat li { display: flex; align-items: flex-start; gap: 10px; }
.plan-feat li::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--mint);
  display: inline-block; flex-shrink: 0; margin-top: 3px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }
.plan.is-pop .btn-primary { background: var(--cream); color: var(--ink); }
.plan.is-pop .btn-primary:hover { color: var(--ink); }

/* -------- Billing toggle -------- */
.billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}
.billing-toggle {
  position: relative;
  display: inline-flex;
  background: rgba(10,10,20,.06);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(10,10,20,.08);
}
.btgl-indicator {
  position: absolute;
  top: 4px;
  left: var(--btgl-x, 4px);
  width: var(--btgl-w, 50%);
  height: calc(100% - 8px);
  background: var(--ink);
  border-radius: 999px;
  transition: left .22s cubic-bezier(.2,.8,.2,1), width .22s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 0;
}
.btgl-opt {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  padding: 9px 26px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  transition: color .18s ease;
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btgl-opt.is-active { color: var(--cream); }
.btgl-opt:hover:not(.is-active) { color: var(--ink); }
.btgl-opt:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
  border-radius: 999px;
}
.billing-save-note {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0;
}
.plan-billing-period {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  margin: 0 0 8px;
  visibility: hidden;
}
.plan-billing-period.is-visible { visibility: visible; }
.plan.is-pop .plan-billing-period { color: #B0AECF; }
.pricing-footer-note {
  text-align: center;
  margin-top: 30px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* -------- FAQ -------- */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 4px 0;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary { color: var(--violet); }
.faq-item[open] summary::after {
  content: '−';
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: rotate(180deg);
}
.faq-item .faq-body { padding: 14px 0 4px; color: var(--muted); font-size: 15px; max-width: 70ch; }

/* -------- CTA band -------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(40% 60% at 90% 30%, rgba(0,229,160,.22), transparent 60%),
    radial-gradient(45% 60% at 10% 70%, rgba(0,178,204,.30), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: #C9C7E0; max-width: 50ch; }
.cta-band .btn-primary { background: var(--cream); color: var(--ink); }
.cta-band .btn-primary:hover { color: var(--ink); }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* CTA mascot — full mascot visible, integrated */
.cta-mascot-img {
  width: 100%;
  max-width: 340px;
  justify-self: center;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 60px rgba(0,0,0,.40), inset 0 0 0 1px rgba(255,255,255,.5);
}
.cta-mascot-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(0,178,204,.10), transparent 70%),
    radial-gradient(40% 30% at 80% 100%, rgba(0,229,160,.10), transparent 70%);
  z-index: 0;
}
.cta-mascot-img::after {
  content: '';
  position: absolute; left: 14%; right: 14%; bottom: 0; height: 16%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.12), transparent 80%);
  z-index: 0;
}
.cta-mascot-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}

/* -------- Footer -------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { color: #B0AECF; font-size: 14px; max-width: 36ch; margin: 16px 0 24px; }
.footer-newsletter { display: flex; gap: 0; max-width: 340px; }
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
}
.footer-newsletter input::placeholder { color: #8B8B95; }
.footer-newsletter input:focus { outline: none; border-color: var(--violet); }
.footer-newsletter button {
  padding: 0 16px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 0 10px 10px 0;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.footer-newsletter button:hover { background: var(--mint); }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #B0AECF;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: #DAD8F0; transition: color .2s ease; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #B0AECF;
  font-family: var(--f-mono);
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: #B0AECF;
  font-family: var(--f-body);
  letter-spacing: 0;
}
.qrious-link {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
  transition: color 0.2s ease;
}
.qrious-link:hover, .qrious-link:focus { text-decoration: none; color: var(--mint); }

/* -------- Page hero (interior pages) -------- */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(50% 70% at 80% 20%, rgba(0,229,160,.18), transparent 65%),
    radial-gradient(60% 60% at 10% 90%, rgba(0,178,204,.25), transparent 70%);
  z-index: -1;
}
.page-hero h1 { color: var(--cream); max-width: 18ch; }
.page-hero h1 .grad {
  background: linear-gradient(135deg, var(--violet-2) 10%, var(--mint) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lead { color: #C9C7E0; max-width: 60ch; margin-top: 22px; }
.page-hero .eyebrow { color: var(--mint); margin-bottom: 22px; }
.page-hero .eyebrow::before { background: var(--mint); }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.page-hero-mascot-img {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 60px rgba(0,0,0,.40), inset 0 0 0 1px rgba(255,255,255,.5);
}
.page-hero-mascot-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 0%, rgba(0,178,204,.14), transparent 60%),
    radial-gradient(50% 40% at 80% 100%, rgba(0,229,160,.14), transparent 70%);
  z-index: 0;
}
.page-hero-mascot-img::after {
  content: '';
  position: absolute; left: 12%; right: 12%; bottom: 0; height: 18%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.14), transparent 80%);
  z-index: 0;
}

.page-hero-mascot-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}
.page-hero-mascot-img .pill {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(10,10,20,.85);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

/* -------- Avatar (testimonial, FAQ helper) -------- */
.mascot-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--panel-grad);
  box-shadow: 0 4px 12px rgba(10,10,20,.14), inset 0 0 0 2px rgba(255,255,255,.6);
}
.mascot-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.faq-helper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px;
}
.faq-helper .mascot-avatar { width: 40px; height: 40px; }
.faq-helper strong { color: var(--ink); font-weight: 500; }

/* -------- Feature deep-dive (funktioner page) -------- */
.feature-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.feature-deep:nth-child(even) { direction: rtl; }
.feature-deep:nth-child(even) > * { direction: ltr; }
.feature-deep-text .eyebrow { margin-bottom: 18px; }
.feature-deep-text h2 { font-size: clamp(26px, 3vw, 36px); }
.feature-deep-text ul {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 8px;
}
.feature-deep-text li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--muted);
}
.feature-deep-text li::before {
  content: '\2713';
  color: var(--violet);
  font-weight: 700;
  font-family: var(--f-mono);
  flex-shrink: 0;
}

.feature-deep-mascot {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 50px rgba(10,10,20,.18), inset 0 0 0 1px rgba(255,255,255,.6);
}
.feature-deep-mascot::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 0%, rgba(0,178,204,.10), transparent 60%),
    radial-gradient(40% 30% at 90% 100%, rgba(0,229,160,.10), transparent 70%);
  z-index: 0;
}
.feature-deep-mascot::after {
  content: '';
  position: absolute; left: 10%; right: 10%; bottom: 0; height: 16%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(10,10,20,.10), transparent 80%);
  z-index: 0;
}
.feature-deep-mascot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  z-index: 1;
}
.feature-deep-mascot .pill {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,10,20,.85);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.feature-deep-mascot .pill.is-mint { background: var(--mint); color: var(--ink); }
.feature-deep-mascot .pill.is-violet { background: var(--violet); color: var(--cream); }
.feature-deep-visual { aspect-ratio: 4 / 3; border-radius: 18px; background: linear-gradient(160deg, #14141F, #0A0A14); border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }

/* -------- Industry grid -------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-card);
}
.industry-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--mint));
  display: grid; place-items: center;
  color: var(--cream);
  margin-bottom: 4px;
}
.industry-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.industry-card h3 { font-size: 19px; margin: 0; }
.industry-card p { font-size: 14px; color: var(--muted); margin: 0; }
.industry-card .tags {
  margin-top: auto;
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.industry-card .tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream-2);
  padding: 4px 9px;
  border-radius: 999px;
}

/* -------- Reveal -------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -------- Page-specific blocks -------- */
.prose { max-width: 70ch; margin: 0 auto; }
.prose p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.2em; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; font-size: 20px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 70px); align-items: start; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.value-card:hover { border-color: rgba(168,93,59,.45); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.value-card .v-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--violet), var(--mint)); display: grid; place-items: center; color: var(--cream); margin-bottom: 16px; }
.value-card .v-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 19px; margin: 0 0 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.contact-form { display: grid; gap: 16px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink); }
.contact-form input, .contact-form textarea, .contact-form select { font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(0,178,204,.18); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn-primary { justify-self: start; }

.contact-channels { display: grid; gap: 18px; }
.channel-card { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 22px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s ease, transform .2s ease; }
.channel-card:hover { border-color: rgba(168,93,59,.50); transform: translateX(2px); }
.channel-card .ch-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: var(--cream); display: grid; place-items: center; }
.channel-card .ch-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.channel-card h3 { font-size: 17px; margin: 0 0 4px; letter-spacing: -0.015em; }
.channel-card p { font-size: 14px; color: var(--muted); margin: 0 0 6px; }
.channel-card .ch-link { font-family: var(--f-mono); font-size: 13px; color: var(--violet); }

.search-bar { display: flex; gap: 0; background: var(--cream); border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 6px 6px 22px; max-width: 640px; margin: 24px 0 50px; transition: border-color .2s ease, box-shadow .2s ease; }
.search-bar:focus-within { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(0,178,204,.16); }
.search-bar svg { width: 20px; height: 20px; stroke: var(--muted); fill: none; stroke-width: 2; align-self: center; }
.search-bar input { flex: 1; border: 0; background: transparent; padding: 14px 16px; font-size: 15px; color: var(--ink); outline: none; }
.search-bar input::placeholder { color: var(--muted); }
.search-bar button { padding: 12px 22px; background: var(--ink); color: var(--cream); border-radius: 999px; font-size: 14px; font-weight: 500; transition: background .2s ease; }
.search-bar button:hover { background: var(--violet); }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.help-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 12px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.help-card:hover { transform: translateY(-4px); border-color: rgba(168,93,59,.45); box-shadow: var(--shadow-card); }
.help-card .h-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cream-2); color: var(--violet); display: grid; place-items: center; }
.help-card .h-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.help-card h3 { font-size: 17px; margin: 0; }
.help-card p { font-size: 13.5px; color: var(--muted); margin: 0; }
.help-card .h-meta { margin-top: auto; font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; padding-top: 10px; border-top: 1px dashed var(--line); }

.status-overall { display: flex; align-items: center; gap: 18px; padding: 26px 28px; background: linear-gradient(135deg, rgba(0,229,160,.16), rgba(0,229,160,.04)); border: 1px solid rgba(0,229,160,.30); border-radius: var(--radius-lg); margin-bottom: 36px; }
.status-overall .so-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(0,229,160,.20); animation: livePulse 2.4s ease-in-out infinite; }
.status-overall h2 { font-size: 22px; margin: 0; letter-spacing: -0.015em; }
.status-overall .so-meta { font-family: var(--f-mono); font-size: 12px; color: var(--muted); margin-left: auto; letter-spacing: .04em; }

.status-list { display: grid; gap: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.status-row { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-row .sr-name { font-weight: 500; font-size: 15px; }
.status-row .sr-bars { display: flex; gap: 2px; }
.status-row .sr-bars span { width: 4px; height: 24px; background: var(--mint); border-radius: 2px; opacity: .9; }
.status-row .sr-bars span.dn { background: #FFD166; opacity: .7; }
.status-row .sr-bars span.bk { background: #FF6B6B; opacity: .8; }
.status-row .sr-state { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--mint); text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.status-row .sr-state::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.status-row.is-degraded .sr-state { color: #C09000; }
.status-row.is-degraded .sr-state::before { background: #FFD166; }

.incident-list { display: grid; gap: 16px; margin-top: 36px; }
.incident { padding: 20px 24px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); border-left: 3px solid var(--mint); }
.incident.is-degraded { border-left-color: #FFD166; }
.incident.is-resolved { border-left-color: var(--mint); opacity: .85; }
.incident header { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.incident header strong { font-weight: 600; font-size: 15.5px; }
.incident header time { font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.incident p { font-size: 14px; color: var(--muted); margin: 0; }

.role-list { display: grid; gap: 14px; margin-top: 24px; }
.role-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 24px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.role-card:hover { border-color: rgba(168,93,59,.45); transform: translateX(2px); box-shadow: var(--shadow-card); }
.role-card h3 { font-size: 18px; margin: 0 0 6px; letter-spacing: -0.015em; }
.role-card .r-meta { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.role-card .r-meta span::before { content: '\B7'; margin-right: 8px; color: var(--line-strong); }
.role-card .r-meta span:first-child::before { content: none; }
.role-card .role-cta { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-strong); transition: background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap; }
.role-card .role-cta:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.perk { padding: 22px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.perk .p-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--cream-2); color: var(--ink); display: grid; place-items: center; margin-bottom: 12px; }
.perk .p-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.perk h4 { font-size: 15.5px; margin: 0 0 4px; letter-spacing: -0.01em; font-family: var(--f-display); font-weight: 600; }
.perk p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============================================================
   CINEMATIC POLISH LAYER
   ============================================================ */

/* Universal mascot bottom-fade — all mascots dissolve into panels */
.mascot-stage .mascot-img,
.feature-mascot img,
.feature-deep-mascot img,
.sol-mascot img,
.cta-mascot-img img,
.page-hero-mascot-img img,
.workflow-mascot-img img {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

/* Dark cinematic panel variant — for workflow + select CTAs */
.workflow-mascot-img.is-dark,
.cta-mascot-img.is-dark,
.page-hero-mascot-img.is-dark {
  background:
    radial-gradient(70% 60% at 50% 0%, #1A1A2A 0%, #10101C 60%, #08080F 100%) !important;
  box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}
.workflow-mascot-img.is-dark::before,
.cta-mascot-img.is-dark::before,
.page-hero-mascot-img.is-dark::before {
  background:
    radial-gradient(55% 45% at 30% 18%, rgba(0,178,204,.32), transparent 65%),
    radial-gradient(45% 35% at 80% 90%, rgba(0,229,160,.20), transparent 70%),
    radial-gradient(40% 30% at 75% 30%, rgba(168,93,59,.14), transparent 70%) !important;
  z-index: 0;
}
.workflow-mascot-img.is-dark::after,
.cta-mascot-img.is-dark::after,
.page-hero-mascot-img.is-dark::after {
  background: radial-gradient(60% 100% at 50% 100%, rgba(0,0,0,.55), transparent 80%) !important;
}
.workflow-mascot-img.is-dark img,
.cta-mascot-img.is-dark img,
.page-hero-mascot-img.is-dark img {
  filter: contrast(1.04) saturate(1.06);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 74%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 74%, transparent 100%);
}
.workflow-mascot-img.is-dark .pill,
.workflow-mascot-img.is-dark .pill-set .pill,
.cta-mascot-img.is-dark .pill,
.page-hero-mascot-img.is-dark .pill {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12);
}

/* Ambient particle dust in hero */
.hero .ambient-dust {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(255,255,255,.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 32% 48%, rgba(255,255,255,.3) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 64% 18%, rgba(0,229,160,.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 78% 62%, rgba(255,255,255,.35) 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 32%, rgba(0,178,204,.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 12% 70%, rgba(255,255,255,.25) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 84%, rgba(0,229,160,.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,.35) 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000, transparent 95%);
          mask-image: radial-gradient(80% 70% at 50% 40%, #000, transparent 95%);
  z-index: 0;
  animation: dust 22s ease-in-out infinite;
}
@keyframes dust {
  0%,100% { opacity: .55; transform: translateY(0); }
  50% { opacity: .9; transform: translateY(-3px); }
}
.hero > .container { position: relative; z-index: 1; }

/* Refined navbar — gradient hairline on scroll */
.site-header { border-bottom: 0; }
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,178,204,.0) 8%, rgba(0,178,204,.35) 35%, rgba(0,229,160,.40) 50%, rgba(0,178,204,.35) 65%, rgba(0,178,204,.0) 92%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.site-header.scrolled::after { opacity: .6; }



/* Nav links — accent dot above on hover/active */
.nav-links a::before {
  content: '';
  position: absolute;
  left: 50%; top: -3px;
  transform: translateX(-50%) scale(0);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(0,229,160,.6);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover::before,
.nav-links a.is-active::before { transform: translateX(-50%) scale(1); }

/* Hero meta icons — pulse breathing */
.hero-meta .meta-icon { animation: metaBreath 3.6s ease-in-out infinite; }
.hero-meta .meta-item:nth-child(2) .meta-icon { animation-name: metaBreathV; animation-delay: .8s; }
.hero-meta .meta-item:nth-child(3) .meta-icon { animation-delay: 1.6s; }
@keyframes metaBreath {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(0,229,160,.24), 0 0 12px rgba(0,229,160,.10); }
  50% { box-shadow: inset 0 0 0 1px rgba(0,229,160,.42), 0 0 20px rgba(0,229,160,.24); }
}
@keyframes metaBreathV {
  0%,100% { box-shadow: inset 0 0 0 1px rgba(0,178,204,.22), 0 0 10px rgba(0,178,204,.10); }
  50% { box-shadow: inset 0 0 0 1px rgba(0,178,204,.38), 0 0 16px rgba(0,178,204,.20); }
}

/* Float cards — refined frosted glass */
.float-card {
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
  background: rgba(250,250,247,.92);
  border: 1px solid rgba(255,255,255,.7);
}
.mascot-stage .float-3 {
  background: rgba(10,10,20,.92);
  border-color: rgba(255,255,255,.08);
}

/* CTA band cinematic depth */
.cta-band {
  box-shadow:
    0 60px 120px rgba(0,178,204,.14),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

/* Subtle copper-thread accent on hover for various surfaces */
.feature:hover { border-color: rgba(168,93,59,.40); }
.industry-card:hover { border-color: rgba(168,93,59,.50); }

@media (prefers-reduced-motion: reduce) {
  .hero .ambient-dust { animation: none; }
  .hero-meta .meta-icon { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .solutions-inner { grid-template-columns: 1fr !important; gap: 30px !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 380px; margin-top: 16px; }
  .mascot-stage .float-1 { left: 0; }
  .mascot-stage .float-2 { right: 0; }
  .mascot-stage .float-3 { left: 6%; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .product-grid, .pricing-grid, .industry-grid, .help-grid, .value-grid, .perks-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
  .feature-deep { grid-template-columns: 1fr; padding: 36px 0; }
  .feature-deep:nth-child(even) { direction: ltr; }
  .cta-band { grid-template-columns: 1fr; text-align: left; }
  .cta-mascot-img { max-width: 260px; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-mascot-img { max-width: 320px; justify-self: start; }
  .metrics { grid-template-columns: 1fr 1fr; padding: 24px; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
  .metric:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
  .metric:nth-child(-n+2) { padding-bottom: 18px; }
  .sol-panel { grid-template-columns: 1fr; gap: 24px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .role-card { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    height: calc(100dvh - 72px);
    background: #FAFAF7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px var(--gutter) max(40px, env(safe-area-inset-bottom, 24px));
    gap: 0;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.2,.8,.2,1);
    z-index: 200;
    border-top: 1px solid #E8E6DD;
    box-shadow: -4px 0 32px rgba(10,10,20,.10);
    overflow: hidden;
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a {
    font-size: 18px;
    font-family: var(--f-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .mobile-cta { display: block; margin-top: 14px; border-bottom: 0; padding: 0; }
  .nav-links .mobile-cta .btn { width: 100%; justify-content: center; }
  .product-grid, .pricing-grid, .industry-grid, .help-grid, .value-grid, .perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card { padding: 10px 12px; font-size: 12px; }
  .float-card .fc-mark { width: 30px; height: 30px; }
  .testimonial { padding: 30px 22px; }
  .testimonial blockquote::before { font-size: 56px; }
  .solutions { padding: 32px 22px; }
  .sol-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .sol-tab { white-space: nowrap; }
  .cta-band { padding: 36px 24px; }
  .step { padding: 16px; }
  .step-num { width: 38px; height: 38px; }
  .metrics { grid-template-columns: 1fr; padding: 20px; }
  .metric { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .metric:last-child { border-bottom: 0; padding-bottom: 0; }
  .status-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .status-overall { flex-wrap: wrap; }
  .status-overall .so-meta { margin-left: 0; flex-basis: 100%; }
}

/* Short-viewport fallback: allow scroll only when height is very constrained (landscape phone) */
@media (max-width: 700px) and (max-height: 560px) {
  .nav-links { overflow-y: auto; }
}

