/* ============================================================
   AceCue Technologies — Global Stylesheet
   AI-Powered Laundry Management SaaS
   Brand palette derived from logo: deep navy + bright blue
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy-950: #030f24;
  --navy-900: #041e42;
  --navy-800: #072b5e;
  --navy-700: #0a3a7d;
  --blue-600: #0a6bf0;
  --blue-500: #0e84ff;
  --blue-400: #3ba0ff;
  --blue-300: #7cc0ff;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;

  /* Neutrals */
  --ink: #0b1220;
  --ink-soft: #38475f;
  --muted: #6b7a93;
  --line: #e5ebf3;
  --line-soft: #eef2f8;
  --surface: #ffffff;
  --surface-2: #f6f9fd;
  --surface-3: #eef4fb;
  --white: #ffffff;

  /* Effects */
  --grad-brand: linear-gradient(135deg, #0a6bf0 0%, #0e84ff 45%, #22d3ee 100%);
  --grad-navy: linear-gradient(150deg, #041e42 0%, #072b5e 55%, #0a3a7d 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  --shadow-sm: 0 1px 2px rgba(4, 30, 66, .06), 0 2px 6px rgba(4, 30, 66, .05);
  --shadow-md: 0 8px 24px rgba(4, 30, 66, .08), 0 2px 8px rgba(4, 30, 66, .05);
  --shadow-lg: 0 24px 60px rgba(4, 30, 66, .14), 0 8px 20px rgba(4, 30, 66, .08);
  --shadow-glow: 0 20px 60px rgba(14, 132, 255, .28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;

  --container: 1200px;
  --nav-h: 84px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', var(--font);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.ai-ic-w { display: inline-flex; align-items: center; justify-content: center; }
svg.ai-ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
svg { display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; color: var(--navy-900); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Eyebrow / pill labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600); background: var(--surface-3);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 15px; margin-bottom: 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-brand); }
.eyebrow.on-dark { color: var(--cyan-300); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; border-radius: 100px;
  padding: 14px 26px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 26px rgba(14,132,255,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(14,132,255,.42); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--surface); color: var(--navy-900); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue-400); color: var(--blue-600); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR — logo centered
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 24px; gap: 20px;
}
.nav-group { display: flex; align-items: center; gap: 6px; }
.nav-group.left { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; }
.nav-link {
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 100px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy-900); background: var(--surface-3); }
.nav-brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
.nav-brand img { height: 50px; width: auto; }
.nav-brand .brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy-900); letter-spacing: -.02em; }
.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy-900); transition: .3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  padding: 30px 24px; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: none;
}
.mobile-menu a { display: block; padding: 16px 4px; font-size: 1.2rem; font-weight: 600; color: var(--navy-900); border-bottom: 1px solid var(--line-soft); font-family: var(--font-display); }
.mobile-menu .btn { margin-top: 26px; }
body.menu-open .mobile-menu { transform: translateX(0); }

/* ============================================================
   HERO — luxury, centered, product showcase below
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 78px) 0 0;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(14,132,255,.16), transparent 62%),
    radial-gradient(820px 420px at 12% 6%, rgba(34,211,238,.12), transparent 55%),
    radial-gradient(820px 420px at 88% 10%, rgba(10,107,240,.10), transparent 55%),
    var(--grad-soft);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(4,30,66,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(4,30,66,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin: 0 auto 36px; max-width: 620px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-badges { margin-top: 40px; display: flex; align-items: center; gap: 12px 26px; flex-wrap: wrap; justify-content: center; color: var(--muted); font-size: .9rem; font-weight: 500; }
.hero-badges .hb { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges .hb svg { width: 18px; height: 18px; color: var(--blue-500); }
.hero-badges .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }

/* Product showcase panel */
.hero-showcase { position: relative; margin-top: 64px; padding: 0 24px 84px; }
.showcase-frame {
  position: relative; max-width: 1080px; margin: 0 auto;
  background: var(--grad-navy); border-radius: 22px;
  box-shadow: 0 -1px 0 rgba(255,255,255,.06) inset, 0 40px 90px rgba(4,30,66,.28);
  border: 1px solid rgba(124,192,255,.14); overflow: hidden;
}
.showcase-bar { display: flex; align-items: center; gap: 8px; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.showcase-bar .dot3 { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.22); }
.showcase-bar .addr { margin-left: 14px; font-family: monospace; font-size: .78rem; color: var(--blue-300); background: rgba(255,255,255,.06); padding: 5px 14px; border-radius: 100px; }
.showcase-body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; padding: 26px; }
.showcase-side { display: flex; flex-direction: column; gap: 16px; }
.sc-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 18px; color: #fff; }
.sc-card .sc-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sc-card .sc-h b { font-family: var(--font-display); font-size: .95rem; }
.sc-card .sc-h .pill { font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: var(--cyan-400); color: var(--navy-950); }
.sc-card .sc-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; color: rgba(255,255,255,.85); font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.sc-card .sc-row:last-child { border-bottom: none; }
.sc-card .sc-row .em { font-size: 1.3rem; }
.sc-card .sc-row .st { margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--cyan-300); }
.sc-metric { text-align: left; }
.sc-metric .mv { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: #fff; line-height: 1; }
.sc-metric .ml { color: var(--blue-300); font-size: .8rem; margin-top: 6px; }

/* Scanner visual */
.scanner {
  position: relative; border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, #062a5c, #0a3a7d); box-shadow: inset 0 0 0 1px rgba(124,192,255,.16);
  padding: 22px; min-height: 380px; display: flex; flex-direction: column;
}
.scanner-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.scanner-head .live { display: flex; align-items: center; gap: 8px; color: #fff; font-size: .82rem; font-weight: 600; }
.scanner-head .live .rec { width: 9px; height: 9px; border-radius: 50%; background: #ff5a5a; animation: pulse 1.4s infinite; }
.scanner-head .cam { color: var(--blue-300); font-size: .8rem; font-family: monospace; }
.scan-window {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #0b2f66, #0a3a7d); flex: 1; min-height: 260px;
  border: 1px solid rgba(124,192,255,.22);
}
.scan-window .garment {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 8rem; opacity: .9; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}
.scan-line {
  position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-300), transparent);
  box-shadow: 0 0 24px 4px rgba(103,232,249,.5);
  animation: scanmove 3.2s ease-in-out infinite;
}
@keyframes scanmove { 0%,100% { top: 8%; } 50% { top: 90%; } }
.scan-tag {
  position: absolute; background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 9px 13px; font-size: .8rem; font-weight: 600; color: var(--navy-900);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
  animation: tagpop .6s ease both;
}
.scan-tag .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; }
.scan-tag small { display: block; color: var(--muted); font-weight: 500; font-size: .68rem; }
.scan-tag.t1 { top: 14%; left: 8%; animation-delay: .3s; }
.scan-tag.t2 { top: 40%; right: 6%; animation-delay: .9s; }
.scan-tag.t3 { bottom: 16%; left: 10%; animation-delay: 1.5s; }
@keyframes tagpop { from { opacity: 0; transform: translateY(10px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* logo strip */
.logo-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--surface); }
.logo-strip .container { padding-top: 34px; padding-bottom: 34px; }
.logo-strip p { text-align: center; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-weight: 600; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.logo-row span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #b3c1d6; letter-spacing: -.02em; transition: color .2s; }
.logo-row span:hover { color: var(--navy-700); }

/* ============================================================
   OLD WAY vs ACECUE
   ============================================================ */
.compare-band { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.compare-col { padding: clamp(30px, 4vw, 52px); }
.compare-col.bad { background: #f4f6fa; }
.compare-col.good { background: var(--grad-navy); color: #fff; position: relative; }
.compare-col h3 { margin-bottom: 8px; }
.compare-col.good h3 { color: #fff; }
.compare-col .sub { font-size: .9rem; color: var(--muted); margin-bottom: 26px; }
.compare-col.good .sub { color: var(--blue-300); }
.compare-list li { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.06); align-items: flex-start; font-size: .98rem; }
.compare-col.good .compare-list li { border-bottom-color: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.compare-list li:last-child { border-bottom: none; }
.compare-list .mark { flex: none; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; margin-top: 1px; }
.compare-list .mark.x { background: #ffe1e1; color: #d64545; }
.compare-list .mark.c { background: rgba(34,211,238,.18); color: var(--cyan-300); }
.vs-badge { position: absolute; top: 50%; left: 0; transform: translate(-50%,-50%); background: #fff; color: var(--navy-900); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; box-shadow: var(--shadow-lg); z-index: 2; }

/* ============================================================
   TIMELINE — See the Scan
   ============================================================ */
.timeline-wrap { position: relative; overflow-x: auto; padding-bottom: 14px; }
.timeline { display: flex; min-width: min-content; gap: 0; position: relative; padding: 20px 0; }
.tl-step { flex: 1 1 0; min-width: 155px; position: relative; padding: 0 8px; text-align: center; }
.tl-step::before { content: ''; position: absolute; top: 27px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.tl-step:last-child::before { display: none; }
.tl-node {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: #fff; border: 2px solid var(--line); position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tl-step:hover .tl-node { transform: translateY(-4px); border-color: var(--blue-500); box-shadow: var(--shadow-glow); }
.tl-num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tl-step h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.tl-step p { font-size: .84rem; }

/* ============================================================
   AI ENGINE — tabs
   ============================================================ */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.tab {
  padding: 11px 22px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); transition: .25s;
}
.tab:hover { border-color: var(--blue-400); color: var(--blue-600); }
.tab.active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: 0 8px 22px rgba(14,132,255,.3); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-visual {
  border-radius: var(--radius-lg); background: var(--grad-navy); padding: 40px; min-height: 340px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature-visual .big-icon { font-size: 7rem; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.feature-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 200px at 70% 20%, rgba(34,211,238,.25), transparent 60%); }
.feature-body h3 { margin-bottom: 14px; }
.feature-body ul { margin-top: 22px; }
.feature-body ul li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; color: var(--ink-soft); }
.feature-body ul li .chk { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: .85rem; }

/* ============================================================
   BUILT FOR — segment switcher
   ============================================================ */
.seg-switch { display: flex; flex-wrap: wrap; gap: 8px; background: var(--surface-2); border: 1px solid var(--line); padding: 7px; border-radius: 100px; margin: 0 auto 40px; width: max-content; max-width: 100%; }
.seg-btn { padding: 11px 20px; border-radius: 100px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: .25s; white-space: nowrap; }
.seg-btn.active { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.seg-content { display: none; }
.seg-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; animation: fade .4s ease; }
.seg-content .seg-shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface-3); aspect-ratio: 16/11; position: relative; }
.mock-ui { position: absolute; inset: 0; padding: 22px; background: var(--grad-navy); color: #fff; display: flex; flex-direction: column; gap: 12px; }
.mock-ui .bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,.14); }
.mock-ui .bar.w60 { width: 60%; } .mock-ui .bar.w40 { width: 40%; } .mock-ui .bar.w80 { width: 80%; }
.mock-ui .card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 14px; display: flex; gap: 12px; align-items: center; }
.mock-ui .card .em { font-size: 1.6rem; }
.mock-ui .tag-pill { background: var(--cyan-400); color: var(--navy-950); font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }

/* ============================================================
   STATS band
   ============================================================ */
.stat-band { background: var(--grad-navy); position: relative; overflow: hidden; }
.stat-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 300px at 20% 0%, rgba(34,211,238,.16), transparent 60%); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.stat .num .unit { color: var(--cyan-300); }
.stat .label { color: var(--blue-300); font-size: .95rem; margin-top: 10px; }
.stat-divider { width: 1px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .3s, box-shadow .3s, border-color .3s; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .card-ic { width: 54px; height: 54px; border-radius: 15px; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card.dark { background: var(--grad-navy); color: #fff; border: none; }
.card.dark h3 { color: #fff; }
.card.dark p { color: var(--blue-300); }
.card.dark .card-ic { background: rgba(255,255,255,.1); color: var(--cyan-300); }

/* role cards for platform page */
.role-card { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; }
.role-card .role-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: var(--shadow-glow); }
.role-card ul { margin-top: 14px; }
.role-card ul li { display: flex; gap: 10px; padding: 6px 0; font-size: .94rem; color: var(--ink-soft); }
.role-card ul li::before { content: '→'; color: var(--blue-500); font-weight: 700; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  padding: calc(var(--nav-h) + 66px) 0 66px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(900px 400px at 50% -20%, rgba(14,132,255,.12), transparent 60%), var(--grad-soft);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { margin-bottom: 18px; }
.page-head .lead { margin: 0 auto; max-width: 700px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--blue-600); }

/* ============================================================
   AI ENGINE PAGE flow steps
   ============================================================ */
.flow-step { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.flow-step:last-child { border-bottom: none; }
.flow-step .fs-num { width: 68px; height: 68px; border-radius: 20px; background: var(--grad-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.flow-step h3 { margin-bottom: 10px; }
.pipeline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.pipe-node { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; text-align: center; box-shadow: var(--shadow-sm); min-width: 130px; }
.pipe-node .em { font-size: 1.8rem; margin-bottom: 8px; }
.pipe-node small { color: var(--muted); }
.pipe-node b { display: block; font-family: var(--font-display); color: var(--navy-900); }
.pipe-arrow { color: var(--blue-400); font-size: 1.4rem; }

/* ============================================================
   INDUSTRIES page — clean alternating cards
   ============================================================ */
.ind-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px;
  display: grid; grid-template-columns: 1.05fr .95fr;
}
.ind-card .ind-visual { background: var(--grad-navy); padding: 40px; position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 380px; }
.ind-card .ind-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(420px 220px at 75% 15%, rgba(34,211,238,.22), transparent 60%); pointer-events: none; }
.ind-card:nth-child(even) .ind-visual { order: 2; }
.ind-card .ind-content { padding: clamp(30px, 4vw, 52px); }
.ind-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: var(--surface-3); color: var(--blue-600); font-family: var(--font-display); font-weight: 800; margin-bottom: 18px; }
.ind-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.pain-good { display: grid; gap: 16px; margin-top: 22px; }
.pain-good .pg { display: flex; gap: 14px; align-items: flex-start; }
.pain-good .pg .lbl { flex: none; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 11px; border-radius: 100px; margin-top: 3px; }
.pain-good .pg .lbl.pain { background: #ffe6e6; color: #d64545; }
.pain-good .pg .lbl.fix { background: rgba(14,132,255,.12); color: var(--blue-600); }
.pain-good .pg p { font-size: .95rem; }
.case-box { background: rgba(255,255,255,.06); border: 1px solid rgba(124,192,255,.2); border-radius: var(--radius); padding: 24px; }
.case-box .tag { display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-300); background: rgba(34,211,238,.14); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.case-box p { color: rgba(255,255,255,.9); font-size: .95rem; }
.ind-tags { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ind-tags span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; font-size: .8rem; font-weight: 600; padding: 8px 14px; border-radius: 100px; }

/* ============================================================
   PRICING calculator
   ============================================================ */
.calc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-lg); max-width: 860px; margin: 0 auto;
}
.calc-row { margin-bottom: 34px; }
.calc-row label { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--navy-900); margin-bottom: 16px; font-family: var(--font-display); }
.calc-row label .val { color: var(--blue-600); font-size: 1.05rem; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 100px; background: var(--surface-3); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); cursor: pointer; box-shadow: 0 4px 12px rgba(14,132,255,.4); border: 3px solid #fff; }
input[type=range]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-500); cursor: pointer; border: 3px solid #fff; }
.calc-result { background: var(--grad-navy); border-radius: var(--radius); padding: 28px; color: #fff; text-align: center; margin-top: 10px; }
.calc-result .rec-label { color: var(--blue-300); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.calc-result .rec-tier { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; margin: 6px 0; }
.calc-result .rec-desc { color: rgba(255,255,255,.85); font-size: .95rem; }

/* Tier cards */
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; transition: .3s; position: relative; height: 100%; display: flex; flex-direction: column; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier.featured { border: 2px solid var(--blue-500); box-shadow: var(--shadow-glow); }
.tier .tier-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
.tier h3 { font-size: 1.4rem; }
.tier .price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--navy-900); margin: 10px 0 2px; }
.tier .price span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.tier .tier-desc { color: var(--muted); font-size: .9rem; margin-top: 10px; margin-bottom: 22px; }
.tier ul { margin: 0 0 28px; flex: 1; }
.tier ul li { display: flex; gap: 11px; padding: 9px 0; font-size: .93rem; color: var(--ink-soft); align-items: flex-start; }
.tier ul li .chk { flex: none; color: var(--blue-500); font-weight: 700; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--surface); transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-900); }
.faq-q .icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform .3s, background .3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a div { padding: 0 24px 24px; color: var(--ink-soft); }

/* ============================================================
   COMPANY page
   ============================================================ */
.value-card { text-align: center; padding: 34px 26px; }
.value-card .v-ic { width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 18px; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.founder-quote { border-left: 4px solid var(--blue-500); padding: 8px 0 8px 26px; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-900); line-height: 1.5; font-style: italic; }

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .98rem; color: var(--ink); background: var(--surface); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(14,132,255,.12); }
.form-field textarea { min-height: 130px; resize: vertical; }
.info-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 22px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.info-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.info-line .ic { flex: none; width: 44px; height: 44px; border-radius: 13px; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-line b { display: block; color: var(--navy-900); font-family: var(--font-display); }
.info-line span { font-size: .92rem; color: var(--ink-soft); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 10px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.form-success { background: rgba(34,211,238,.12); border: 1px solid var(--cyan-400); color: var(--navy-900); border-radius: 12px; padding: 16px; margin-top: 16px; display: none; }
.form-success.show { display: block; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--grad-navy); border-radius: var(--radius-xl); padding: clamp(46px, 6vw, 80px); text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(34,211,238,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: var(--blue-300); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-2); color: var(--ink-soft); padding: 76px 0 0; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .fb-logo img { height: 54px; }
.footer-brand .fb-logo span { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy-900); }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 280px; }
.footer-col h4 { color: var(--navy-900); font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--blue-600); }
.footer-addr b { display: block; font-family: var(--font-display); color: var(--navy-900); margin-bottom: 10px; }
.footer-addr p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.footer-bottom { padding: 26px 0; text-align: center; color: var(--muted); font-size: .86rem; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   Section head helper
   ============================================================ */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.sec-head p { margin-top: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-group .nav-link { padding: 9px 10px; font-size: .9rem; }
}
@media (max-width: 960px) {
  .nav-group.left, .nav-group.right .nav-link { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-brand { justify-self: start; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .nav-group.right { gap: 10px; }
  .feature-split, .seg-content.active, .ind-card, .story-block, .contact-grid, .compare-band, .showcase-body { grid-template-columns: 1fr; }
  .ind-card:nth-child(even) .ind-visual { order: 0; }
  .ind-card .ind-visual { min-height: 300px; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-addr { grid-column: span 2; }
  .scanner { max-width: 460px; margin: 0 auto; }
  .vs-badge { top: 0; left: 50%; transform: translate(-50%,-50%); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .g2, .g3, .g4, .stat-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .footer-addr { grid-column: span 1; }
  .role-card { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 1fr; gap: 14px; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .seg-switch { width: 100%; overflow-x: auto; justify-content: flex-start; }
}

/* ============================================================
   START BAND — shared pre-footer (replaces old CTA band)
   A distinct, editorial "get started in 3 steps" layout
   ============================================================ */
.start-wrap { padding: clamp(56px, 8vw, 104px) 0; }
.start-panel {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.05fr 1fr;
}
.start-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad-brand); }
.start-left { padding: clamp(34px, 4.5vw, 60px); }
.start-left .eyebrow { margin-bottom: 18px; }
.start-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.start-left p { font-size: 1.05rem; margin-bottom: 30px; max-width: 440px; }
.start-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.start-right { position: relative; padding: clamp(34px, 4.5vw, 56px); background: var(--surface-2); border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.start-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 18px 0; position: relative; }
.start-step:not(:last-child)::after { content: ''; position: absolute; left: 23px; top: 54px; bottom: -18px; width: 2px; background: var(--line); }
.start-step .sn { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; box-shadow: 0 8px 20px rgba(14,132,255,.3); z-index: 1; }
.start-step h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.start-step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) {
  .start-panel { grid-template-columns: 1fr; }
  .start-right { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .start-actions .btn { width: 100%; }
}

/* ============================================================
   AUTH / SIGNUP page
   ============================================================ */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1.05fr; }
.auth-aside {
  position: relative; overflow: hidden; background: var(--grad-navy); color: #fff;
  padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
}
.auth-aside::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 320px at 20% 0%, rgba(34,211,238,.2), transparent 60%); }
.auth-aside > * { position: relative; }
.auth-aside .aa-main { margin: auto 0; }
.auth-aside .aa-logo { display: flex; align-items: center; gap: 10px; }
.auth-aside .aa-logo img { height: 52px; filter: brightness(0) invert(1); }
.auth-aside h2 { color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin: 30px 0 18px; }
.auth-aside .aa-list { margin: 8px 0 40px; }
.auth-aside .aa-list li { display: flex; gap: 12px; padding: 11px 0; color: rgba(255,255,255,.9); }
.auth-aside .aa-list li .chk { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(34,211,238,.18); color: var(--cyan-300); display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.auth-aside .aa-foot { color: var(--blue-300); font-size: .85rem; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 60px); background: var(--surface); }
.auth-card { width: 100%; max-width: 480px; }
.auth-card .back { font-size: .9rem; color: var(--muted); margin-bottom: 26px; display: inline-block; }
.auth-card .back:hover { color: var(--blue-600); }
.auth-card h1 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 8px; }
.auth-card .sub { color: var(--ink-soft); margin-bottom: 30px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 18px; }
.auth-alt { text-align: center; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-soft); font-size: .92rem; color: var(--ink-soft); }
.auth-alt a { color: var(--blue-600); font-weight: 600; }
.notice { border-radius: 14px; padding: 16px 18px; margin-bottom: 24px; font-size: .95rem; display: flex; gap: 12px; align-items: flex-start; }
.notice.ok { background: rgba(34,211,238,.1); border: 1px solid var(--cyan-400); color: var(--navy-900); }
.notice.err { background: #fdeaea; border: 1px solid #f3b4b4; color: #a33; }
.notice .ni { flex: none; font-size: 1.1rem; }
@media (max-width: 860px) {
  .auth { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .form-row2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE MATRIX — big categorized capability list
   ============================================================ */
.feat-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: transform .3s, box-shadow .3s; }
.feat-col:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-col .fc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.feat-col .fc-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-3); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex: none; }
.feat-col .fc-head h3 { font-size: 1.15rem; }
.feat-col ul li { display: flex; gap: 11px; padding: 9px 0; font-size: .93rem; color: var(--ink-soft); align-items: flex-start; }
.feat-col ul li .chk { flex: none; width: 20px; height: 20px; border-radius: 6px; background: rgba(14,132,255,.1); color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: .7rem; margin-top: 2px; }
@media (max-width: 960px) { .feat-matrix { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feat-matrix { grid-template-columns: 1fr; } }

/* Scale metrics strip (light) */
.scale-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.scale-item { text-align: center; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.scale-item .sv { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--navy-900); }
.scale-item .sv .u { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.scale-item .sl { color: var(--muted); font-size: .88rem; margin-top: 6px; }
@media (max-width: 620px) { .scale-strip { grid-template-columns: 1fr 1fr; } }
