/* ============================================================
   Lacy Digital Labs — reinvented visual system
   Type:  Space Grotesk (display) · Hanken Grotesk (body) · Space Mono (mono)
   Base:  warm ink-on-paper · single hue-driven accent
   ============================================================ */

:root {
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SF Mono', monospace;

  /* hue driven accent — switched by [data-accent] */
  --accent-h: 255;

  /* paper (light) base */
  --paper:   oklch(0.985 0.004 95);
  --paper-2: oklch(0.962 0.006 95);
  --card:    #ffffff;
  --ink:     oklch(0.22 0.018 265);
  --ink-2:   oklch(0.44 0.02 265);
  --ink-3:   oklch(0.60 0.015 265);
  --line:    oklch(0.905 0.006 265);
  --line-2:  oklch(0.85 0.008 265);

  --accent:      oklch(0.56 0.15 var(--accent-h));
  --accent-ink:  oklch(0.47 0.15 var(--accent-h));
  --accent-soft: oklch(0.955 0.032 var(--accent-h));
  --accent-line: oklch(0.86 0.06 var(--accent-h));
  --on-accent:   #ffffff;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 9px;

  --fs-scale: 1;
  --shadow-sm: 0 1px 2px rgba(20,24,40,.05), 0 2px 6px rgba(20,24,40,.04);
  --shadow-md: 0 4px 12px rgba(20,24,40,.07), 0 14px 40px rgba(20,24,40,.08);
  --shadow-lg: 0 8px 24px rgba(20,24,40,.10), 0 30px 70px rgba(20,24,40,.14);
}

[data-accent="indigo"]    { --accent-h: 288; }
[data-accent="teal"]      { --accent-h: 188; }
[data-accent="terracotta"]{ --accent-h: 45;  }

[data-mode="dark"] {
  --paper:   oklch(0.185 0.014 265);
  --paper-2: oklch(0.225 0.017 265);
  --card:    oklch(0.235 0.018 265);
  --ink:     oklch(0.965 0.004 95);
  --ink-2:   oklch(0.78 0.012 265);
  --ink-3:   oklch(0.62 0.012 265);
  --line:    oklch(0.33 0.02 265);
  --line-2:  oklch(0.40 0.022 265);

  --accent:      oklch(0.72 0.15 var(--accent-h));
  --accent-ink:  oklch(0.82 0.13 var(--accent-h));
  --accent-soft: oklch(0.285 0.06 var(--accent-h));
  --accent-line: oklch(0.42 0.08 var(--accent-h));
  --on-accent:   oklch(0.16 0.02 265);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 6px 18px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 50px rgba(0,0,0,.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: calc(17px * var(--fs-scale));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

::selection { background: var(--accent); color: var(--on-accent); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-tight { max-width: 920px; margin: 0 auto; padding: 0 28px; }

/* ---------- shared type ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.kicker::before { content: "//"; opacity: .5; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---------- node motif divider ---------- */
.node-rule {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--line-2);
}
.node-rule .seg { height: 1px; background: currentColor; flex: 1; }
.node-rule .nd {
  width: 7px; height: 7px;
  border: 1px solid currentColor;
  background: var(--paper);
  transform: rotate(45deg);
  flex: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklch, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 13px 28px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; flex: none;
  background: var(--accent); color: var(--on-accent);
  font-family: var(--display); font-weight: 700; font-size: 19px;
  box-shadow: var(--shadow-sm);
}
.brand .name { font-family: var(--display); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.brand .name span { color: var(--ink-3); font-weight: 500; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 8px 13px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.local-pill {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink); display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border: 1px solid var(--accent-line); border-radius: 999px;
  background: var(--accent-soft);
}
.local-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, var(--line-2) 1px, transparent 0);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 75% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 75% at 50% 0%, #000 35%, transparent 78%);
  opacity: .7;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-head { max-width: 880px; }
.hero h1 {
  font-size: clamp(40px, 6.6vw, 78px);
  margin: 20px 0 0;
}
.hero h1 .soft { color: var(--ink-3); }
.hero .lead {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-2); max-width: 600px; margin: 24px 0 0; line-height: 1.5;
}
.hero-cta { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: .04em;
}
.hero-trust .plats { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust b { color: var(--ink-2); font-weight: 400; }

/* hero product window */
.hero-stage { position: relative; margin-top: 56px; perspective: 2000px; }
.win {
  border-radius: 13px; overflow: hidden; background: var(--card);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
}
.win-bar {
  display: flex; align-items: center; gap: 8px; padding: 11px 15px;
  background: var(--paper-2); border-bottom: 1px solid var(--line);
}
.win-bar .dots { display: flex; gap: 7px; }
.win-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.win-bar .title { font-family: var(--mono); font-size: 12px; color: var(--ink-3); margin: 0 auto; padding-right: 40px; }
.win img { width: 100%; display: block; }
.hero-stage .float-badge {
  position: absolute; right: -14px; top: -22px; z-index: 3;
  background: var(--card); border: 1px solid var(--line-2); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 13px 16px; max-width: 220px;
}
.float-badge .fb-top { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); }
.float-badge .fb-top .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.float-badge p { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; line-height: 1.4; }

/* ============================================================
   MARQUEE / DIFFERENTIATOR BAND
   ============================================================ */
.band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink); color: var(--paper);
  overflow: hidden; margin-top: 64px;
}
[data-mode="dark"] .band { background: var(--paper-2); color: var(--ink); }
.marquee { display: flex; gap: 0; white-space: nowrap; }
.marquee-track {
  display: flex; align-items: center; gap: 0; padding: 18px 0;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-track .item {
  font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 18px; padding: 0 26px;
}
.marquee-track .item .z { color: var(--accent); font-family: var(--mono); }
.marquee-track .dotmark { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent); flex: none; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: 92px 0; }
.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.section-head p { color: var(--ink-2); font-size: 18px; margin-top: 16px; }

/* ============================================================
   PRODUCT SWITCHER
   ============================================================ */
.switch { display: grid; grid-template-columns: 360px 1fr; gap: 40px; margin-top: 52px; align-items: start; }
.switch-list { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 96px; }
.switch-tab {
  text-align: left; cursor: pointer; background: transparent;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 20px; transition: border-color .2s, background .2s, transform .2s;
  display: flex; gap: 15px; align-items: flex-start; font-family: var(--body);
}
.switch-tab:hover { border-color: var(--line-2); transform: translateX(3px); }
.switch-tab.active { border-color: var(--accent); background: var(--accent-soft); }
.switch-tab .glyph {
  width: 42px; height: 42px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line-2); color: var(--accent-ink);
}
.switch-tab.active .glyph { background: var(--accent); color: var(--on-accent); border-color: transparent; }
.switch-tab .tt { font-family: var(--display); font-weight: 600; font-size: 18px; }
.switch-tab .tt .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); display: block; margin-top: 3px; font-weight: 400; }
.switch-tab .td { font-size: 14px; color: var(--ink-2); margin-top: 7px; line-height: 1.45; }

.switch-panel { position: relative; min-height: 540px; }
.panel { display: none; }
.panel.active { display: block; animation: fade-up .45s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.panel-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.panel-top h3 { font-size: 30px; }
.panel-top .sub { color: var(--ink-2); font-size: 15.5px; margin-top: 6px; }
.panel-price { font-family: var(--mono); font-size: 13px; color: var(--ink-2); text-align: right; }
.panel-price b { display: block; font-size: 26px; color: var(--ink); font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; }

.panel-preview { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-md); background: var(--card); }
.panel-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 28px; margin-top: 26px; }
.feat { display: flex; gap: 11px; padding: 11px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.feat .ck { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--accent); }
.feat .ft { font-size: 14.5px; }
.feat .ft b { font-weight: 600; }
.feat .ft span { color: var(--ink-2); }
.panel-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* built UI mocks inside preview */
.mock { font-family: var(--body); }

/* terminal mock */
.term { background: oklch(0.16 0.015 265); color: oklch(0.92 0.01 150); font-family: var(--mono); font-size: 13px; line-height: 1.7; padding: 18px 20px; min-height: 360px; }
.term .tl { white-space: pre-wrap; }
.term .c-g { color: oklch(0.78 0.13 150); }
.term .c-b { color: oklch(0.74 0.12 250); }
.term .c-y { color: oklch(0.82 0.13 90); }
.term .c-d { color: oklch(0.6 0.01 265); }
.term .c-a { color: var(--accent); }
.term .row { display: flex; justify-content: space-between; gap: 12px; }
.term .bar { color: oklch(0.6 0.01 265); border-top: 1px solid oklch(0.3 0.02 265); margin-top: 8px; padding-top: 8px; }
.term .cursor { display: inline-block; width: 8px; height: 15px; background: oklch(0.78 0.13 150); vertical-align: middle; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* coming-soon preview (WillisGSD) */
.coming {
  min-height: 360px; display: grid; place-items: center; text-align: center; padding: 40px;
  background:
    radial-gradient(circle at 1px 1px, var(--line-2) 1px, transparent 0) 0 0 / 22px 22px,
    var(--card);
}
.coming-inner { max-width: 360px; }
.coming-glyph { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin: 0 auto 18px; background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-md); }
.coming-name { font-family: var(--display); font-weight: 600; font-size: 27px; letter-spacing: -0.02em; color: var(--ink); }
.coming-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 13px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 7px 13px; border-radius: 999px; }
.coming-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s ease-in-out infinite; }
.coming p { margin-top: 16px; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

/* phone-screenshot preview (CardLoom) */
.shots {
  min-height: 360px; display: flex; align-items: center; justify-content: center; gap: 22px; padding: 38px 40px;
  background:
    radial-gradient(circle at 1px 1px, var(--line-2) 1px, transparent 0) 0 0 / 22px 22px,
    var(--card);
}
.shots img { width: 30%; max-width: 152px; aspect-ratio: 660 / 1434; border-radius: 20px; border: 1px solid var(--line-2); box-shadow: var(--shadow-md); background: var(--card); display: block; }
.shots img:nth-child(2) { transform: translateY(-16px) scale(1.05); position: relative; z-index: 1; }

/* branded app icons inside the product switcher */
.switch-tab .glyph.app { background: transparent; border: 0; padding: 0; overflow: hidden; }
.switch-tab.active .glyph.app { background: transparent; }
.glyph.app img { width: 100%; height: 100%; display: block; }
.coming-glyph.app { background: transparent; box-shadow: none; overflow: hidden; }
.coming-glyph.app img { width: 100%; height: 100%; display: block; }

/* task mock */
.tasks .side { background: var(--paper-2); border-right: 1px solid var(--line); padding: 16px 12px; }
.tasks .side .sh { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 14px 6px 8px; }
.tasks .side .sh:first-child { margin-top: 0; }
.tasks .nav-item { display: flex; align-items: center; justify-content: space-between; padding: 7px 9px; border-radius: 7px; font-size: 13.5px; color: var(--ink-2); }
.tasks .nav-item.on { background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.tasks .nav-item .n { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.tasks .main { padding: 20px 22px; }
.tasks .main h4 { font-family: var(--display); font-size: 19px; margin-bottom: 4px; }
.tasks .main .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-bottom: 16px; letter-spacing: .05em; }
.tasks .ti { display: flex; align-items: center; gap: 11px; padding: 11px 2px; border-bottom: 1px solid var(--line); }
.tasks .ti .box { width: 17px; height: 17px; border-radius: 5px; border: 1.5px solid var(--line-2); flex: none; }
.tasks .ti.done .box { background: var(--accent); border-color: var(--accent); position: relative; }
.tasks .ti.done .box::after { content: "✓"; color: var(--on-accent); font-size: 11px; position: absolute; inset: 0; display: grid; place-items: center; }
.tasks .ti.done .lab { color: var(--ink-3); text-decoration: line-through; }
.tasks .ti .lab { font-size: 14px; flex: 1; }
.tasks .ti .flag { font-family: var(--mono); font-size: 10px; padding: 2px 7px; border-radius: 5px; background: var(--paper-2); color: var(--ink-3); border: 1px solid var(--line); }

/* ============================================================
   PRINCIPLES
   ============================================================ */
.principles { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.prin {
  padding: 30px 26px; border-right: 1px solid var(--line);
  transition: background .2s;
}
.prin:last-child { border-right: none; }
.prin:hover { background: var(--accent-soft); }
.prin .pn { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); letter-spacing: .1em; }
.prin h3 { font-size: 21px; margin: 16px 0 10px; }
.prin p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* ============================================================
   SWITCH-FROM / VALUE
   ============================================================ */
.switchfrom { }
.sf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
.sf-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; background: var(--card);
}
.sf-card.flip { background: var(--ink); color: var(--paper); border-color: var(--ink); }
[data-mode="dark"] .sf-card.flip { background: var(--accent-soft); color: var(--ink); border-color: var(--accent-line); }
.sf-card h3 { font-size: 22px; margin-bottom: 6px; color: inherit; }
.sf-card .sf-sub { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin-bottom: 20px; }
.sf-row { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 14.5px; align-items: flex-start; }
.sf-card.flip .sf-row { border-color: oklch(0.35 0.02 265); }
.sf-row .mk { font-family: var(--mono); flex: none; }
.sf-card .sf-row .mk { color: var(--ink-3); }
.sf-card.flip .sf-row .mk { color: var(--accent); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--paper-2); border-top: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.price-card.feature { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.price-card .pc-name { font-family: var(--display); font-weight: 600; font-size: 19px; }
.price-card .pc-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.price-card .pc-amt { font-family: var(--display); font-weight: 600; font-size: 44px; letter-spacing: -0.03em; margin: 22px 0 2px; }
.price-card .pc-amt small { font-family: var(--mono); font-size: 13px; color: var(--ink-3); font-weight: 400; letter-spacing: 0; }
.price-card .pc-once { font-family: var(--mono); font-size: 12px; color: var(--accent-ink); margin-bottom: 20px; }

/* multi-platform price rows (WillisGSD) */
.pc-prices { display: flex; flex-direction: column; gap: 0; margin: 18px 0 14px; }
.pcr { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.pcr:first-child { border-top: 1px solid var(--line); }
.pcr-p { font-family: var(--body); font-weight: 600; font-size: 14.5px; color: var(--ink); display: flex; flex-direction: column; }
.pcr-p small { font-family: var(--mono); font-weight: 400; font-size: 10px; letter-spacing: .05em; color: var(--ink-3); margin-top: 3px; text-transform: uppercase; }
.pcr-a { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--accent-ink); flex: none; }
.pcr-a.soon { font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.price-card li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.price-card li svg { flex: none; margin-top: 3px; color: var(--accent); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; font-family: var(--mono); font-size: 13px; color: var(--ink-3); margin-top: 34px; }

/* ============================================================
   CONSULTING BAND
   ============================================================ */
.consult { padding: 88px 0; }
.consult-inner {
  background: var(--ink); color: var(--paper); border-radius: 20px; padding: 56px 56px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
[data-mode="dark"] .consult-inner { background: var(--card); color: var(--ink); border: 1px solid var(--line-2); }
.consult-inner .kicker { color: var(--accent); }
.consult-inner h2 { color: inherit; font-size: clamp(28px, 3.4vw, 40px); margin-top: 16px; }
.consult-inner p { color: oklch(0.82 0.01 265); margin-top: 16px; font-size: 16.5px; max-width: 460px; }
[data-mode="dark"] .consult-inner p { color: var(--ink-2); }
.consult-right { display: flex; flex-direction: column; gap: 14px; }
.consult-chip { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 13px; padding: 14px 18px; border: 1px solid oklch(0.4 0.02 265); border-radius: 11px; }
[data-mode="dark"] .consult-chip { border-color: var(--line-2); }
.consult-chip .nd { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent); flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding: 72px 0 36px; background: var(--paper); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .brand { margin-bottom: 2px; }
.foot-brand p { color: var(--ink-2); font-size: 14.5px; margin-top: 16px; max-width: 280px; }
.foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 6px 0; transition: color .15s; }
.foot-col a:hover { color: var(--accent-ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.foot-bottom .colo { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.foot-bottom .links { display: flex; gap: 20px; }
.foot-bottom .links a { font-size: 13px; color: var(--ink-3); }
.foot-bottom .links a:hover { color: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .switch { grid-template-columns: 1fr; }
  .switch-list { position: static; }
  .prin-grid { grid-template-columns: repeat(2, 1fr); }
  .prin:nth-child(2) { border-right: none; }
  .prin:nth-child(1), .prin:nth-child(2) { border-bottom: 1px solid var(--line); }
  .sf-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .consult-inner { grid-template-columns: 1fr; padding: 40px 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .wrap, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .section { padding: 64px 0; }
  .prin-grid { grid-template-columns: 1fr; }
  .prin { border-right: none; border-bottom: 1px solid var(--line); }
  .panel-feats { grid-template-columns: 1fr; }
  .hero-stage .float-badge { display: none; }
  .foot-top { grid-template-columns: 1fr; }
}

/* ---------- pricing: two-up (Willis apps only) ---------- */
.price-grid.duo { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) { .price-grid.duo { grid-template-columns: 1fr; } }

/* ============================================================
   TERMLOGGER — passion-project band (kept apart from commercial line)
   ============================================================ */
.lab { padding: 72px 0; }
.lab-inner {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 46px; align-items: center;
  border: 1px solid var(--line); border-radius: 20px; padding: 46px 48px; background: var(--paper-2);
}
.lab-inner .kicker { color: var(--ink-3); }
.lab-inner .kicker::before { content: "#"; opacity: .6; }
.lab-copy h2 { font-size: clamp(28px, 3.2vw, 40px); margin-top: 14px; }
.lab-copy > p { color: var(--ink-2); margin-top: 16px; font-size: 16px; max-width: 440px; line-height: 1.6; }
.lab-meta { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.lab-pill {
  font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--card);
}
.lab-pill .nd { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent); flex: none; }
.lab-win { box-shadow: var(--shadow-md); }
@media (max-width: 940px) {
  .lab-inner { grid-template-columns: 1fr; gap: 30px; padding: 34px 28px; }
  .lab-copy > p { max-width: none; }
}
