/* LeftOnHold Labs — site styles */
:root {
  --ground: #eef1f4;
  --surface: #f7f9fb;
  --ink: #0b1b2b;
  --ink-2: #33475b;
  --muted: #5b6b7b;
  --line: #c9d2db;
  --line-strong: #9fb0c0;
  --answer: #1b9e5a;
  --answer-ink: #0e6b3b;
  --hold: #d64545;
  --shadow: 0 24px 60px -30px rgba(11, 27, 43, .35);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #0b1116;
    --surface: #121a22;
    --ink: #e8eef3;
    --ink-2: #b7c4d0;
    --muted: #93a2b1;
    --line: #24313d;
    --line-strong: #3a4a59;
    --answer: #35c776;
    --answer-ink: #7fe0a8;
    --hold: #ef6b6b;
    --shadow: 0 24px 60px -30px rgba(0, 0, 0, .8);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ground: #0b1116;
  --surface: #121a22;
  --ink: #e8eef3;
  --ink-2: #b7c4d0;
  --muted: #93a2b1;
  --line: #24313d;
  --line-strong: #3a4a59;
  --answer: #35c776;
  --answer-ink: #7fe0a8;
  --hold: #ef6b6b;
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, .8);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-variation-settings: "wdth" 100;
  font-size: 17px;
  line-height: 1.55;
  padding-inline: clamp(16px, 5vw, 72px);
  padding-block: 0 64px;
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--answer); outline-offset: 3px; }
::selection { background: var(--answer); color: #fff; }

.wrap { max-width: 1240px; margin-inline: auto; }
.mono {
  font-family: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-variant-numeric: tabular-nums;
}
.label {
  font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* header */
.top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  text-decoration: none;
  font-weight: 800;
  font-variation-settings: "wdth" 112;
  letter-spacing: -.02em;
  font-size: 20px;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.wordmark small {
  font-weight: 500;
  font-variation-settings: "wdth" 100;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.top nav { display: flex; gap: 26px; }
.top nav a { text-decoration: none; font-size: 15px; color: var(--ink-2); }
.top nav a:hover { color: var(--ink); }
@media (max-width: 640px) { .top nav a:not(.keep) { display: none; } }

/* hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-block: clamp(48px, 8vw, 104px) clamp(40px, 6vw, 80px);
}
.hero h1 {
  margin: 0;
  font-weight: 800;
  font-variation-settings: "wdth" 118;
  letter-spacing: -.035em;
  line-height: .96;
  font-size: clamp(44px, 7.4vw, 108px);
  text-wrap: balance;
}
.hero h1 .strike { position: relative; white-space: nowrap; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -.02em; right: -.02em; top: 54%;
  height: .06em; background: var(--hold); transform: rotate(-2deg);
}
.hero p.lede {
  max-width: 34em;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-2);
  margin: 28px 0 0;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 20px; border: 1px solid var(--ink); border-radius: 2px;
  background: var(--ink); color: var(--ground);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.answer { background: var(--answer); border-color: var(--answer); color: #fff; }
.hint { color: var(--muted); font-size: 14px; }

/* the timer */
.timer {
  border-top: 1px solid var(--line-strong);
  padding-top: 18px;
  display: grid; gap: 6px;
  margin-top: 44px;
}
.timer .read {
  font-size: clamp(56px, 8vw, 128px);
  line-height: .9; letter-spacing: -.04em; font-weight: 500;
  color: var(--ink);
}
.timer .read.done { color: var(--answer); }
.timer .status { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); min-height: 22px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--answer); box-shadow: 0 0 0 0 rgba(27,158,90,.5); }
.dot.ring { animation: pulse 1.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(27,158,90,.45);} 100% { box-shadow: 0 0 0 14px rgba(27,158,90,0);} }
.timer .foot { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 10px; }
.timer .foot div { display: grid; gap: 2px; }
.timer .foot b { font-weight: 500; font-size: 15px; color: var(--ink); }

/* transcript */
.call {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  display: grid; gap: 14px;
}
.call header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.call header b { font-weight: 600; font-size: 15px; }
.call ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.call li { display: grid; grid-template-columns: 58px 1fr; gap: 12px; align-items: start; font-size: 15px; line-height: 1.45; }
.call li .who { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 3px; font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace; }
.call li.agent .who { color: var(--answer-ink); }
.call li p { margin: 0; color: var(--ink-2); }
.call li.agent p { color: var(--ink); }
.call footer { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 12px; border-top: 1px solid var(--line); padding-top: 12px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; align-items: start; }
}

/* sections */
section.block { border-top: 1px solid var(--line); padding-block: clamp(44px, 6vw, 88px); }
.block .head { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 24px 48px; align-items: start; margin-bottom: clamp(28px, 4vw, 56px); }
.block h2 {
  margin: 0; font-weight: 800; font-variation-settings: "wdth" 112; letter-spacing: -.03em;
  line-height: 1.02; font-size: clamp(30px, 3.8vw, 52px); text-wrap: balance;
}
.block .head p { margin: 0; max-width: 36em; color: var(--ink-2); font-size: 18px; align-self: end; }
@media (max-width: 900px) { .block .head { grid-template-columns: 1fr; } }

/* agents spec sheet */
.sheet { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); }
.sheet > div { padding: 26px 0 0; }
.sheet > div + div { border-left: 1px solid var(--line); padding-left: 40px; }
.sheet h3 { margin: 0 0 18px; font-size: 24px; font-weight: 700; letter-spacing: -.02em; font-variation-settings: "wdth" 108; }
.sheet dl { margin: 0; display: grid; grid-template-columns: 110px 1fr; gap: 12px 18px; }
.sheet dt { font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.sheet dd { margin: 0; color: var(--ink-2); }
@media (max-width: 760px) {
  .sheet { grid-template-columns: 1fr; }
  .sheet > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); margin-top: 26px; }
}

/* steps (a real sequence) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); }
.steps > div { padding: 26px 32px 8px 0; }
.steps > div + div { border-left: 1px solid var(--line); padding-left: 32px; }
.steps .n { font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace; font-size: 13px; color: var(--muted); }
.steps h3 { margin: 10px 0 10px; font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.steps p { margin: 0; color: var(--ink-2); font-size: 16px; }
.steps .dur { margin-top: 14px; font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace; font-size: 12px; color: var(--muted); letter-spacing: .06em; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .steps > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
}

/* refusals */
.wont { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.wont li { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 8px 48px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.wont li b { font-weight: 700; font-size: 20px; letter-spacing: -.015em; }
.wont li p { margin: 0; color: var(--ink-2); max-width: 40em; }
@media (max-width: 760px) { .wont li { grid-template-columns: 1fr; } }

/* contact */
.contact { border-top: 1px solid var(--line-strong); padding-block: clamp(56px, 8vw, 112px); }
.contact .label { margin-bottom: 18px; }
.contact a.mail {
  display: inline-block; text-decoration: none;
  font-weight: 800; font-variation-settings: "wdth" 112; letter-spacing: -.035em; line-height: 1;
  font-size: clamp(30px, 6.2vw, 92px);
  border-bottom: 3px solid var(--answer);
  padding-bottom: .06em;
  word-break: break-all;
}
.contact a.mail:hover { color: var(--answer-ink); }
.contact p { margin: 22px 0 0; max-width: 38em; color: var(--ink-2); font-size: 18px; }

/* footer */
.foot-bar {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  color: var(--muted); font-size: 14px;
}
.foot-bar nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-bar a { color: var(--muted); text-decoration: none; }
.foot-bar a:hover { color: var(--ink); }

/* legal pages */
.doc { max-width: 72ch; padding-block: clamp(40px, 6vw, 80px) 40px; }
.doc h1 { font-weight: 800; font-variation-settings: "wdth" 112; letter-spacing: -.03em; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.02; margin: 0 0 10px; }
.doc .meta { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 22px; letter-spacing: -.015em; margin: 36px 0 10px; }
.doc p, .doc li { color: var(--ink-2); }
.doc ul { padding-left: 1.2em; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
