/* ============ IRTECH website tokens ============ */
:root {
  /* Brand */
  --ink:        #0A1532;
  --ink-2:      #16244A;
  --ink-3:      #2A3A66;
  --muted:      #5B6580;
  --muted-2:    #8A93A8;
  --line:       #E4E7EE;
  --line-2:     #EEF0F5;
  --surface:    #F4F6FB;
  --surface-2:  #ECEFF6;
  --white:      #FFFFFF;

  /* Primary */
  --primary:    #2A2EE0;   /* electric indigo */
  --primary-2:  #1419A8;
  --primary-50: #EDEEFF;

  /* Logo teal (supporting) */
  --teal:       #14B8C2;
  --teal-2:     #0E8A93;
  --teal-50:    #E0F7F9;

  /* Accent — tweakable */
  --accent:     #C7F558;   /* lime */
  --accent-ink: #1E2A0E;

  /* Warm accent for awards/badges */
  --warm:       #FF6B35;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(10,21,50,.06), 0 1px 1px rgba(10,21,50,.04);
  --shadow:    0 4px 12px rgba(10,21,50,.06), 0 2px 4px rgba(10,21,50,.04);
  --shadow-lg: 0 24px 48px -16px rgba(10,21,50,.18), 0 8px 16px -8px rgba(10,21,50,.10);

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --font: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ============ Reset & base ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ============ Layout helpers ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(24px, 3.5vw, 44px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(199,245,88,.25); }
.eyebrow.light { color: var(--accent); }
.eyebrow.light .dot { background: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font); margin: 0; letter-spacing: -.02em; }
h1 { font-size: clamp(36px, 4.6vw, 64px); font-weight: 800; line-height: 1.02; letter-spacing: -.032em; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 800; line-height: 1.04; letter-spacing: -.028em; }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; line-height: 1.15; }
h4 { font-size: 18px; font-weight: 700; line-height: 1.3; }
p  { margin: 0; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); line-height: 1.55; max-width: 60ch; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .left { max-width: 720px; }
.section-head h2 { margin-top: 16px; }
.section-head .lead { margin-top: 18px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--primary); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: #B6E844; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-ghost-dark { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.08); }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 110px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.01em; }
.nav-logo img { height: 88px; width: auto; }
.nav-logo .word { font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { background: var(--surface); }
.nav-link .chev { font-size: 10px; opacity: .5; transition: transform .2s; }
.nav-link:hover .chev { transform: rotate(180deg); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 8px 12px;
  border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2);
}

/* ============ Hero ============ */
.hero { position: relative; padding: 56px 0 0; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start;
}
.hero-title { margin-top: 24px; }
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .grad {
  background: linear-gradient(95deg, var(--primary) 10%, var(--teal) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .underline { position: relative; white-space: nowrap; }
.hero-title .underline svg { position: absolute; left: 0; right: 0; bottom: -8px; width: 100%; height: 14px; }
.hero-sub { margin-top: 26px; max-width: 540px; font-size: 19px; color: var(--muted); line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero-side { position: relative; padding-bottom: 40px; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}
.hero-stat { padding: 28px 28px; position: relative; }
.hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
.hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.hero-stat .num { font-size: clamp(34px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.hero-stat .num .plus { color: var(--primary); }
.hero-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

.hero-awards { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.award {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px; border-radius: 14px;
  background: var(--ink); color: var(--white);
}
.award .badge {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 11px;
  background: linear-gradient(135deg, var(--accent), #94D438); color: var(--accent-ink);
  flex-shrink: 0;
}
.award .badge.warm { background: linear-gradient(135deg, #FFD56B, var(--warm)); color: #2B1207; }
.award .meta { display: flex; flex-direction: column; gap: 1px; }
.award .ttl { font-size: 13px; font-weight: 700; letter-spacing: -.005em; }
.award .sub { font-size: 11px; color: rgba(255,255,255,.55); }

.client-strip { margin-top: 32px; border-top: 1px solid var(--line); padding: 24px 0 8px; }
.client-strip .lbl { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); display: block; text-align: center; }
.client-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center; justify-items: center;
  gap: 32px 32px;
  margin-top: 28px;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  opacity: .8;
  transition: opacity .25s ease, transform .25s ease;
}
.client-logo:hover { opacity: 1; transform: translateY(-2px); }
.client-logo svg { max-height: 72px; width: auto; }

@media (max-width: 1100px) {
  .client-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .client-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Hero visual orb */
.hero-orb {
  position: absolute; pointer-events: none;
  will-change: transform;
  transition: transform .15s cubic-bezier(.2,.6,.4,1);
}
.hero-orb.one {
  width: 540px; height: 540px; right: -120px; top: -80px;
  background: radial-gradient(closest-side, rgba(20,184,194,.28), transparent 70%);
  filter: blur(8px);
}
.hero-orb.two {
  width: 400px; height: 400px; left: -160px; top: 180px;
  background: radial-gradient(closest-side, rgba(199,245,88,.38), transparent 70%);
  filter: blur(20px);
}
.hero-orb.three {
  width: 320px; height: 320px; right: 40%; top: 360px;
  background: radial-gradient(closest-side, rgba(42,46,224,.22), transparent 70%);
  filter: blur(30px);
}
.hero-left, .hero-side { will-change: transform; }
.hero { will-change: transform; }
.nav-link.on { background: var(--surface); color: var(--ink); }

/* ============ Services × Industries ============ */
.services-bg { background: var(--ink); color: var(--white); border-radius: 32px; margin: 0 var(--pad); padding: clamp(56px, 7vw, 96px) clamp(32px, 5vw, 72px); position: relative; overflow: hidden; }
.services-bg .glow { position: absolute; width: 600px; height: 600px; right: -200px; top: -200px;
  background: radial-gradient(closest-side, rgba(42,46,224,.45), transparent 70%); filter: blur(40px); pointer-events: none; }
.services-bg .glow-2 { left: -150px; bottom: -200px; right: auto; top: auto;
  background: radial-gradient(closest-side, rgba(20,184,194,.35), transparent 70%); }

.section-head.dark h2 { color: var(--white); }
.section-head.dark .lead { color: rgba(255,255,255,.65); }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .15s;
}
.tab:hover { background: rgba(255,255,255,.1); color: var(--white); }
.tab.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.service-card {
  position: relative; padding: 28px; border-radius: 22px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  transition: background .2s, border .2s, transform .2s;
  display: flex; flex-direction: column; min-height: 280px;
  cursor: pointer; overflow: hidden;
}
.service-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
.service-card .num { font-size: 12px; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; letter-spacing: .1em; }
.service-card .icon { width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(42,46,224,.4), rgba(20,184,194,.3));
  display: grid; place-items: center; margin: 14px 0 18px; color: var(--accent); }
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--white); }
.service-card p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.5; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 20px; }
.service-card .tags span { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); }
.service-card .arr {
  position: absolute; right: 22px; top: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: background .2s, transform .2s;
}
.service-card:hover .arr { background: var(--accent); color: var(--accent-ink); transform: rotate(-45deg); }
.service-card .arr svg { width: 16px; height: 16px; }
.service-card.feature { grid-column: span 2; min-height: 260px; }
.service-card.feature .icon { background: linear-gradient(135deg, var(--accent), #94D438); color: var(--accent-ink); }

/* Industries */
.industries-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 40px; }
.industry {
  padding: 24px 16px; border-radius: 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  text-align: center; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer;
}
.industry:hover { background: rgba(255,255,255,.1); border-color: var(--accent); transform: translateY(-3px); }
.industry .ico { width: 44px; height: 44px; display: grid; place-items: center; color: var(--teal); }
.industry:hover .ico { color: var(--accent); }
.industry .name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.25; }
.industry .count { font-size: 11px; color: rgba(255,255,255,.4); }

/* ============ Product group heads ============ */
.prod-group-head {
  display: flex; align-items: center; gap: 18px;
  margin: 8px 0 24px;
}
.prod-group-head .pgh-num {
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  padding: 5px 12px; border-radius: 999px;
  background: var(--primary-50);
}
.prod-group-head .pgh-title {
  font-size: 22px; font-weight: 800; letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}
.prod-group-head .pgh-line {
  flex: 1; height: 1px; background: var(--line);
}

.product-card.x3 { grid-column: span 3; min-height: 240px; }

/* ============ Flagship 3 products ============ */
.flagship-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 48px;
}
.flagship-card {
  position: relative; padding: 36px 32px 32px;
  border-radius: 24px;
  background: var(--ink); color: var(--white);
  border: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px;
  transition: all .25s ease;
  text-decoration: none;
  overflow: hidden;
}
.flagship-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.flagship-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.flagship-card .fl-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; color: var(--white);
  position: relative;
}
.flagship-card .fl-icon svg { width: 32px; height: 32px; }
.flagship-card .fl-live {
  position: absolute; top: 28px; right: 28px;
  font-size: 11px; font-weight: 700; color: var(--accent);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(199,245,88,.12);
}
.flagship-card .fl-name {
  font-size: 32px; font-weight: 800; letter-spacing: -.025em;
  margin-top: 6px; color: var(--white);
}
.flagship-card .fl-tag {
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: -.005em;
}
.flagship-card .fl-desc {
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.55;
  flex: 1;
}
.flagship-card .fl-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--white);
  margin-top: 8px;
}
.flagship-card .fl-cta svg { width: 16px; height: 16px; transition: transform .2s; }
.flagship-card:hover .fl-cta svg { transform: translateX(4px); }

.port-eco-divider {
  display: flex; align-items: center; gap: 18px;
  margin: 8px 0 28px;
}
.port-eco-divider .line {
  flex: 1; height: 1px; background: var(--line);
}
.port-eco-divider .lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ============ Product ecosystem (Odoo-style) ============ */
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.product-card {
  border: 1px solid var(--line); border-radius: 22px;
  padding: 28px; background: var(--white);
  display: flex; flex-direction: column; gap: 14px;
  transition: all .2s ease; min-height: 220px; position: relative; overflow: hidden;
}
.product-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card .pico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--white);
}
.product-card .pname { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.product-card .pdesc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.product-card .plink { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; }
.product-card .plink .arr { transition: transform .2s; }
.product-card:hover .plink .arr { transform: translateX(4px); }
.product-card.x6 { grid-column: span 6; }
.product-card.x4 { grid-column: span 4; }
.product-card.x3 { grid-column: span 3; }
.product-card.x8 { grid-column: span 8; }
.product-card.dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.product-card.dark .pdesc { color: rgba(255,255,255,.6); }
.product-card.dark .plink { color: var(--accent); }
.product-card.feature { background: linear-gradient(135deg, #0A1532 0%, #1F2570 60%, #14B8C2 130%); color: var(--white); border: 0; min-height: 280px; }
.product-card.feature .pdesc { color: rgba(255,255,255,.75); }
.product-card.feature .plink { color: var(--accent); }

/* Pulsing dot for "live" badge */
.live-dot {
  position: absolute; top: 24px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,.12); padding: 5px 10px; border-radius: 999px;
}
.live-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(199,245,88,.6); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(199,245,88,.6); }
  70% { box-shadow: 0 0 0 8px rgba(199,245,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(199,245,88,0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* ============ IRBOT showcase ============ */
.irbot-section {
  background: linear-gradient(180deg, #06091F 0%, #0A1532 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.irbot-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(42,46,224,.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20,184,194,.28), transparent 45%);
  pointer-events: none;
}
.irbot-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; position: relative; }
.irbot-grid h2 { color: var(--white); }
.irbot-grid p.lead { color: rgba(255,255,255,.7); }

.irbot-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.irbot-stat { padding: 18px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.irbot-stat .v { font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.irbot-stat .k { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* Workflow demo */
.workflow {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 28px;
  min-height: 460px;
  overflow: hidden;
}
.workflow .wf-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.workflow .wf-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); display: flex; gap: 10px; align-items: center; }
.workflow .wf-title .ld { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
.workflow .wf-tabs { display: flex; gap: 6px; }
.workflow .wf-tab { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.workflow .wf-tab.on { background: var(--accent); color: var(--accent-ink); }

.wf-canvas { position: relative; padding: 8px 0; }
.wf-node {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 14px; position: relative;
  transition: all .3s ease;
}
.wf-node.active {
  background: rgba(199,245,88,.12); border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199,245,88,.08), 0 8px 24px rgba(199,245,88,.2);
}
.wf-node.done { opacity: .6; }
.wf-node.done .wf-ico { background: rgba(199,245,88,.15); color: var(--accent); }
.wf-node .wf-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(42,46,224,.3); color: var(--teal);
  flex-shrink: 0;
}
.wf-node.active .wf-ico { background: var(--accent); color: var(--accent-ink); }
.wf-node .wf-text { flex: 1; }
.wf-node .wf-name { font-size: 14px; font-weight: 600; color: var(--white); }
.wf-node .wf-meta { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
.wf-node .wf-time { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); font-variant-numeric: tabular-nums; }
.wf-node.active .wf-time { color: var(--accent); }
.wf-node.done .wf-time { color: rgba(199,245,88,.7); }
.wf-node::before { content: ''; position: absolute; left: 32px; top: -14px; width: 2px; height: 14px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.15)); }
.wf-node:first-of-type::before { display: none; }

.wf-progress { margin-top: 18px; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.wf-progress .bar { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.wf-progress .bar > div { height: 100%; background: linear-gradient(90deg, var(--teal), var(--accent)); border-radius: 999px; transition: width .4s ease; }
.wf-progress .pct { font-size: 12px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; min-width: 36px; text-align: right; }

/* ============ Case studies ============ */
.case-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.case-card {
  position: relative; overflow: hidden; border-radius: 22px;
  background: var(--surface); padding: 32px; min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s;
  cursor: pointer;
}
.case-card:hover { transform: translateY(-3px); }
.case-card.x6 { grid-column: span 6; }
.case-card.x4 { grid-column: span 4; }
.case-card.x8 { grid-column: span 8; }
.case-card .case-client {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 6px; background: var(--white);
  border-radius: 999px; font-weight: 700; font-size: 13px; width: max-content;
}
.case-card .case-client .mark { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--white); font-size: 10px; font-weight: 800; }
.case-card .case-title { font-size: clamp(22px, 2vw, 28px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin-top: 16px; max-width: 24ch; }
.case-card .case-result { display: flex; gap: 24px; margin-top: 20px; }
.case-card .case-result .v { font-size: 28px; font-weight: 800; color: var(--primary); letter-spacing: -.02em; line-height: 1; }
.case-card .case-result .k { font-size: 11px; color: var(--muted); margin-top: 4px; }
.case-card .case-tag { position: absolute; top: 24px; right: 24px; font-size: 11px; font-weight: 600; color: var(--muted); }
.case-card.dark { background: var(--ink); color: var(--white); }
.case-card.dark .case-title { color: var(--white); }
.case-card.dark .case-result .v { color: var(--accent); }
.case-card.dark .case-result .k { color: rgba(255,255,255,.6); }
.case-card.dark .case-tag { color: rgba(255,255,255,.5); }

/* ============ Stats band ============ */
.stats-band {
  background: var(--surface); border-radius: 32px;
  margin: 0 var(--pad);
  padding: clamp(48px, 5vw, 72px) clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-band .it .v { font-size: clamp(40px, 4vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.stats-band .it .v span { color: var(--primary); }
.stats-band .it .k { font-size: 13px; color: var(--muted); margin-top: 10px; max-width: 180px; line-height: 1.4; }

/* ============ Awards detail ============ */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.award-card {
  padding: 28px 24px; border-radius: 20px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; min-height: 220px;
  position: relative; overflow: hidden;
  transition: all .2s;
}
.award-card:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-2px); }
.award-card .a-medal {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #94D438);
  color: var(--accent-ink); font-weight: 800; font-size: 18px;
}
.award-card .a-medal.warm { background: linear-gradient(135deg, #FFD56B, var(--warm)); color: #2B1207; }
.award-card .a-yr { position: absolute; top: 20px; right: 24px; font-size: 14px; font-weight: 800; color: var(--muted-2); }
.award-card .a-ttl { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.award-card .a-sub { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: auto; }

/* ============ CTA ============ */
.cta-section {
  background: var(--ink); color: var(--white);
  border-radius: 32px; margin: 0 var(--pad);
  padding: clamp(64px, 8vw, 96px) clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(20,184,194,.25), transparent 50%);
  pointer-events: none;
}
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; position: relative; }
.cta-section h2 { color: var(--white); max-width: 14ch; }
.cta-section p { color: rgba(255,255,255,.7); margin-top: 20px; max-width: 44ch; }
.cta-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 28px; }
.cta-form label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.cta-form input, .cta-form textarea, .cta-form select {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: inherit; font-size: 14px;
  margin-bottom: 14px;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,.35); }
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus { outline: 0; border-color: var(--accent); background: rgba(199,245,88,.06); }
.cta-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form button { width: 100%; padding: 14px; border-radius: 10px; background: var(--accent); color: var(--accent-ink); font-weight: 700; }

/* ============ Footer ============ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; }
.footer-brand .word { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.footer-brand p { font-size: 14px; line-height: 1.55; margin-top: 14px; max-width: 32ch; color: rgba(255,255,255,.55); }
.footer-brand .socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-brand .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .2s; }
.footer-brand .socials a:hover { background: var(--accent); color: var(--accent-ink); }

.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--white); margin: 0 0 18px; letter-spacing: -.005em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .office-list { gap: 14px; }
.footer-col .office-list li { display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; }
.footer-col .office-list .of-pin { font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: -.005em; }
.footer-col .office-list .of-addr { color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============ Products hub page ============ */
.ph-hero {
  padding: 80px 0 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(20,184,194,.10), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(199,245,88,.10), transparent 50%);
  position: relative; overflow: hidden;
}
.ph-hero h1 { max-width: 18ch; }
.ph-hero .pd-lead { max-width: 64ch; margin-top: 20px; }

.ph-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ph-stats .ps { padding: 22px 24px; border-right: 1px solid var(--line); }
.ph-stats .ps:last-child { border-right: 0; }
.ph-stats .ps .v { font-size: 32px; font-weight: 800; letter-spacing: -.025em; line-height: 1; color: var(--ink); }
.ph-stats .ps .v span { color: var(--primary); }
.ph-stats .ps .k { font-size: 12px; color: var(--muted); margin-top: 8px; }

.ph-section { padding: clamp(60px, 8vw, 100px) 0; }
.ph-section.dark { background: var(--ink); color: var(--white); margin: 0; }

.ph-section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 0 0 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.ph-section.dark .ph-section-head { border-bottom-color: rgba(255,255,255,.08); }
.ph-section-head .num {
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  color: var(--primary); text-transform: uppercase;
}
.ph-section-head h2 {
  margin-top: 6px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.02em;
}
.ph-section.dark .ph-section-head h2 { color: var(--white); }
.ph-section.dark .ph-section-head .lead { color: rgba(255,255,255,.65); }
.ph-section-head .lead { max-width: 60ch; }
.ph-section-head .count {
  font-size: 13px; font-weight: 700; color: var(--muted-2);
  letter-spacing: .06em;
  padding: 6px 14px; border-radius: 999px;
  background: var(--surface);
  flex-shrink: 0;
}
.ph-section.dark .ph-section-head .count {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
}

/* Flagship — big hero cards. Default 3 cols; override grid-template-columns for 4. */
.ph-flagship-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.ph-flag-card {
  background: var(--ink); color: var(--white);
  border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 440px;
  position: relative; overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ph-flag-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255,255,255,.1), transparent 50%);
  pointer-events: none;
}
.ph-flag-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ph-flag-card > * { position: relative; }
.ph-flag-card .pf-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; color: var(--white);
}
.ph-flag-card .pf-icon svg { width: 28px; height: 28px; }
.ph-flag-card .pf-tag {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase;
}
.ph-flag-card .pf-name {
  font-size: 32px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
  color: var(--white);
}
.ph-flag-card .pf-headline {
  font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.5;
}
.ph-flag-card .pf-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  color: rgba(255,255,255,.7); font-size: 12.5px;
}
.ph-flag-card .pf-features li { display: flex; gap: 10px; align-items: flex-start; }
.ph-flag-card .pf-features li::before {
  content: '+'; color: var(--accent);
  font-weight: 700; font-size: 14px; line-height: 1.4;
}
.ph-flag-card .pf-cta {
  margin-top: auto; padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ph-flag-card .pf-cta .read {
  font-size: 14px; font-weight: 700; color: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
}
.ph-flag-card .pf-cta .read svg { width: 16px; height: 16px; transition: transform .2s; }
.ph-flag-card:hover .pf-cta .read svg { transform: translateX(4px); }
.ph-flag-card .pf-cta .stat { text-align: right; }
.ph-flag-card .pf-cta .stat .v { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; line-height: 1; }
.ph-flag-card .pf-cta .stat .k { font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .04em; margin-top: 4px; }

/* Standard product cards */
.ph-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ph-card {
  padding: 30px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 320px;
  text-decoration: none; color: inherit;
  transition: all .25s ease;
  position: relative; overflow: hidden;
}
.ph-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.ph-section.dark .ph-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.ph-section.dark .ph-card:hover {
  background: rgba(255,255,255,.07); border-color: var(--accent);
}
.ph-card .pc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--white);
}
.ph-card .pc-icon svg { width: 26px; height: 26px; }
.ph-card .pc-name { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.ph-section.dark .ph-card .pc-name { color: var(--white); }
.ph-card .pc-tag { font-size: 13px; color: var(--primary); font-weight: 600; }
.ph-section.dark .ph-card .pc-tag { color: var(--accent); }
.ph-card .pc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.ph-section.dark .ph-card .pc-desc { color: rgba(255,255,255,.65); }
.ph-card .pc-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line-2);
}
.ph-section.dark .ph-card .pc-meta { border-top-color: rgba(255,255,255,.08); }
.ph-card .pc-stat { font-size: 11.5px; color: var(--muted); }
.ph-section.dark .ph-card .pc-stat { color: rgba(255,255,255,.55); }
.ph-card .pc-stat strong { color: var(--ink); font-size: 15px; font-weight: 800; }
.ph-section.dark .ph-card .pc-stat strong { color: var(--white); }
.ph-card .pc-read { font-size: 13px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.ph-section.dark .ph-card .pc-read { color: var(--accent); }
.ph-card .pc-read svg { width: 14px; height: 14px; transition: transform .2s; }
.ph-card:hover .pc-read svg { transform: translateX(3px); }
.ph-card .pc-live {
  position: absolute; top: 28px; right: 28px;
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: rgba(34,197,94,.18); color: #86EFAC; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.ph-card .pc-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }

.ph-platform-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 40px;
}
.ph-pillar {
  padding: 24px; border-radius: 16px;
  background: var(--surface);
  display: flex; flex-direction: column; gap: 8px;
}
.ph-pillar .pp-num { font-size: 12px; color: var(--primary); font-weight: 800; letter-spacing: .12em; }
.ph-pillar .pp-name { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.ph-pillar .pp-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ============ Clients page — 3-layer hybrid ============ */
.cl-hero {
  padding: 64px 0 24px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(20,184,194,.10), transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(199,245,88,.10), transparent 50%);
}
.cl-hero h1 { max-width: 22ch; }

.cl-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--white); }
.cl-stats .it { padding: 28px 32px; border-right: 1px solid var(--line); }
.cl-stats .it:last-child { border-right: 0; }
.cl-stats .it .v { font-size: 44px; font-weight: 800; letter-spacing: -.025em; line-height: 1; color: var(--ink); }
.cl-stats .it .v span { color: var(--primary); }
.cl-stats .it .k { font-size: 13px; color: var(--muted); margin-top: 10px; max-width: 22ch; line-height: 1.4; }

/* Filter chips */
.cl-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 28px; align-items: center; }
.cl-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  background: var(--white); border: 1px solid var(--line);
  color: var(--ink-2);
  transition: all .18s ease;
}
.cl-chip:hover { background: var(--surface); }
.cl-chip.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cl-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.cl-chip .ct { font-size: 11px; opacity: .65; font-variant-numeric: tabular-nums; }

/* Logo wall */
.cl-wall {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line); border-radius: 22px;
  background: var(--white); overflow: hidden;
}
.cl-tile {
  position: relative;
  aspect-ratio: 5 / 3;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px;
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
}
.cl-tile:hover { background: var(--surface); }
.cl-tile:nth-child(6n) { border-right: 0; }
.cl-tile:nth-last-child(-n+6) { border-bottom: 0; }
.cl-tile .lg {
  filter: grayscale(1); opacity: .55;
  transition: filter .25s ease, opacity .25s ease;
}
.cl-tile:hover .lg { filter: none; opacity: 1; }
.cl-tile .lg svg { max-height: 56px; width: auto; max-width: 100%; }
.cl-tile .ind-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  color: var(--white); opacity: 0;
  transition: opacity .2s;
}
.cl-tile:hover .ind-tag { opacity: 1; }

/* Case study cards */
.cl-cases-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin: 56px 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line);
}

.cl-case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.cl-case {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 180px 1fr;
  min-height: 240px;
  transition: all .25s ease;
  text-decoration: none; color: inherit;
}
.cl-case:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.cl-case .cc-side {
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px; justify-content: space-between;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cl-case .cc-side::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%);
}
.cl-case .cc-icon {
  position: relative;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
}
.cl-case .cc-icon svg { width: 26px; height: 26px; }
.cl-case .cc-industry {
  position: relative;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.cl-case .cc-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.cl-case .cc-client {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.cl-case .cc-client svg { max-height: 22px; }
.cl-case .cc-title { font-size: 18px; font-weight: 700; letter-spacing: -.012em; line-height: 1.3; }
.cl-case .cc-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.cl-case .cc-tech span {
  font-size: 11px; padding: 3px 9px; border-radius: 6px;
  background: var(--surface); color: var(--ink-2); font-weight: 600;
}
.cl-case .cc-results { display: flex; gap: 20px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-2); }
.cl-case .cc-results .r .v { font-size: 22px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.cl-case .cc-results .r .k { font-size: 11px; color: var(--muted); margin-top: 4px; }
.cl-case .cc-cta {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); color: var(--ink);
  display: grid; place-items: center;
  transition: all .2s;
}
.cl-case:hover .cc-cta { background: var(--ink); color: var(--white); transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .cl-stats { grid-template-columns: repeat(2, 1fr); }
  .cl-stats .it:nth-child(2) { border-right: 0; }
  .cl-stats .it:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cl-wall { grid-template-columns: repeat(4, 1fr); }
  .cl-tile:nth-child(6n) { border-right: 1px solid var(--line); }
  .cl-tile:nth-child(4n) { border-right: 0; }
  .cl-case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .cl-wall { grid-template-columns: repeat(2, 1fr); }
  .cl-tile:nth-child(4n) { border-right: 1px solid var(--line); }
  .cl-tile:nth-child(2n) { border-right: 0; }
  .cl-case { grid-template-columns: 1fr; }
  .cl-case .cc-side { min-height: 120px; }
}

/* ============ News page ============ */
.news-hero {
  padding: 80px 0 0;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
}
.news-hero h1 { max-width: 18ch; }

.press-strip {
  margin-top: 56px; padding: 28px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.press-strip .lbl { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; display: block; }
.press-row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 56px); }
.press-name {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; opacity: .65; transition: opacity .2s, transform .2s; cursor: pointer;
}
.press-name:hover { opacity: 1; transform: translateY(-1px); }
.press-name .pmark {
  width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: -.02em;
  flex-shrink: 0;
}
.press-name > span { font-size: 14px; color: var(--ink); }

/* Category bar */
.cat-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin: 32px 0 40px; }
.cat-btn {
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--line); color: var(--ink-2);
  background: var(--white); transition: all .2s;
}
.cat-btn:hover { background: var(--surface); }
.cat-btn.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cat-btn .ct { margin-left: 6px; font-size: 11px; opacity: .6; font-variant-numeric: tabular-nums; }

/* Featured story */
.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr;
  border-radius: 24px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  margin-bottom: 56px;
  transition: all .25s ease;
  cursor: pointer;
}
.featured-card:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.featured-card .fc-img {
  min-height: 380px; position: relative; padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
}
.featured-card .fc-img::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.featured-card .fc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  width: max-content; position: relative;
}
.featured-card .fc-icon {
  width: 88px; height: 88px; border-radius: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; color: var(--accent);
  align-self: flex-end; position: relative;
}
.featured-card .fc-icon svg { width: 44px; height: 44px; }
.featured-card .fc-body {
  padding: 36px; display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.featured-card .fc-cat { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.featured-card h2 { font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -.02em; }
.featured-card .fc-excerpt { color: var(--muted); font-size: 15px; line-height: 1.6; }
.featured-card .fc-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); margin-top: 6px; flex-wrap: wrap; }
.featured-card .fc-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.featured-card .fc-cta { font-size: 14px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.featured-card .fc-cta svg { width: 16px; height: 16px; }

/* Article grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  border-radius: 20px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.article-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card .ac-img {
  height: 180px; position: relative; padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
}
.article-card .ac-img::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 75% 25%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.article-card .ac-cat-pill {
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.18); color: #fff; letter-spacing: .08em; text-transform: uppercase;
  width: max-content; position: relative; backdrop-filter: blur(8px);
}
.article-card .ac-cat-pill.upcoming { background: var(--accent); color: var(--accent-ink); }
.article-card .ac-cat-pill.press { background: rgba(0,0,0,.45); }
.article-card .ac-icon {
  align-self: flex-end; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: var(--accent); position: relative;
}
.article-card .ac-icon svg { width: 22px; height: 22px; }
.article-card .ac-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card .ac-source { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: .1em; text-transform: uppercase; }
.article-card .ac-title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.article-card .ac-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.5; flex: 1; }
.article-card .ac-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: 12px; color: var(--muted);
}
.article-card .ac-meta .author { font-weight: 600; color: var(--ink-2); }
.article-card .ac-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.article-card .ac-tags span { font-size: 10px; padding: 3px 8px; border-radius: 6px; background: var(--surface); color: var(--muted); font-weight: 600; }

/* Newsletter */
.newsletter-band {
  margin: clamp(60px,8vw,90px) 0 0;
  padding: clamp(40px,5vw,60px);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink) 0%, #1F2570 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.newsletter-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 30%, rgba(199,245,88,.15), transparent 50%);
  pointer-events: none;
}
.newsletter-band .nl-inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; position: relative;
}
.newsletter-band h3 { color: #fff; font-size: clamp(24px,2.5vw,34px); letter-spacing: -.02em; }
.newsletter-band p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 15px; max-width: 50ch; }
.newsletter-form { display: flex; gap: 8px; background: rgba(255,255,255,.06); padding: 6px; border-radius: 14px; border: 1px solid rgba(255,255,255,.1); }
.newsletter-form input {
  flex: 1; background: transparent; border: 0; padding: 12px 14px;
  color: #fff; font-size: 14px; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: 0; }
.newsletter-form button {
  background: var(--accent); color: var(--accent-ink); padding: 12px 22px;
  border-radius: 10px; font-weight: 700; font-size: 14px;
}

.empty-state {
  padding: 80px 40px; text-align: center;
  background: var(--surface); border-radius: 20px;
  color: var(--muted);
}
.empty-state h3 { color: var(--ink); margin-bottom: 8px; }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ Product detail page ============ */
.pd-hero {
  position: relative; overflow: hidden;
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
}
.pd-hero.dark {
  background: linear-gradient(180deg, #050817 0%, #0A1532 100%);
  color: var(--white);
}
.pd-hero.dark h1, .pd-hero.dark p { color: var(--white); }
.pd-hero.dark .pd-lead { color: rgba(255,255,255,.7); }

.pd-crumb { display: flex; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pd-crumb a { color: var(--muted); }
.pd-crumb a:hover { color: var(--ink); }
.pd-hero.dark .pd-crumb, .pd-hero.dark .pd-crumb a { color: rgba(255,255,255,.55); }

.pd-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.pd-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: rgba(0,0,0,.05); margin-bottom: 22px;
  font-size: 13px; font-weight: 600;
}
.pd-hero.dark .pd-tagline { background: rgba(255,255,255,.08); }
.pd-tagline .ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: #fff; }

.pd-hero h1 { font-size: clamp(40px, 5vw, 72px); letter-spacing: -.035em; }
.pd-lead { font-size: clamp(17px, 1.3vw, 20px); color: var(--muted); margin-top: 22px; max-width: 56ch; line-height: 1.55; }
.pd-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.pd-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  min-height: 380px;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pd-hero.dark .pd-visual {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.pd-section { padding: clamp(60px, 8vw, 100px) 0; }

.pd-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-feat {
  padding: 28px; border-radius: 18px; background: var(--surface);
  border: 1px solid transparent;
  display: flex; flex-direction: column; gap: 12px;
  transition: all .2s;
}
.pd-feat:hover { background: var(--white); border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-2px); }
.pd-feat .icc { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--accent); display: grid; place-items: center; }
.pd-feat h4 { font-size: 18px; }
.pd-feat p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.pd-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.pd-stats-row .it { padding: 28px; border-right: 1px solid var(--line); }
.pd-stats-row .it:last-child { border-right: 0; }
.pd-stats-row .v { font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.pd-stats-row .v span { color: var(--primary); }
.pd-stats-row .k { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* Architecture/diagram block */
.pd-arch {
  background: var(--ink); color: var(--white);
  border-radius: 24px; padding: 48px; position: relative; overflow: hidden;
}
.pd-arch::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(20,184,194,.25), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(42,46,224,.22), transparent 50%);
}
.pd-arch h3 { color: var(--white); position: relative; }
.pd-arch .layers { display: grid; gap: 12px; margin-top: 32px; position: relative; }
.pd-layer {
  padding: 18px 24px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.pd-layer:hover { background: rgba(255,255,255,.1); border-color: var(--accent); }
.pd-layer .ln { display: flex; gap: 14px; align-items: center; }
.pd-layer .num { width: 32px; height: 32px; border-radius: 50%; background: rgba(199,245,88,.15); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.pd-layer .ttl { font-weight: 700; }
.pd-layer .sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.pd-layer .pill { font-size: 11px; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }

/* Module list (Odoo-style sub-modules) */
.pd-modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-module {
  padding: 22px 18px; border-radius: 14px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px; transition: all .2s;
  background: var(--white);
}
.pd-module:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-2px); }
.pd-module .icc { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.pd-module .name { font-size: 14px; font-weight: 700; }
.pd-module .desc { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* Pricing tiers */
.pd-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-tier {
  padding: 32px; border-radius: 20px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  background: var(--white); position: relative;
}
.pd-tier.featured { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pd-tier .tname { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pd-tier.featured .tname { color: var(--accent); }
.pd-tier .tprice { font-size: 32px; font-weight: 800; letter-spacing: -.02em; }
.pd-tier .tprice .sm { font-size: 14px; font-weight: 500; color: var(--muted); }
.pd-tier.featured .tprice .sm { color: rgba(255,255,255,.6); }
.pd-tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pd-tier li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.pd-tier li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.pd-tier.featured li svg { color: var(--accent); }
.pd-tier .tbtn { margin-top: auto; padding: 12px 18px; border-radius: 10px; text-align: center; font-weight: 600; font-size: 14px; }
.pd-tier .tbtn-pri { background: var(--ink); color: var(--white); }
.pd-tier.featured .tbtn-pri { background: var(--accent); color: var(--accent-ink); }
.pd-tier .tbtn-sec { background: var(--surface); color: var(--ink); }

.pd-tier .ribbon {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-weight: 700;
}

/* IRBOT page specific decorative grid */
.bot-grid-bg { position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
  pointer-events: none;
}

/* ============ About page ============ */
.about-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at 80% 30%, rgba(20,184,194,.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(199,245,88,.15), transparent 50%);
}
.about-hero h1 { max-width: 16ch; }
.about-hero .pd-lead { max-width: 60ch; margin-top: 24px; }

.timeline { position: relative; padding-left: 0; }
.timeline-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 32px;
  padding: 32px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.timeline-row:first-child { border-top: 0; }
.timeline-row .yr { font-size: 36px; font-weight: 800; letter-spacing: -.025em; color: var(--ink); }
.timeline-row .yr span { color: var(--primary); }
.timeline-row .lbl-mini { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }
.timeline-row h3 { font-size: 24px; max-width: 28ch; }
.timeline-row p { color: var(--muted); margin-top: 10px; max-width: 56ch; line-height: 1.6; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { padding: 32px 28px; border-radius: 20px; background: var(--surface); display: flex; flex-direction: column; gap: 14px; min-height: 220px; transition: all .2s; }
.value-card:hover { background: var(--ink); color: var(--white); transform: translateY(-4px); }
.value-card .vc-num { font-size: 36px; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.value-card:hover .vc-num { color: var(--accent); }
.value-card h4 { font-size: 18px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.value-card:hover p { color: rgba(255,255,255,.7); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { background: var(--surface); border-radius: 20px; padding: 24px; text-align: left; }
.team-card .avatar {
  width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center; font-size: 28px; font-weight: 800; color: #fff;
  margin-bottom: 16px;
}
.team-card .tname { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.team-card .role { font-size: 13px; color: var(--muted); margin-top: 4px; }
.team-card .bio { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.55; }

/* ============ Careers ============ */
.careers-hero { padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, #1A237E 100%); color: var(--white); }
.careers-hero::before { content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 90% 20%, rgba(199,245,88,.18), transparent 40%);
  pointer-events: none; }
.careers-hero h1, .careers-hero p { color: var(--white); position: relative; }
.careers-hero .lead { color: rgba(255,255,255,.7); }

.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.perk { padding: 28px; border: 1px solid var(--line); border-radius: 18px; display: flex; flex-direction: column; gap: 12px; transition: all .2s; }
.perk:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.perk .picon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; }
.perk h4 { font-size: 17px; }
.perk p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.job-list { display: flex; flex-direction: column; gap: 8px; }
.job-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr .8fr 60px; gap: 24px;
  padding: 22px 28px; border-radius: 16px; border: 1px solid var(--line);
  align-items: center; transition: all .2s; cursor: pointer;
}
.job-row:hover { border-color: var(--ink); background: var(--surface); transform: translateX(4px); }
.job-row .jtitle { font-weight: 700; font-size: 16px; }
.job-row .jdept { font-size: 13px; color: var(--muted); }
.job-row .jtags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-row .jtags span { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--surface); color: var(--ink-2); font-weight: 600; }
.job-row .jloc { font-size: 13px; color: var(--muted); }
.job-row .japply {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); color: var(--ink); display: grid; place-items: center;
  transition: all .2s;
}
.job-row:hover .japply { background: var(--accent); color: var(--accent-ink); }

.dept-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.dept-tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.dept-tab.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.dept-tab .ct { margin-left: 6px; font-size: 11px; opacity: .6; }

@media (max-width: 1100px) {
  .flagship-grid { grid-template-columns: 1fr; }
  .ph-flagship-grid,
  .ph-flagship-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .ph-card-grid { grid-template-columns: repeat(2, 1fr); }
  .ph-stats { grid-template-columns: repeat(2, 1fr); }
  .ph-stats .ps { border-right: 0; border-bottom: 1px solid var(--line); }
  .ph-platform-pillars { grid-template-columns: repeat(2, 1fr); }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-stats-row { grid-template-columns: repeat(2, 1fr); }
  .pd-stats-row .it { border-right: 0; border-bottom: 1px solid var(--line); }
  .pd-modules { grid-template-columns: repeat(2, 1fr); }
  .pd-tiers { grid-template-columns: 1fr; }
  .pd-tier.featured { transform: none; }
  .timeline-row { grid-template-columns: 1fr; gap: 12px; }
  .value-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: repeat(2, 1fr); }
  .job-row { grid-template-columns: 1fr; gap: 8px; }
  .featured-card { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-band .nl-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .article-grid { grid-template-columns: 1fr; }
  .ph-card-grid { grid-template-columns: 1fr; }
  .ph-stats { grid-template-columns: 1fr; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.feature { grid-column: span 2; }
  .industries-row { grid-template-columns: repeat(4, 1fr); }
  .irbot-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .matrix-grid { grid-template-columns: 1fr; }
  .service-card.feature { grid-column: span 1; }
  .industries-row { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .product-card.x6, .product-card.x4, .product-card.x3, .product-card.x8 { grid-column: span 12; }
  .case-card.x6, .case-card.x4, .case-card.x8 { grid-column: span 12; }
  .stats-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head { flex-direction: column; align-items: flex-start; }
}
