/* ════════════════════════════════════════════════════════════════════
   Wanted Design System tokens — adapted for PT INSAI Indonesia
   ════════════════════════════════════════════════════════════════════ */
:root {
  /* — Brand */
  --primary:        #0066FF;       /* rgb(0,102,255) */
  --primary-hover:  #005EEB;       /* rgb(0,94,235)  */
  --primary-pressed:#0046AD;
  --primary-surface:#EAF2FE;       /* rgb(234,242,254) */
  --primary-surface-2:#F0ECFE;     /* secondary purple-blue */

  /* — Neutral text */
  --text-strong:    #171719;       /* rgb(23,23,25)  */
  --text-normal:    #1B1C1E;       /* rgb(27,28,30)  */
  --text-neutral:   #2E2F33;       /* rgb(46,47,51)  */
  --text-subtle:    #37383C;       /* rgb(55,56,60)  */
  --text-alternative:#70737C;      /* rgb(112,115,124) */
  --text-disabled:  #989BA2;       /* rgb(152,155,162) */
  --text-on-color:  #FFFFFF;

  /* — Surfaces */
  --bg:             #FFFFFF;
  --bg-secondary:   #F7F7F8;       /* rgb(247,247,248) */
  --bg-tertiary:    #F4F4F5;       /* rgb(244,244,245) */
  --bg-quaternary:  #EBEBEC;
  --bg-inverse:     #171719;
  --bg-inverse-2:   #1B1C1E;

  /* — Line */
  --line-solid:     #DBDCDF;       /* rgb(219,220,223) */
  --line-strong:    rgba(112,115,124,0.40);
  --line-normal:    rgba(112,115,124,0.22);
  --line-subtle:    rgba(112,115,124,0.13);
  --line-on-dark:   rgba(255,255,255,0.13);
  --line-on-dark-2: rgba(255,255,255,0.22);

  /* — Status (used sparingly) */
  --status-positive:#00BF40;
  --status-negative:#FF4242;
  --status-cautionary:#FF9F2D;

  /* — Shadow */
  --shadow-emphasize: 0 8px 24px rgba(23,23,23,0.10), 0 2px 4px rgba(23,23,23,0.06);
  --shadow-strong:    0 12px 40px rgba(23,23,23,0.10), 0 4px 12px rgba(23,23,23,0.06);
  --shadow-card:      0 1px 0 rgba(112,115,124,0.10), 0 6px 20px rgba(23,23,23,0.04);

  /* — Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 32px;
  --radius-3xl: 40px;
  --radius-pill: 999px;

  /* — Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 9vw, 140px);

  /* — Font */
  --sans: 'Pretendard JP Variable', 'Pretendard JP', 'Pretendard Variable', Pretendard,
          -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo',
          'Noto Sans KR', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --display: 'Wanted Sans Variable', 'Wanted Sans', var(--sans);
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ════════════════════════════════════════════════════════════════════
   Base
   ════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--bg-secondary);
  color: var(--text-strong);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--primary); color: var(--text-on-color); }

/* ════════════════════════════════════════════════════════════════════
   Typography helpers — straight from Wanted DS
   ════════════════════════════════════════════════════════════════════ */
.t-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}
.t-display em { font-style: normal; color: var(--primary); }
.t-h1 { font-weight: 700; font-size: 36px; line-height: 1.334; letter-spacing: -0.027em; color: var(--text-strong); }
.t-h2 { font-weight: 700; font-size: 28px; line-height: 1.358; letter-spacing: -0.024em; color: var(--text-strong); }
.t-h3 { font-weight: 700; font-size: 24px; line-height: 1.4; letter-spacing: -0.02em; color: var(--text-strong); }
.t-h4 { font-weight: 700; font-size: 20px; line-height: 1.4; letter-spacing: -0.015em; color: var(--text-strong); }
.t-body-l { font-weight: 500; font-size: 17px; line-height: 1.5; color: var(--text-subtle); }
.t-body { font-weight: 500; font-size: 16px; line-height: 1.5; letter-spacing: 0.006em; color: var(--text-subtle); }
.t-body-s { font-weight: 500; font-size: 14px; line-height: 1.5; letter-spacing: 0.014em; color: var(--text-subtle); }
.t-caption { font-weight: 500; font-size: 13px; line-height: 1.46; letter-spacing: 0.024em; color: var(--text-alternative); }
.t-label { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-alternative); }

h1, h2, h3, h4, p { margin: 0; text-wrap: pretty; }
.t-display, .t-h1, .t-h2, .t-h3, .t-h4 { text-wrap: balance; }

/* ════════════════════════════════════════════════════════════════════
   Building blocks — Card, Badge, Button, Divider, Label
   ════════════════════════════════════════════════════════════════════ */
.card {
  background: var(--bg);
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.card-lg { border-radius: var(--radius-3xl); }
.card-md { border-radius: var(--radius-xl); }
.card-sm { border-radius: var(--radius-lg); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-surface);
  color: var(--primary);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.024em;
  line-height: 1;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-neutral { background: var(--bg-tertiary); color: var(--text-subtle); }
.badge-dark { background: rgba(255,255,255,0.10); color: var(--text-on-color); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.006em;
  color: var(--text-on-color);
  background: var(--primary);
  transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--primary-hover); }
.btn:active { background: var(--primary-pressed); transform: translateY(1px); }
.btn-secondary { background: var(--text-strong); color: var(--text-on-color); }
.btn-secondary:hover { background: var(--text-normal); }
.btn-outline { background: transparent; color: var(--text-strong); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn-outline:hover { background: var(--bg-tertiary); }
.btn-ghost { background: var(--bg-tertiary); color: var(--text-strong); }
.btn-ghost:hover { background: var(--bg-quaternary); }
.btn-md { height: 48px; font-size: 16px; padding: 0 20px; }
.btn-sm { height: 40px; font-size: 14px; padding: 0 16px; }

.btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--text-on-color);
  color: var(--primary);
  margin-left: 4px;
  transition: transform .2s ease;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--line-normal);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(0,102,255,0.16); }

.divider { height: 1px; background: var(--line-normal); border: 0; }
.divider-strong { background: var(--text-strong); height: 2px; }

/* ════════════════════════════════════════════════════════════════════
   Layout shell
   ════════════════════════════════════════════════════════════════════ */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ════════════════════════════════════════════════════════════════════
   Nav
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: min(calc(100% - 32px), 1240px);
  max-width: 1240px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid var(--line-normal);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-emphasize); background: rgba(255,255,255,0.92); }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo { height: 22px; width: auto; display: block; }
.nav-mark {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--text-strong); color: var(--text-on-color);
  border-radius: 8px;
  font-family: var(--display); font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.nav-brand-name { font-size: 16px; font-weight: 700; letter-spacing: -0.012em; }
.nav-brand-sub { color: var(--text-alternative); font-size: 13px; font-weight: 500; margin-left: 2px; }
.nav-list {
  display: flex; gap: 2px;
  list-style: none; padding: 0; margin: 0;
  justify-self: center;
}
.nav-list a {
  display: inline-flex; align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-subtle);
  transition: background .2s, color .2s;
}
.nav-list a:hover { background: var(--bg-tertiary); color: var(--text-strong); }
.nav-cta { height: 44px; padding: 0 16px 0 20px; font-size: 14px; }
.nav-cta .btn-arrow { width: 24px; height: 24px; }
.nav-cta .btn-arrow svg { width: 12px; height: 12px; }
.nav-menu { display: none; width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--bg-tertiary); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-menu span { display: block; width: 18px; height: 1.6px; background: var(--text-strong); }
.nav-drawer {
  position: fixed; inset: 76px 16px auto 16px;
  background: var(--bg);
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-xl);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 90;
  box-shadow: var(--shadow-strong);
}
.nav-drawer a { padding: 14px 16px; font-size: 15px; font-weight: 600; border-radius: var(--radius-md); }
.nav-drawer a:hover { background: var(--bg-tertiary); }
.drawer-cta { background: var(--primary) !important; color: var(--text-on-color) !important; margin-top: 6px; }

/* ════════════════════════════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 132px var(--gutter) 56px;
  background: #0d0d0f;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: hero-zoom 16s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.62) 0%, rgba(10,10,12,0.30) 30%, rgba(10,10,12,0.55) 70%, rgba(10,10,12,0.88) 100%),
    linear-gradient(95deg, rgba(10,10,12,0.78) 0%, rgba(10,10,12,0.40) 42%, rgba(10,10,12,0.05) 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }

.hero-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: clamp(48px, 9vw, 120px);
  flex-wrap: wrap;
  gap: 12px;
}
.hero-top .eyebrow {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-top .t-label { color: rgba(255,255,255,0.62); }
.hero-meta { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status-positive); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }

.hero-main { display: flex; flex-direction: column; }
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 150px);
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.05s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .05s; }
.hero-title .line:nth-child(2) > span { animation-delay: .14s; }
.hero-title .line:nth-child(3) > span { animation-delay: .23s; }
.hero-title .line:nth-child(4) > span { animation-delay: .32s; }
.hero-title .accent > span { color: #ff6a13; -webkit-text-fill-color: #ff6a13; text-shadow: 0 2px 30px rgba(255,106,19,0.35), 0 1px 3px rgba(0,0,0,0.45); }
@keyframes rise { to { transform: none; } }

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-top: clamp(36px, 5vw, 56px);
}
.hero-lead {
  max-width: 40ch;
  font-size: clamp(17px, 1.4vw, 22px);
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-self: end; }
.hero-actions .btn-outline {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.2); }

.hero-credit {
  position: absolute; right: var(--gutter); top: clamp(120px, 16vh, 200px); z-index: 2;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  pointer-events: none;
}
.hero-art-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.hero-art-badge .dot { width: 6px; height: 6px; background: var(--status-positive); border-radius: 50%; box-shadow: 0 0 8px 1px rgba(40,200,120,0.8); }
.hero-art-tag {
  display: flex; flex-direction: column; align-items: flex-end;
  padding: 10px 16px;
  background: rgba(13,13,15,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  color: #fff;
  text-align: right;
}
.hero-art-tag .l { font-family: var(--mono); font-size: 10.5px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-art-tag .v { font-size: 14px; font-weight: 600; margin-top: 2px; }

.hero-stats {
  margin-top: clamp(48px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  padding: 22px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s ease, background .2s ease;
}
.stat:hover { transform: translateY(-2px); background: rgba(255,255,255,0.13); }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
}
.stat-num sup { font-size: 0.5em; color: rgba(255,255,255,0.75); vertical-align: super; font-weight: 600; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ════════════════════════════════════════════════════════════════════
   Section
   ════════════════════════════════════════════════════════════════════ */
.section { padding: var(--section-pad) var(--gutter); }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: 56px;
}
.section-head-meta { display: flex; flex-direction: column; gap: 16px; }
.section-head-row { display: flex; align-items: baseline; gap: 12px; }
.section-head-num {
  font-family: var(--mono); font-size: 13px;
  color: var(--text-alternative);
  letter-spacing: 0.06em;
}
.section-tagline { color: var(--text-subtle); max-width: 38ch; }

/* ════════════════════════════════════════════════════════════════════
   About
   ════════════════════════════════════════════════════════════════════ */
.about { background: var(--bg-secondary); }
.about-quote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  max-width: 16ch;
}
.about-quote em { font-style: normal; color: var(--primary); }
.about-body {
  display: flex; flex-direction: column; gap: 16px;
  color: var(--text-subtle);
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
}

.vm-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vm-card {
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--line-normal);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 260px;
  transition: border-color .2s, transform .25s;
}
.vm-card:hover { border-color: var(--text-strong); transform: translateY(-2px); }
.vm-card-head { display: flex; justify-content: space-between; align-items: flex-start; }
.vm-card-q { color: var(--text-strong); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.35; }
.vm-card-q em { font-style: normal; color: var(--primary); }
.vm-card-num {
  font-family: var(--mono); font-size: 12px; color: var(--text-alternative);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════════════════
   Values
   ════════════════════════════════════════════════════════════════════ */
.values { background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.value-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-normal);
  min-height: 280px;
  transition: background .2s, border-color .2s, transform .25s;
  position: relative;
  overflow: hidden;
}
.value-card:hover { background: var(--primary-surface); border-color: rgba(0,102,255,0.3); }
.value-card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-subtle);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
}
.value-card:hover .value-card-num { background: var(--primary); color: var(--text-on-color); }
.value-card-title {
  margin-top: auto;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text-strong);
}
.value-card-body { font-size: 14px; color: var(--text-alternative); line-height: 1.5; }

/* ════════════════════════════════════════════════════════════════════
   Workflow
   ════════════════════════════════════════════════════════════════════ */
.workflow { background: var(--bg-secondary); }
.workflow-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.workflow-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line-normal);
  aspect-ratio: 4 / 3.2;
}
.workflow-figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .6s ease, transform .9s ease;
}
.workflow-figure img.is-active { opacity: 1; transform: scale(1); }
.workflow-figure-overlay {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
}
.workflow-figure-overlay-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: var(--text-on-color);
  font-family: var(--mono); font-size: 13px; font-weight: 600;
}
.workflow-figure-overlay-text { font-weight: 700; font-size: 15px; color: var(--text-strong); }
.workflow-progress {
  position: absolute; left: 20px; top: 20px; right: 20px;
  display: flex; gap: 4px;
}
.workflow-progress-bar {
  flex: 1; height: 3px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}
.workflow-progress-bar.is-done { background: var(--primary); }
.workflow-progress-bar.is-active::after {
  content: ""; display: block; width: 100%; height: 100%;
  background: var(--primary);
  transform-origin: left;
  animation: progress 3.5s linear forwards;
}
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.workflow-list {
  display: flex; flex-direction: column; gap: 8px;
}
.wf-row {
  text-align: left;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-normal);
  transition: background .2s, border-color .2s, padding .2s;
}
.wf-row:hover { background: var(--bg); border-color: var(--text-strong); }
.wf-row.is-active {
  background: var(--text-strong);
  border-color: var(--text-strong);
}
.wf-row.is-active .wf-row-title { color: var(--text-on-color); }
.wf-row.is-active .wf-row-body { color: rgba(255,255,255,0.7); }
.wf-row.is-active .wf-row-num { background: var(--primary); color: var(--text-on-color); }
.wf-row.is-active .wf-row-arrow { color: var(--text-on-color); transform: rotate(-45deg); }
.wf-row-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-subtle);
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  transition: background .2s, color .2s;
}
.wf-row-content { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wf-row-title { font-size: 17px; font-weight: 700; letter-spacing: -0.012em; color: var(--text-strong); }
.wf-row-body { font-size: 14px; color: var(--text-alternative); line-height: 1.5; }
.wf-row-arrow {
  color: var(--text-alternative);
  transition: transform .25s, color .2s;
}

/* ════════════════════════════════════════════════════════════════════
   Capabilities
   ════════════════════════════════════════════════════════════════════ */
.capabilities { background: var(--bg); }
.cap-tabs {
  display: flex; gap: 6px;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-pill);
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
.cap-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-subtle);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.cap-tab:hover { color: var(--text-strong); }
.cap-tab.is-active { background: var(--text-strong); color: var(--text-on-color); }
.cap-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text-alternative);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}
.cap-tab.is-active .cap-tab-count { background: rgba(255,255,255,0.18); color: var(--text-on-color); }

.cap-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.cap-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--line-normal);
  aspect-ratio: 4 / 3.2;
  background: var(--bg-secondary);
}
.cap-figure img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity .6s, transform .9s;
}
.cap-figure img.is-active { opacity: 1; transform: scale(1); }
.cap-figure-tag {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.cap-figure-bottom {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: rgba(23,23,25,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  color: var(--text-on-color);
}
.cap-figure-bottom-title { font-size: 15px; font-weight: 700; }
.cap-figure-bottom-count { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.7); }

.cap-machines {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 4px;
}
.cap-machine {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  animation: rise-soft .5s cubic-bezier(.22,.61,.36,1) backwards;
  transition: background .2s;
}
.cap-machine:hover { background: var(--primary-surface); }
.cap-machine-idx {
  font-family: var(--mono); font-size: 13px; color: var(--text-alternative);
}
.cap-machine-name { font-size: 17px; font-weight: 700; letter-spacing: -0.012em; color: var(--text-strong); }
.cap-machine-spec {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes rise-soft { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════════════════════════
   Products
   ════════════════════════════════════════════════════════════════════ */
.products { background: var(--bg-secondary); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product {
  display: flex; flex-direction: column;
  border-radius: var(--radius-2xl);
  background: var(--bg);
  border: 1px solid var(--line-normal);
  overflow: hidden;
  transition: transform .3s, border-color .2s, box-shadow .3s;
}
.product:hover { transform: translateY(-3px); border-color: var(--text-strong); box-shadow: var(--shadow-card); }
.product-img { overflow: hidden; background: var(--bg-tertiary); position: relative; aspect-ratio: 4 / 3; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.product:hover .product-img img { transform: scale(1.05); }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--line-normal);
}
.product-tag { font-size: 14px; font-weight: 700; color: var(--text-strong); }
.product-num { font-family: var(--mono); font-size: 12px; color: var(--text-alternative); }

/* ════════════════════════════════════════════════════════════════════
   Clients
   ════════════════════════════════════════════════════════════════════ */
.clients { background: var(--bg); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line-normal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: background .2s, border-color .2s, transform .25s;
}
.client:hover { background: var(--bg-secondary); border-color: var(--text-strong); transform: translateY(-2px); }
.client-logo {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-normal);
}
.client-logo img {
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.7;
  transition: filter .3s, opacity .3s;
}
.client:hover .client-logo img { filter: grayscale(0); opacity: 1; }
.client-name {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: -0.005em;
}

/* ════════════════════════════════════════════════════════════════════
   Contact
   ════════════════════════════════════════════════════════════════════ */
.contact { background: var(--bg-secondary); padding: var(--section-pad) var(--gutter) 16px; }
.contact-card {
  background: var(--bg-inverse);
  color: var(--text-on-color);
  border-radius: var(--radius-3xl);
  padding: clamp(48px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.contact-logo { height: 28px; width: auto; align-self: flex-start; object-fit: contain; opacity: 0.95; margin-bottom: 4px; }
.contact-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.032em;
  line-height: 1.05;
  color: var(--text-on-color);
  overflow-wrap: break-word;
}
.contact-title em { font-style: normal; color: #6CA8FF; }
.contact-lead { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.5; max-width: 40ch; }

.contact-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
}
.contact-detail { display: flex; flex-direction: column; gap: 8px; }
.contact-detail-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-detail-value { font-size: 15px; color: rgba(255,255,255,0.92); line-height: 1.5; }
.contact-detail-value a { border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color .2s; }
.contact-detail-value a:hover { border-bottom-color: var(--text-on-color); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-2xl);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.contact-form-head {
  display: flex; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 6px;
}
.contact-form-head .t-label { color: rgba(255,255,255,0.55); }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78); }
.field-input, .field-select, .field-textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-on-color);
  outline: none;
  transition: border-color .2s, background .2s;
  font-family: var(--sans);
  box-sizing: border-box;
}
.field-input::placeholder, .field-textarea::placeholder { color: rgba(255,255,255,0.35); }
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: rgba(0,102,255,0.6); background: rgba(255,255,255,0.06); }
.field-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5l5 5 5-5' fill='none' stroke='%23ffffff80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}
.field-select option { color: var(--text-strong); background: var(--bg); }
.field-textarea { resize: vertical; min-height: 96px; font-family: var(--sans); }
.field-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 14px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; max-width: 100%; }
.contact-form .btn:disabled { cursor: default; opacity: 0.85; }
.form-error { margin-top: 2px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.78); }
.form-error a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); }

.contact-thanks {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  padding: 40px 30px;
  min-height: 100%;
  justify-content: center;
  animation: thanks-in .5s cubic-bezier(.22,.61,.36,1) both;
}
.contact-thanks-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--line-dark-2);
  color: #fff;
}
.contact-thanks-title { font-size: 24px; font-weight: 600; letter-spacing: -0.012em; color: #fff; line-height: 1.2; }
.contact-thanks-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 36ch; }
.contact-thanks .btn { margin-top: 8px; }
@keyframes thanks-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ════════════════════════════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line-normal);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-normal);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 32ch; }
.footer-brand-row { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo { height: 30px; width: auto; display: block; }
.footer-mark {
  width: 44px; height: 44px;
  background: var(--text-strong); color: var(--text-on-color);
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 20px;
}
.footer-brand-name { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; }
.footer-brand-desc { color: var(--text-alternative); font-size: 14px; line-height: 1.55; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-alternative); margin-bottom: 6px; }
.footer-col a { font-size: 15px; font-weight: 600; color: var(--text-strong); width: max-content; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { font-size: 14px; color: var(--text-subtle); line-height: 1.5; }

.footer-wordmark {
  margin-top: 56px;
  line-height: 0.8;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}
.footer-wordmark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.1;
}
.footer-base {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-alternative);
}
.footer-base .t-label { font-size: 11px; }

/* ════════════════════════════════════════════════════════════════════
   Reveal animations
   ════════════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .nav-list, .nav-cta { display: none; }
  .nav-menu { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .hero-foot,
  .section-head,
  .workflow-stage, .cap-panel,
  .vm-grid, .contact-card {
    grid-template-columns: 1fr; gap: 32px;
  }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { justify-self: start; }
  .hero-credit { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 6px 6px 6px 16px; }
  .nav-brand-sub { display: none; }
  .hero { padding-top: 104px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { padding-left: 16px; padding-right: 16px; }
  .contact-card { padding: 32px 22px; border-radius: var(--radius-2xl); gap: 28px; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-title { font-size: clamp(34px, 9vw, 44px); }
  .contact-form { padding: 22px; }
  .cap-machine { grid-template-columns: 28px 1fr; row-gap: 4px; padding: 16px 20px; }
  .cap-machine-spec { grid-column: 2; }
}
