/* ============================================================
   Brivox landing — design system (ported from carousel-b)
   ============================================================ */

:root {
  --brand: #ee231b;
  --brand-50: #fef2f2;
  --brand-100: #fee4e2;
  --brand-200: #fecdca;
  --brand-600: #d41c15;

  --chaos-bg: #ffe4e1;
  --chaos-bg-2: #ffccc8;
  --chaos-sticky: #ffd1cc;

  --ink: #0b0f17;
  --ink-2: #1f2937;
  --sub: #6b7280;
  --sub-2: #9ca3af;
  --line: #e9eaee;
  --line-2: #eef0f3;
  --surface: #ffffff;
  --surface-2: #fafbfc;

  --nav-h: 72px;
  --section-pad-y: clamp(80px, 10vw, 140px);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
.display, h1, h2, h3 {
  font-family: 'Akaya Kanadaka', cursive;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--ink);
}
h1 { font-size: clamp(56px, 8vw, 128px); }
h2 { font-size: clamp(44px, 6vw, 96px); }
h3 { font-size: clamp(32px, 4vw, 56px); line-height: 1; }
.accent { color: var(--brand); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--sub);
  max-width: 560px;
}

p { color: var(--ink-2); }

/* ------------------------------------------------------------
   Buttons + pills
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn [data-lucide] { width: 16px; height: 16px; stroke-width: 2.4; }
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
}
.pill.brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.pill.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill.outline { background: transparent; border-color: var(--ink); }
.pill [data-lucide] { width: 18px; height: 18px; stroke-width: 2.2; }

.caption-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: 999px;
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 24px;
  color: var(--brand);
}
.caption-pill [data-lucide] { width: 20px; height: 20px; color: var(--brand); }

/* ------------------------------------------------------------
   Nav
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav .brand img { width: 28px; height: 28px; }
.nav .menu {
  display: flex;
  gap: 28px;
}
.nav .menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.nav .menu a:hover { color: var(--brand); }
.nav .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav .actions .btn { padding: 10px 20px; font-size: 14px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav .menu { display: none; }
  .nav .actions .btn-login { display: none; }
}

/* ------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------ */
main { padding-top: var(--nav-h); }

.section {
  position: relative;
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}
.section.chaos { background: var(--chaos-bg); }
.section.white { background: var(--surface); }
.section.gradient {
  background:
    radial-gradient(ellipse 900px 600px at 50% 40%, rgba(238, 35, 27, 0.12), transparent 65%),
    var(--surface);
}

/* ------------------------------------------------------------
   Reveal animation
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ------------------------------------------------------------
   Hero — chaos vs calm split
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 0;
  overflow: hidden;
}
.hero .split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.hero .band {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(24px, 5vw, 64px);
  overflow: hidden;
  min-height: 0;
}
.hero .band.chaos-band { background: var(--chaos-bg); }
.hero .band.calm-band { background: var(--surface); }
.hero .band .word {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  color: var(--ink);
}
.hero .band.chaos-band .word { color: var(--brand); text-align: left; margin-left: clamp(20px, 5vw, 80px); }
.hero .band.calm-band .word { color: var(--ink); text-align: right; margin-left: auto; margin-right: clamp(20px, 5vw, 80px); }
.hero .band .tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--sub);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
}
.hero .human-slot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: min(52%, 360px);
  pointer-events: none;
}
.hero .band.chaos-band .human-slot { right: clamp(40px, 12vw, 140px); }
.hero .band.calm-band .human-slot { left: clamp(40px, 12vw, 140px); }
.hero .human-slot img { height: 100%; width: auto; }

.hero .intro-wrap {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0 clamp(20px, 4vw, 48px);
}
.hero .intro-card {
  pointer-events: auto;
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 52px);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(11, 15, 23, 0.08);
}
.hero .intro-card h1 { font-size: clamp(48px, 7vw, 96px); }
.hero .intro-card .sub { margin: 14px auto 24px; text-align: center; }
.hero .intro-card .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.scatter-pill {
  position: absolute;
  padding: 8px 16px;
  background: var(--surface);
  border: 1.5px solid var(--chaos-bg-2);
  border-radius: 999px;
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 18px;
  color: var(--ink-2);
  transition: transform 0.2s ease;
  z-index: 2;
}
.scatter-pill:hover { transform: rotate(0deg) scale(1.04) !important; }
.scatter-pill.brand { background: var(--brand-50); color: var(--brand); border-color: var(--brand-100); }

/* hero scatter positions */
.hero .chaos-band .sp-a { top: 8%; left: 6%; transform: rotate(-8deg); }
.hero .chaos-band .sp-b { top: 20%; right: 12%; transform: rotate(6deg); }
.hero .chaos-band .sp-c { bottom: 12%; right: 30%; transform: rotate(-4deg); }
.hero .calm-band .sp-d { top: 14%; right: 8%; transform: rotate(4deg); }
.hero .calm-band .sp-e { bottom: 14%; left: 10%; transform: rotate(-3deg); }

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero .split { position: relative; grid-template-rows: auto auto; }
  .hero .band { min-height: 320px; }
  .hero .intro-wrap { position: relative; inset: auto; padding: 32px clamp(16px, 4vw, 32px); background: var(--surface); }
  .hero .human-slot { height: 180px; }
}

/* ------------------------------------------------------------
   Problem section — post-its
   ------------------------------------------------------------ */
.problem .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.problem .stickies {
  position: relative;
  height: clamp(380px, 50vw, 560px);
}
.sticky {
  position: absolute;
  padding: 16px 14px;
  background: #fef08a;
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 20px;
  color: var(--ink);
  width: 160px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.sticky:hover { transform: rotate(0deg) scale(1.05) !important; z-index: 10; }
.sticky.y { background: #fde68a; }
.sticky.p { background: #fbcfe8; }
.sticky.b { background: #bfdbfe; }
.sticky.g { background: #bbf7d0; }
.sticky.r { background: #fca5a5; }
.sticky.o { background: #fed7aa; }

.problem .human {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 380px;
}
.problem .human img { height: clamp(280px, 32vw, 420px); width: auto; }

.problem .caption-wrap { margin-top: 40px; }

@media (max-width: 860px) {
  .problem .grid { grid-template-columns: 1fr; }
  .problem .stickies { height: 320px; }
  .problem .human { min-height: 240px; }
}

/* ------------------------------------------------------------
   Feature sections
   ------------------------------------------------------------ */
.feature .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature.reverse .grid .copy { order: 2; }
.feature.reverse .grid .visual { order: 1; }
.feature .copy h2 { margin-bottom: 14px; }
.feature .copy .sub { margin-bottom: 24px; }
.feature .bullets {
  list-style: none;
  margin-bottom: 28px;
}
.feature .bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.feature .bullets li:last-child { border-bottom: none; }
.feature .bullets [data-lucide] {
  width: 20px; height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.4;
}
.feature .check-bubbles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.feature .check-bubbles .pill {
  background: var(--surface);
  border-color: var(--line);
}
.feature .check-bubbles [data-lucide] { color: #16a34a; }

@media (max-width: 860px) {
  .feature .grid { grid-template-columns: 1fr; }
  .feature.reverse .grid .copy { order: 1; }
  .feature.reverse .grid .visual { order: 2; }
}

/* Calendar mockup card */
.calendar-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: 0 20px 60px rgba(11, 15, 23, 0.08);
}
.calendar-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-card .head .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.calendar-card .head .title [data-lucide] { color: var(--brand); width: 22px; height: 22px; }
.calendar-card .head .month {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sub);
}
.calendar-card .grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-card .dow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--sub-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 4px;
}
.calendar-card .day {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
}
.calendar-card .day .dot {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 4px;
  border-radius: 999px;
}
.calendar-card .day.today {
  border: 2px solid var(--brand);
  background: var(--brand-50);
  color: var(--brand);
}
.calendar-card .day.today .dot { background: var(--brand); }
.calendar-card .day.b .dot { background: #3b82f6; }
.calendar-card .day.g .dot { background: #22c55e; }
.calendar-card .day.a .dot { background: #f59e0b; }
.calendar-card .day.p .dot { background: #8b5cf6; }

/* Inbox mockup */
.inbox-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 15, 23, 0.08);
}
.inbox-card .head {
  background: var(--ink);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inbox-card .head .title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.inbox-card .head .badge {
  background: var(--brand);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.inbox-card .row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.inbox-card .row:last-child { border-bottom: none; }
.inbox-card .av {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.inbox-card .av.pink { background: #fb7185; }
.inbox-card .av.blue { background: #60a5fa; }
.inbox-card .av.green { background: #34d399; }
.inbox-card .av.yellow { background: #fbbf24; }
.inbox-card .av .pl {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.inbox-card .av .pl [data-brand] { width: 10px; height: 10px; }
.inbox-card .body { flex: 1; min-width: 0; }
.inbox-card .body .nm { font-size: 14px; font-weight: 800; color: var(--ink); }
.inbox-card .body .msg {
  font-size: 13px;
  color: var(--sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inbox-card .ts { font-size: 12px; color: var(--sub-2); }

/* AI conversation mock */
.convo { display: flex; flex-direction: column; gap: 18px; }
.convo .incoming {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 90%;
}
.convo .incoming .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fecaca;
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.convo .incoming .bubble-msg {
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  border-top-left-radius: 4px;
  font-size: 15px;
  color: var(--ink-2);
}
.convo .ai-card {
  align-self: flex-end;
  max-width: 94%;
  background: linear-gradient(135deg, #fff, #fff5f4);
  border: 2px solid var(--brand);
  border-radius: 20px;
  border-top-right-radius: 4px;
  padding: 18px 20px;
}
.convo .ai-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.convo .ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.convo .ai-badge [data-lucide] { width: 12px; height: 12px; }
.convo .ai-card .note {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 16px;
  color: var(--sub);
}
.convo .ai-card .reply {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}
.convo .ai-card .actions { display: flex; gap: 8px; }
.convo .act {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.convo .act.send { background: var(--ink); color: #fff; }
.convo .act.edit { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.convo .act.reject { background: var(--surface); color: var(--sub); border: 1px solid var(--line); }
.convo .act [data-lucide] { width: 12px; height: 12px; stroke-width: 2.5; }

/* Team section */
.team .crew {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  margin: 48px 0;
}
.team .member {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 24px;
  width: 180px;
  text-align: center;
  transition: transform 0.2s ease;
}
.team .member:hover { transform: rotate(0deg) translateY(-4px) !important; }
.team .member .av {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
}
.team .member .nm {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 6px;
}
.team .member .role-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.team .m1 { transform: rotate(-4deg); }
.team .m2 { transform: rotate(3deg); }
.team .m3 { transform: rotate(-2deg); }
.team .m4 { transform: rotate(5deg); }

.team-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.team-bullets .item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.team-bullets [data-lucide] { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.team-bullets .item .t { font-weight: 800; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.team-bullets .item .d { font-size: 14px; color: var(--sub); }

/* ------------------------------------------------------------
   Built for — three strips
   ------------------------------------------------------------ */
.built-strip {
  padding: clamp(60px, 8vw, 100px) 0;
}
.built-strip .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.built-strip.reverse .grid .copy { order: 2; }
.built-strip.reverse .grid .visual { order: 1; }
.built-strip .illus {
  display: flex;
  justify-content: center;
}
.built-strip .illus img { height: clamp(220px, 28vw, 340px); width: auto; }

.bubble-cluster {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 20px;
}
.bubble-cluster .pill {
  border: 2px solid var(--ink);
  font-size: 26px;
  padding: 12px 22px;
}
.bubble-cluster .b1 { transform: rotate(-5deg); }
.bubble-cluster .b2 { transform: rotate(4deg); }
.bubble-cluster .b3 { transform: rotate(-3deg); }
.bubble-cluster .b4 { transform: rotate(6deg); }
.bubble-cluster .b5 { transform: rotate(-4deg); }

.workspaces-mock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 20px;
}
.workspaces-mock .tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
}
.workspaces-mock .tile .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.workspaces-mock .tile .name {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.workspaces-mock .tile .icons {
  display: flex;
  gap: 8px;
  color: var(--sub);
}
.workspaces-mock .tile [data-brand] { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .built-strip .grid { grid-template-columns: 1fr; }
  .built-strip.reverse .grid .copy { order: 1; }
  .built-strip.reverse .grid .visual { order: 2; }
}

/* ------------------------------------------------------------
   How it works — stepper
   ------------------------------------------------------------ */
.how .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: 60px;
  position: relative;
}
.how .steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px);
  opacity: 0.3;
  z-index: 0;
}
.how .step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}
.how .step .num {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 64px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.how .step .label {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 12px;
}
.how .step p {
  font-size: 15px;
  color: var(--sub);
}
.how .step .icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink-2);
}
.how .step .icons [data-brand] { width: 22px; height: 22px; }
.how .step .icons [data-lucide] { width: 22px; height: 22px; color: var(--brand); }

@media (max-width: 860px) {
  .how .steps { grid-template-columns: 1fr; }
  .how .steps::before { display: none; }
}

/* ------------------------------------------------------------
   Contact
   ------------------------------------------------------------ */
.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface);
}
.contact .left {
  background: var(--chaos-bg);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
}
.contact .left h2 { margin-bottom: 12px; }
.contact .left .sub { margin-bottom: 28px; }
.contact .info-pills { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact .info-pills .pill { font-size: 20px; }
.contact .info-pills .pill.i1 { transform: rotate(-3deg); }
.contact .info-pills .pill.i2 { transform: rotate(2deg); }
.contact .info-pills .pill.i3 { transform: rotate(-1deg); }
.contact .left .tiny-human {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 180px;
  pointer-events: none;
  opacity: 0.9;
}

.contact .right {
  padding: clamp(32px, 5vw, 56px);
  background: var(--surface);
}
.contact form { display: flex; flex-direction: column; gap: 18px; }
.contact .field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact .field input,
.contact .field select,
.contact .field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}
.contact .field input:focus,
.contact .field select:focus,
.contact .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238, 35, 27, 0.12);
}
.contact .field textarea { resize: vertical; min-height: 120px; }
.contact .field .errorlist {
  list-style: none;
  color: var(--brand);
  font-size: 13px;
  margin-top: 6px;
}
.contact .row-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact .helper {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: 18px;
  color: var(--sub);
}
.contact .sent-banner {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--brand-50);
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .sent-banner [data-lucide] { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .contact .grid { grid-template-columns: 1fr; }
  .contact .left .tiny-human { display: none; }
}

/* ------------------------------------------------------------
   Final CTA — choose calm
   ------------------------------------------------------------ */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
}
.final-cta .eyebrow { margin-bottom: 8px; }
.final-cta h2 { font-size: clamp(72px, 11vw, 170px); }
.final-cta .sub { margin: 18px auto 28px; text-align: center; }
.final-cta .bubble-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.final-cta .bubble-menu .pill {
  background: var(--surface);
  border: 2px solid var(--ink);
  font-size: 28px;
  padding: 12px 22px;
}
.final-cta .bubble-menu .p1 { transform: rotate(-5deg); }
.final-cta .bubble-menu .p2 { transform: rotate(4deg); }
.final-cta .bubble-menu .p3 { transform: rotate(-3deg); }
.final-cta .bubble-menu .p4 { transform: rotate(6deg); }
.final-cta .bubble-menu .p5 { transform: rotate(-4deg); }
.final-cta .bubble-menu .pill [data-lucide] { color: var(--brand); }

.final-cta .final-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.final-cta .final-row .human {
  height: clamp(180px, 22vw, 260px);
  width: auto;
  justify-self: center;
}
.final-cta .final-row .human.flip { transform: scaleX(-1); }
.final-cta .stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.final-cta .stage .mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.final-cta .stage .mark img { width: 36px; height: 36px; }
.final-cta .stage .mark .nm {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.final-cta .stage .url {
  font-family: 'Akaya Kanadaka', cursive;
  font-size: clamp(48px, 7vw, 82px);
  color: var(--brand);
  line-height: 1;
}
.final-cta .tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .final-cta .final-row { grid-template-columns: 1fr; }
  .final-cta .final-row .human { display: none; }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .col .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer .col .brand img { width: 28px; height: 28px; }
.footer .col .tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
}
.footer .col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer .col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s ease;
}
.footer .col ul a:hover { color: var(--brand); }
.footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer .bottom .socials { display: flex; gap: 14px; }
.footer .bottom .socials a { color: rgba(255,255,255,0.7); }
.footer .bottom .socials [data-brand] { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .footer .grid { grid-template-columns: 1fr 1fr; }
  .footer .bottom { flex-direction: column; gap: 12px; }
}

/* Brand icon size defaults */
[data-brand] { display: inline-flex; align-items: center; justify-content: center; }
[data-brand] svg { width: 100%; height: 100%; }
[data-lucide] { width: 20px; height: 20px; }
