/* ============================================================
   THE AI WORKFORCE — design system
   Clean / light / premium consultancy + no-BS editorial voice
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* warm neutral paper + ink */
  --paper:      oklch(0.989 0.006 85);
  --paper-2:    oklch(0.972 0.008 82);
  --paper-3:    oklch(0.955 0.010 80);
  --ink:        oklch(0.215 0.012 60);
  --ink-soft:   oklch(0.44 0.012 62);
  --ink-faint:  oklch(0.60 0.010 65);
  --line:       oklch(0.885 0.008 78);
  --line-soft:  oklch(0.925 0.007 80);

  /* single confident accent: clay */
  --clay:       oklch(0.605 0.135 42);
  --clay-deep:  oklch(0.495 0.120 40);
  --clay-soft:  oklch(0.93 0.035 55);
  --clay-tint:  oklch(0.965 0.018 60);
  --clay-hi:    oklch(0.84 0.10 55);

  /* dark "ink" sections */
  --ink-bg:     oklch(0.205 0.014 58);
  --ink-bg-2:   oklch(0.255 0.015 58);
  --ink-line:   oklch(0.36 0.015 58);
  --ink-paper:  oklch(0.93 0.008 75);
  --ink-dim:    oklch(0.70 0.010 70);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Schibsted Grotesk', -apple-system, system-ui, sans-serif;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --shadow: 0 1px 2px oklch(0.4 0.02 60 / 0.04), 0 8px 30px oklch(0.4 0.02 60 / 0.06);
  --shadow-lg: 0 2px 6px oklch(0.4 0.02 60 / 0.06), 0 24px 60px oklch(0.4 0.02 60 / 0.10);
}

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

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--clay); color: var(--paper); }

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

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 130px); }
section[id] { scroll-margin-top: 82px; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- type ---------- */
.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }

h1, h2, h3 { font-weight: 700; line-height: 1.04; letter-spacing: -0.022em; text-wrap: balance; }

.h1 { font-size: clamp(44px, 7.2vw, 92px); font-weight: 800; line-height: 0.98; }
.h2 { font-size: clamp(34px, 4.6vw, 62px); font-weight: 700; }
.h3 { font-size: clamp(23px, 2.4vw, 31px); font-weight: 700; letter-spacing: -0.018em; }

.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.h1 .serif-em, .h2 .serif-em { font-size: 1.04em; }

.lead { font-size: clamp(19px, 2vw, 23px); line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }
.lead--center { margin-inline: auto; text-align: center; }

.muted { color: var(--ink-soft); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 12px 28px oklch(0.6 0.13 42 / 0.32); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn .arw { transition: transform .2s; }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.989 0.006 85 / 0.78);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line-soft); box-shadow: 0 1px 0 oklch(0.4 0.02 60/0.03); }
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 18px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  position: relative; overflow: hidden;
}
.brand__mark::after {
  content:""; position:absolute; inset:0;
  background: var(--clay); mix-blend-mode: normal;
  clip-path: polygon(0 62%, 100% 32%, 100% 100%, 0 100%);
  opacity: .9;
}
.brand__mark span { position: relative; z-index: 1; }
.nav__links { position: relative; display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.nav__links a { position: relative; display: inline-grid; color: var(--ink-soft); transition: color .28s ease; }
.nav__links a > span { grid-area: 1 / 1; }
.nav__links a::after { content: attr(data-label); grid-area: 1 / 1; font-weight: 700; visibility: hidden; pointer-events: none; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active > span { font-weight: 700; }
.nav__ind {
  position: absolute; left: 0; height: 2px; width: 0; border-radius: 2px;
  background: var(--clay); opacity: 0;
  transition: transform .42s cubic-bezier(.5,1.5,.4,1), width .42s cubic-bezier(.5,1.5,.4,1), opacity .25s ease;
  will-change: transform, width; pointer-events: none;
}
.nav__cta { display: flex; align-items: center; gap: 16px; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ---------- hero ---------- */
.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(40px, 5vw, 70px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 7px 7px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper-2);
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
}
.pill b { color: var(--ink); font-weight: 600; }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 4px var(--clay-soft); }
.pill__tag { background: var(--ink); color: var(--paper); font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.02em; }

.hero h1 { margin: 26px 0 0; }
.hero__sub { margin-top: 22px; font-size: clamp(18px, 1.9vw, 22px); color: var(--ink-soft); max-width: 40ch; line-height: 1.45; }
.hero__sub b { color: var(--ink); font-weight: 600; }
.hero__actions { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__meta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hbadge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper-2); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.hbadge svg { width: 15px; height: 15px; color: var(--clay); flex: none; }
.dotmark { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }

/* hero card: a "build" panel */
.buildcard {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
  display: flex; flex-direction: column; min-height: 460px; align-self: center; width: 100%;
}
.buildcard__bar { display:flex; align-items:center; gap:7px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.buildcard__bar i { width: 10px; height:10px; border-radius:50%; background: var(--line); }
.buildcard__bar i:nth-child(1){ background: oklch(0.78 0.13 40);}
.buildcard__bar i:nth-child(2){ background: oklch(0.84 0.10 95);}
.buildcard__bar i:nth-child(3){ background: oklch(0.78 0.10 150);}
.buildcard__bar span { margin-left: 8px; font-size: 12.5px; color: var(--ink-faint); font-family: var(--sans); letter-spacing: 0.02em; }
.buildcard__body { padding: 22px 22px 8px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.chatline { display: flex; gap: 12px; align-items: flex-start; }
.chatline__who { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 800; letter-spacing: 0.02em; }
.chatline__who.u { background: var(--paper-3); color: var(--ink-soft); }
.chatline__who.a { background: var(--ink); color: var(--paper); }
.chatline__bubble { border-radius: 4px 14px 14px 14px; padding: 11px 15px; max-width: 86%; }
.chatline[data-role="u"] .chatline__bubble { background: var(--paper-3); }
.chatline[data-role="a"] .chatline__bubble { background: var(--clay-tint); border: 1px solid var(--clay-soft); }
.ctext { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.chatline[data-role="a"] .ctext { color: var(--ink); }
.ctext b { color: var(--ink); font-weight: 700; }
.chatline[data-role="a"] .ctext b { color: var(--clay-deep); }

/* chat animation states */
.cmsg { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.3,1); }
.cmsg.show { opacity: 1; transform: none; }
.cmsg .ctext { display: none; }
.cmsg.typed .ctext { display: block; }
.typing { display: none; gap: 5px; padding: 4px 2px; }
.cmsg.show:not(.typed) .typing { display: inline-flex; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); opacity: .4; animation: typ 1.2s infinite ease-in-out; }
.typing i:nth-child(2){ animation-delay: .18s; }
.typing i:nth-child(3){ animation-delay: .36s; }
@keyframes typ { 0%,60%,100%{ transform: translateY(0); opacity:.35 } 30%{ transform: translateY(-4px); opacity:1 } }

/* chat input bar */
.buildcard__input { display: flex; align-items: center; gap: 12px; padding: 12px 16px; margin: 0 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2); }
.ci__field { flex: 1; font-size: 14px; color: var(--ink-faint); }
.ci__send { width: 32px; height: 32px; flex: none; border-radius: 9px; background: var(--clay); color: #fff; display: grid; place-items: center; font-size: 16px; font-weight: 700; }
.buildcard__foot { border-top: 1px solid var(--line-soft); padding: 12px 20px 14px; margin-top: 14px; display:flex; align-items:center; justify-content: space-between; gap: 12px; background: var(--paper-2); white-space: nowrap; }
.buildcard__foot .lbl { font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buildcard__foot .statusdot { flex: none; }
.statusdot { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color: var(--clay-deep); }
.statusdot i { width:7px; height:7px; border-radius:50%; background: var(--clay); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.35 } }
.typedot { display:inline-block; width:2px; height:1.05em; background: var(--clay-deep); margin-left:3px; vertical-align:-3px; border-radius:1px; animation: caret 1.06s infinite; }
@keyframes caret { 0%,42% { opacity: 1; } 50%,92% { opacity: 0; } 100% { opacity: 1; } }

/* ---------- prominent calendar band (focus carousel) ---------- */
.bigcal-band { border-top: 1px solid var(--line-soft); background: var(--paper-2); }
.bigcal-band .wrap { padding-block: clamp(38px, 6vw, 66px); }
.bigcal__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(26px, 4vw, 40px); }
.bigcal__eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep); font-weight: 700; }
.bigcal__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-top: 10px; line-height: 1.05; }
.bigcal__nav { display: flex; gap: 10px; flex: none; }
.bigcal__nav button { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; font-size: 22px; line-height: 1; display: grid; place-items: center; transition: border-color .18s, transform .18s, opacity .18s; }
.bigcal__nav button:hover:not(:disabled) { border-color: var(--ink); transform: translateY(-2px); }
.bigcal__nav button:disabled { opacity: .3; cursor: default; }

.bigcal__viewport { position: relative; overflow: hidden; padding-block: 14px; }
.bigcal__viewport::before, .bigcal__viewport::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(30px, 10vw, 120px); z-index: 3; pointer-events: none; }
.bigcal__viewport::before { left: 0; background: linear-gradient(90deg, var(--paper-2), transparent); }
.bigcal__viewport::after { right: 0; background: linear-gradient(270deg, var(--paper-2), transparent); }
.bigcal__track { display: flex; gap: clamp(12px, 2vw, 22px); will-change: transform; transition: transform .55s cubic-bezier(.4,1.1,.4,1); }

.bcell { flex: none; width: clamp(146px, 17vw, 184px); display: flex; flex-direction: column; align-items: center; gap: 14px; background: none; border: none; font-family: inherit; cursor: pointer; padding: 0;
  transform: scale(.8); opacity: .4; transition: transform .5s cubic-bezier(.4,1.1,.4,1), opacity .5s ease; }
.bcell.is-near { transform: scale(.9); opacity: .72; }
.bcell.is-focus { transform: scale(1.06); opacity: 1; }
.bcell__tile { width: 100%; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow); text-align: center; transition: box-shadow .3s, border-color .3s; }
.bcell.is-focus .bcell__tile { box-shadow: var(--shadow-lg); border-color: var(--clay-soft); }
.bcell__mo { background: var(--paper-3); color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 0; transition: background .3s, color .3s; }
.bcell.is-focus .bcell__mo { background: var(--clay); color: #fff; }
.bcell__day { font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 6vw, 66px); line-height: 1; padding: 16px 0 4px; color: var(--ink); }
.bcell__dow { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-faint); padding-bottom: 16px; }
.bcell__status { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; border: 1px solid transparent; }
/* states */
.bcell--taken { cursor: default; }
.bcell--taken .bcell__day { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--line); }
.bcell--taken .bcell__dow { color: var(--ink-faint); }
.bcell--taken .bcell__status { background: var(--paper-2); border-color: var(--line); color: var(--ink-faint); }
.bcell--open .bcell__status { background: var(--clay-tint); border-color: var(--clay-soft); color: var(--clay-deep); }
.bcell--open.is-focus .bcell__status { background: var(--clay); border-color: var(--clay); color: #fff; }

.bigcal__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: clamp(24px, 3vw, 36px); flex-wrap: wrap; }
.bigcal__hint { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-faint); }
.bigcal__cta { font-size: 16px; font-weight: 600; color: var(--clay-deep); white-space: nowrap; }
.bigcal__cta:hover { text-decoration: underline; }
.bigcal__cta.is-muted { color: var(--ink-faint); pointer-events: none; }

/* ---------- logo bar ---------- */
.logobar { border-block: 1px solid var(--line-soft); background: var(--paper-2); }
.logobar__lbl { text-align: center; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 26px; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 56px); }
.logo-ph {
  height: 30px; min-width: 96px; border-radius: 6px;
  background:
    repeating-linear-gradient(115deg, transparent 0 7px, oklch(0.55 0.01 60 / 0.07) 7px 8px);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px; color: var(--ink-faint); letter-spacing: 0.04em;
  opacity: .85;
}

/* ---------- reframe / big statement ---------- */
.statement { text-align: center; }
.statement .h2 { max-width: 18ch; margin: 0 auto; }
.statement__body { margin: 26px auto 0; max-width: 52ch; font-size: clamp(18px,1.9vw,21px); color: var(--ink-soft); }

/* generic eyebrow head block */
.head { max-width: 62ch; }
.head--center { margin-inline: auto; text-align: center; }
.head .h2 { margin-top: 18px; }
.head .lead { margin-top: 18px; }
.head--center .lead { margin-inline: auto; }

/* ---------- DIY / no-bs split ---------- */
.diy { background: var(--ink-bg); color: var(--ink-paper); }
.diy .kicker { color: var(--clay-hi); }
.diy .kicker::before { background: var(--clay); }
.diy__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px,5vw,72px); align-items: center; }
@media (max-width: 880px){ .diy__grid { grid-template-columns: 1fr; gap: 36px; } }
.diy .h2 { color: var(--paper); }
.diy .h2 .serif-em { color: var(--clay-hi); }
.diy__body { margin-top: 22px; font-size: clamp(18px,1.9vw,21px); color: var(--ink-dim); line-height: 1.55; max-width: 46ch; }
.diy__body b { color: var(--ink-paper); font-weight: 600; }
.diy__list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.diy__list li { display: flex; gap: 16px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--ink-line); }
.diy__list li:first-child { border-top: 1px solid var(--ink-line); }
.diy__list .n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--clay-hi); flex: none; width: 36px; }
.diy__list .t { font-size: 16.5px; color: var(--ink-dim); line-height: 1.45; }
.diy__list .t b { color: var(--paper); font-weight: 600; }

/* ---------- VIP difference / versus ---------- */
.vsgrid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: clamp(14px, 2.2vw, 26px); margin-top: clamp(40px, 5vw, 58px); }
@media (max-width: 820px){ .vsgrid { grid-template-columns: 1fr; gap: 20px; } }
.vscard { border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; }
.vscard--muted { background: var(--paper-2); border: 1px solid var(--line); }
.vscard--hero { background: var(--ink-bg); border: 1px solid var(--ink-bg); color: var(--ink-paper); box-shadow: var(--shadow-lg); }
.vscard__tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.vscard--hero .vscard__tag { color: var(--clay-hi); }
.vscard__title { font-size: clamp(21px, 2.3vw, 27px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 24px; }
.vscard--hero .vscard__title { color: var(--paper); }
.vscard__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
.vscard__list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.vscard--hero .vscard__list li { color: var(--ink-dim); }
.vscard__list .x { color: var(--ink-faint); flex: none; font-weight: 700; }
.vscard__list .c { color: var(--clay-hi); flex: none; font-weight: 700; }
.vs-mark {
  align-self: center; justify-self: center;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-faint);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* ---------- offer / three parts ---------- */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
@media (max-width: 920px){ .journey { grid-template-columns: 1fr; } }
.jcard {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; position: relative;
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.jcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--clay-soft); }
.jcard--feature { background: var(--ink-bg); border-color: var(--ink-bg); color: var(--ink-paper); }
.jcard__step { display:flex; align-items:center; justify-content: space-between; margin-bottom: 22px; }
.jcard__num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--clay); line-height: 1; }
.jcard--feature .jcard__num { color: var(--clay-hi); }
.jcard__tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.jcard--feature .jcard__tag { color: var(--clay-hi); }
.jcard h3 { font-size: 26px; }
.jcard--feature h3 { color: var(--paper); }
.jcard__price { margin: 14px 0 6px; font-size: 17px; font-weight: 700; color: var(--ink); display:flex; align-items: baseline; gap: 8px; }
.jcard--feature .jcard__price { color: var(--paper); }
.jcard__price .per { font-size: 13.5px; font-weight: 500; color: var(--ink-faint); }
.jcard--feature .jcard__price .per { color: oklch(0.75 0.01 70); }
.jcard__desc { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin-top: 8px; }
.jcard--feature .jcard__desc { color: var(--ink-dim); }
.jcard__list { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.jcard--feature .jcard__list { border-color: var(--ink-line); }
.jcard__list li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); }
.jcard--feature .jcard__list li { color: var(--ink-dim); }
.jcard__list .tick { color: var(--clay); flex: none; font-weight: 700; margin-top: 1px; }
.jcard--feature .jcard__list .tick { color: var(--clay-hi); }
.jcard__conn { text-align:center; color: var(--ink-faint); font-size: 16px; margin-top: 18px; font-style: italic; font-family: var(--serif); }

/* progression / unlocking */
.jcard--gated .jcard__step { margin-bottom: 14px; }
.jcard__gate {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  margin-bottom: 18px; padding: 5px 11px 5px 9px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--clay-deep); background: var(--clay-tint);
  border: 1px solid var(--clay-soft); border-radius: 999px;
}
.jcard__gate b { font-weight: 700; }
.jcard__gate-ic {
  width: 15px; height: 15px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: var(--clay); color: #fff; font-size: 10px; line-height: 1;
}
.jcard__arrow {
  position: absolute; left: -29px; top: 30px; z-index: 3;
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; background: var(--clay); color: #fff;
  font-size: 19px; font-weight: 700; line-height: 1;
  box-shadow: 0 5px 16px oklch(0.55 0.13 45 / 0.28); border: 3px solid var(--paper-2);
}
@media (max-width: 920px){
  .jcard__arrow { left: 50%; top: -27px; transform: translateX(-50%) rotate(90deg); }
}

/* ---------- numbered "what you leave with" ---------- */
.leave { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(40px, 6vw, 90px); margin-top: 50px; }
@media (max-width: 800px){ .leave { grid-template-columns: 1fr; } }
.leave__item { display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.leave__n { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--clay); line-height: 1; flex: none; width: 42px; }
.leave__item h3 { font-size: 20px; margin-bottom: 6px; }
.leave__item p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- timeline ---------- */
.timeline { margin-top: 50px; border-top: 1px solid var(--line); }
.trow { display: grid; grid-template-columns: 150px 1fr; gap: clamp(20px,4vw,52px); padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; transition: background .2s; position: relative; }
.trow:hover { background: var(--clay-tint); }
.trow__time { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 15px; color: var(--clay-deep); padding-top: 3px; }
.trow__time .end { color: var(--ink-faint); font-weight: 500; display: block; font-size: 13.5px; }
.trow__owner { display: inline-flex; align-items:center; gap: 8px; font-size: 12px; font-weight:600; letter-spacing:0.04em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.trow__owner .av { width: 18px; height:18px; border-radius: 50%; background: var(--clay-soft); color: var(--clay-deep); display:grid; place-items:center; font-size: 9px; font-weight:800; }
.trow h3 { font-size: 21px; margin-bottom: 6px; }
.trow p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; max-width: 60ch; }
@media (max-width: 640px){ .trow { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- pre-work / before your day ---------- */
.prework { background: var(--clay-tint); border: 1px solid var(--clay-soft); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); margin-top: 44px; }
.prework__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 32px; margin-bottom: clamp(26px, 3vw, 34px); }
.prework__badge { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); display: inline-flex; align-items: center; gap: 9px; flex: none; }
.prework__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }
.prework__lead { flex: 1; min-width: 280px; font-size: 16.5px; line-height: 1.5; color: var(--ink-soft); max-width: 64ch; }
.prework__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 34px); }
@media (max-width: 760px){ .prework__grid { grid-template-columns: 1fr; gap: 24px; } }
.pwstep { border-top: 2px solid var(--clay-soft); padding-top: 16px; }
.pwstep__n { font-family: var(--serif); font-style: italic; font-size: 25px; color: var(--clay); line-height: 1; }
.pwstep h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 9px 0 7px; }
.pwstep p { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.prework__then { text-align: center; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-faint); margin: 28px 0 0; }
.prework + .prework__then + .timeline { margin-top: 30px; }

/* ---------- comparison ---------- */
.compare { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.crow { display: grid; grid-template-columns: 1.5fr 1fr 1fr; align-items: center; }
.crow + .crow { border-top: 1px solid var(--line-soft); }
.crow > div { padding: 17px clamp(14px,2.4vw,26px); }
.crow__head > div { padding-block: 20px; font-weight: 700; }
.crow__head { background: var(--paper-2); }
.crow.crow__head .col-you { background: var(--ink); color: var(--paper); border-radius: 0; font-size: 17px; }
.crow.crow__head .col-diy { color: var(--ink-soft); font-size: 15px; font-weight: 600; }
.crow__feat { font-size: 15.5px; font-weight: 500; }
.crow .col-you { background: oklch(0.605 0.135 42 / 0.06); display: flex; justify-content: center; }
.crow .col-diy { display: flex; justify-content: center; }
.yes { color: var(--clay-deep); font-weight: 700; }
.maybe { color: var(--ink-faint); font-size: 14px; font-weight: 500; }
.no { color: var(--line); font-size: 18px; }
.ck { width: 22px; height: 22px; }
@media (max-width: 680px){
  .crow { grid-template-columns: 1.4fr 0.6fr 0.6fr; }
  .crow__feat { font-size: 13.5px; }
  .crow > div { padding: 13px 12px; }
}

/* ---------- team ---------- */
.team { background: var(--paper-2); }
.teamgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px,3vw,30px); margin-top: 50px; }
.teamgrid .member { grid-column: span 4; }
.teamgrid .member:nth-child(n+4) { grid-column: span 3; }
@media (max-width: 900px){ .teamgrid { grid-template-columns: repeat(2,1fr); } .teamgrid .member, .teamgrid .member:nth-child(n+4){ grid-column: auto; } }
@media (max-width: 560px){ .teamgrid { grid-template-columns: 1fr; } .teamgrid .member, .teamgrid .member:nth-child(n+4){ grid-column: auto; } }
.member { display: flex; flex-direction: column; }
.member__photo {
  aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(125deg, oklch(0.93 0.012 70) 0 14px, oklch(0.90 0.014 65) 14px 28px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.member__photo .label {
  font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-faint); background: var(--paper); padding: 6px 11px; border-radius: 6px; border: 1px solid var(--line);
}
.member__photo .initials {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--serif); font-style: italic; font-size: 40px; color: oklch(0.55 0.04 60 / 0.5); line-height: 0.8;
}
.member__photo--img { background: none; }
.member__photo--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member__name { margin-top: 16px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.member__role { margin-top: 3px; font-size: 14px; color: var(--clay-deep); font-weight: 600; }
.member__bio { margin-top: 11px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.member__leads { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 7px; }
.chip { font-size: 12px; font-weight: 500; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

/* ---------- pricing / reserve ---------- */
.reserve { background: var(--paper); }
.reserve__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,46px); margin-top: 44px; justify-items: center; }

/* ---- horizontal calendar timeline ---- */
.cal { width: 100%; margin-top: 50px; }
.cal__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 6px; }
.cal__hint { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.01em; }
.cal__hint b { color: var(--clay-deep); font-weight: 600; }
.cal__nav { display: flex; gap: 10px; flex: none; }
.cal__nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink); cursor: pointer; font-size: 17px;
  display: grid; place-items: center; transition: border-color .18s, transform .18s, background .18s, opacity .18s;
}
.cal__nav button:hover:not(:disabled) { border-color: var(--ink); transform: translateY(-1px); }
.cal__nav button:disabled { opacity: .35; cursor: default; }

.cal__track {
  position: relative; display: flex; gap: 0;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  padding: 22px 0 6px; scrollbar-width: none; scroll-snap-type: x proximity;
}
.cal__track::-webkit-scrollbar { display: none; }
.cal__line { display: none; }

.cd {
  position: relative; z-index: 1; flex: none; width: clamp(150px, 17vw, 196px);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: none; border: none; cursor: pointer; font-family: inherit; padding: 0 8px;
  scroll-snap-align: center;
  opacity: 0; transform: translateY(12px); animation: cdIn .5s cubic-bezier(.2,.7,.3,1) forwards;
}
.cd::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1.5px; background: var(--line); z-index: -1; }
@keyframes cdIn { to { opacity: 1; transform: none; } }
.cd__dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--paper);
  border: 2px solid var(--line); box-shadow: 0 0 0 5px var(--paper); transition: all .2s;
}
.cd__dow { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-faint); margin-top: 4px; }
.cd__date { font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); font-weight: 400; letter-spacing: -0.01em; line-height: 1; color: var(--ink); transition: color .2s; }
.cd__date .d { display: block; }
.cd__pill {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; border: 1px solid transparent; transition: all .2s; margin-top: 3px;
}

/* states */
.cd--past { cursor: default; }
.cd--past .cd__date { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--line); }
.cd--past .cd__dow, .cd--past .cd__pill { color: var(--ink-faint); }
.cd--past .cd__pill { background: var(--paper-3); border-color: var(--line-soft); }

.cd--taken { cursor: default; }
.cd--taken .cd__date { color: var(--ink-soft); }
.cd--taken .cd__dot { border-color: var(--ink-faint); background: var(--paper-3); }
.cd--taken .cd__pill { background: var(--paper-2); border-color: var(--line); color: var(--ink-faint); }

.cd--open .cd__dot { border-color: var(--clay); }
.cd--open:hover .cd__dot { box-shadow: 0 0 0 5px var(--paper), 0 0 0 9px var(--clay-soft); }
.cd--open .cd__pill { background: var(--clay-tint); border-color: var(--clay-soft); color: var(--clay-deep); }
.cd--open:hover .cd__date { color: var(--clay-deep); }

.cd.is-sel .cd__dot { background: var(--clay); border-color: var(--clay); box-shadow: 0 0 0 5px var(--paper), 0 0 0 9px var(--clay-soft); }
.cd.is-sel .cd__date { color: var(--clay-deep); }
.cd.is-sel .cd__pill { background: var(--clay); border-color: var(--clay); color: #fff; }

/* the first open date pulses to draw the eye */
.cd--next .cd__dot { animation: dotPulse 2s ease-in-out infinite; }
.cd--next.is-sel .cd__dot { animation: none; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px var(--clay-soft); }
  50% { box-shadow: 0 0 0 5px var(--paper), 0 0 0 11px oklch(0.605 0.135 42 / 0); }
}
.cal__foot { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-top: 14px; }

.checkout {
  background: var(--ink-bg); color: var(--ink-paper); border-radius: var(--r-lg); padding: 36px; width: 100%; max-width: 580px;
  box-shadow: var(--shadow-lg);
}
.checkout__lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-hi); font-weight: 700; }
.checkout__name { font-size: 26px; font-weight: 700; color: var(--paper); margin-top: 8px; letter-spacing: -0.02em; }
.checkout__when { font-size: 15px; color: var(--ink-dim); margin-top: 6px; }
.checkout__price { display: flex; align-items: baseline; gap: 12px; margin: 22px 0; padding-block: 22px; border-block: 1px solid var(--ink-line); }
.checkout__price .amt { font-size: 46px; font-weight: 800; color: var(--paper); letter-spacing: -0.03em; }
.checkout__price .note { font-size: 14px; color: var(--ink-dim); }
.checkout__incl { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.checkout__incl li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-dim); }
.checkout__incl .tick { color: var(--clay-hi); flex: none; font-weight: 700; }
.reserve__btns { display: flex; flex-direction: column; gap: 10px; }
.reserve__btns .btn { width: 100%; justify-content: center; }
.checkout__secure { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; display:flex; align-items:center; justify-content:center; gap:7px; }

.guarantee { margin-top: 26px; display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--paper-2); }
.guarantee__icon { width: 38px; height: 38px; border-radius: 9px; background: var(--clay-soft); color: var(--clay-deep); display:grid; place-items:center; flex:none; font-weight:800; }
.guarantee h4 { font-size: 15px; margin-bottom: 3px; }
.guarantee p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px,5vw,70px); margin-top: 10px; }
@media (max-width: 820px){ .faq { grid-template-columns: 1fr; gap: 28px; } }
.faqlist { display: flex; flex-direction: column; }
.faqitem { border-top: 1px solid var(--line); }
.faqitem:last-child { border-bottom: 1px solid var(--line); }
.faqq { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 24px 4px; font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.faqq:hover { color: var(--clay-deep); }
.faqq .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s; }
.faqq .ic::before, .faqq .ic::after { content:""; position:absolute; background: var(--clay); border-radius: 2px; inset: 0; margin: auto; }
.faqq .ic::before { width: 14px; height: 2px; }
.faqq .ic::after { width: 2px; height: 14px; transition: transform .3s; }
.faqitem.open .faqq .ic::after { transform: rotate(90deg); }
.faqa { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faqa__in { padding: 0 4px 24px; font-size: 16px; color: var(--ink-soft); line-height: 1.6; max-width: 58ch; }

/* ---------- closing ---------- */
.closing { background: var(--ink-bg); color: var(--ink-paper); text-align: center; position: relative; overflow: hidden; }
.closing__glow { position:absolute; width: 700px; height: 700px; border-radius:50%; left:50%; top: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, oklch(0.605 0.135 42 / 0.20), transparent 62%); pointer-events:none; }
.closing__in { position: relative; z-index: 1; }
.closing .h2 { color: var(--paper); max-width: 20ch; margin-inline: auto; }
.closing .h2 .serif-em { color: var(--clay-hi); }
.closing p { color: var(--ink-dim); margin: 22px auto 0; max-width: 50ch; font-size: clamp(17px,1.9vw,20px); }
.closing .hero__actions { justify-content: center; }
.closing__fine { margin-top: 22px; font-size: 13.5px; color: var(--ink-faint); }

/* ---------- footer ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer__in { display:flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; padding-block: 50px; }
.footer__brand { max-width: 30ch; }
.footer__brand p { font-size: 14px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
.footer__col h5 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; font-weight: 700; }
.footer__col a { display:block; font-size: 14.5px; color: var(--ink-soft); padding: 5px 0; }
.footer__col a:hover { color: var(--ink); }
.footer__legal { border-top: 1px solid var(--line-soft); padding-block: 22px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-faint); }

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


/* ---- feedback revision tweaks ---- */
.guarantee h4.guarantee__title--dark { color: var(--ink); }
.prework__then--big { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); color: var(--ink); margin-top: 34px; }
#day .head .h2 { margin-top: 14px; }
