/* Skerry — operator desk. Paper, ink, one signal. No glow. No purple. */

:root {
  --ink: #121412;
  --paper: #F3EFE6;
  --snow: #FFFcf7;
  --rule: #D6CFC2;
  --signal: #C45C26;
  --forest: #24382C;
  --danger: #8B2E1F;
  --mute: #5E5A53;
  --text: 42.5rem;   /* 680px */
  --wide: 70rem;     /* 1120px */
  --radius: 2px;
  --hair: 1px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-optical-sizing: auto;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--signal);
}

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

/* Type */

.ui,
nav,
button,
.btn,
label,
input,
select,
textarea,
.price-figure,
.wordmark,
h1, h2, h3,
.step-num,
.nav-cta {
  font-family: "Satoshi", "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.mono,
.eyebrow,
.section-label,
.stamp,
.coverage,
.proof-kicker,
.ticket time,
.ticket .code,
.sources,
.form-note,
.helper,
.field-hint,
legend {
  font-family: "IBM Plex Mono", "Geist Mono", ui-monospace, Menlo, Consolas, monospace;
}

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.15rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.5;
}

.muted {
  color: var(--mute);
}

/* Layout */

.wrap {
  width: min(var(--wide), calc(100% - 2.5rem));
  margin-inline: auto;
}

.prose {
  max-width: var(--text);
}

.prose-center {
  max-width: var(--text);
  margin-inline: auto;
}

hr.rule {
  border: 0;
  border-top: var(--hair) solid var(--rule);
  margin: 0;
}

.section {
  padding: 4.5rem 0 4.75rem;
}

.section-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.15rem;
}

.eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin: 0 0 1rem;
}

/* Header */

.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: var(--hair) solid var(--rule);
  background: var(--paper);
}

.mast-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: var(--hair) solid var(--rule);
}

.mast-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.wordmark:hover {
  color: var(--ink);
}

.mark {
  width: 14px;
  height: 14px;
  flex: none;
}

.mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.nav-cta {
  display: inline-block;
  padding: 0.42rem 0.7rem;
  background: var(--signal);
  color: var(--snow);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--snow);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--signal);
  color: var(--snow);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.78rem 1.05rem;
  border: var(--hair) solid var(--signal);
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1.2;
}

.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--snow);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 0.78rem 1.05rem;
  border: var(--hair) solid var(--rule);
  border-radius: var(--radius);
  line-height: 1.2;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-forest {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--snow);
}

.btn-forest:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--snow);
}

.helper {
  display: block;
  margin-top: 0.65rem;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--mute);
  line-height: 1.45;
}

/* Hero */

.hero {
  padding: 4.25rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 20.5rem);
  gap: 3.5rem;
  align-items: end;
}

.hero h1 {
  margin-bottom: 1.35rem;
}

.hero .subhead p {
  margin-bottom: 0.85rem;
}

.price-line {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  margin: 1.4rem 0 1.35rem;
}

.price-line strong {
  font-weight: 500;
}

.hero-actions {
  margin-top: 0.25rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin-top: 2.1rem;
  padding-top: 1.2rem;
  border-top: var(--hair) solid var(--rule);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-kicker {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--signal);
}

.proof-item span:last-child {
  font-size: 0.95rem;
  color: var(--mute);
}

/* Ticket / timestamps */

.ticket {
  background: var(--snow);
  border: var(--hair) solid var(--rule);
  border-radius: var(--radius);
  padding: 1rem 1.05rem 1.05rem;
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: var(--hair) solid var(--rule);
}

.ticket ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket li {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 0.7rem;
  align-items: baseline;
  padding: 0.38rem 0;
  font-size: 0.92rem;
}

.ticket time {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}

.ticket .late time,
.ticket .late .code {
  color: var(--danger);
}

.ticket .win time,
.ticket .win .code {
  color: var(--forest);
}

.ticket-split {
  margin: 0.55rem 0;
  border: 0;
  border-top: var(--hair) dashed var(--rule);
}

.ticket-foot {
  margin-top: 0.7rem;
  padding-top: 0.55rem;
  border-top: var(--hair) solid var(--rule);
  font-size: 12px;
  color: var(--mute);
}

.delta {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

/* Lists */

.plain {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.plain li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  border-top: var(--hair) solid var(--rule);
}

.plain li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--mute);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--hair) solid var(--rule);
  background: var(--snow);
  border-radius: var(--radius);
  margin-top: 2rem;
}

.split-col {
  padding: 1.25rem 1.35rem 1.4rem;
}

.split-col + .split-col {
  border-left: var(--hair) solid var(--rule);
}

.split h3 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.split .is-not h3 {
  color: var(--danger);
}

.split .is-yes h3 {
  color: var(--forest);
}

.split ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split li {
  padding: 0.42rem 0;
  border-top: var(--hair) solid var(--rule);
  font-size: 1.02rem;
}

.split li:first-of-type {
  border-top: 0;
}

/* Benefits */

.benefit {
  padding: 1.55rem 0 0.15rem;
  border-top: var(--hair) solid var(--rule);
}

.benefit:first-of-type {
  margin-top: 1.75rem;
}

.benefit h3 {
  margin-bottom: 0.55rem;
}

.limit {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--signal);
  background: var(--snow);
}

/* How it works */

.steps {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-top: var(--hair) solid var(--rule);
}

.step-num {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--signal);
  line-height: 1.15;
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.weekly {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: var(--hair) solid var(--rule);
}

/* Proof empty */

.proof-box {
  margin-top: 1.75rem;
  border: var(--hair) solid var(--rule);
  background: var(--snow);
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: var(--radius);
}

.proof-box ol {
  margin: 0.85rem 0 0;
  padding: 0 0 0 1.15rem;
}

.proof-box li {
  padding: 0.35rem 0;
}

.placeholder-line {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--mute);
}

.never {
  margin-top: 1.25rem;
  color: var(--danger);
}

/* Use cases */

.case {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-top: var(--hair) solid var(--rule);
}

.case:first-of-type {
  margin-top: 1.75rem;
}

.case-who {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 0.2rem;
}

.unsure {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: var(--hair) solid var(--rule);
}

/* Pricing */

.price-deck {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 0;
  margin-top: 2rem;
  border: var(--hair) solid var(--rule);
  background: var(--snow);
  border-radius: var(--radius);
}

.price-lead {
  padding: 1.5rem 1.4rem 1.6rem;
  border-right: var(--hair) solid var(--rule);
  background: var(--forest);
  color: var(--snow);
}

.price-lead .plan {
  font-family: "Satoshi", "Geist", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}

.price-figure {
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.price-figure .cur {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-right: 0.1rem;
}

.price-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  margin-top: 0.85rem;
  color: #d7cfc0;
  line-height: 1.5;
}

.price-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.price-cols section {
  padding: 1.2rem 1.25rem 1.35rem;
}

.price-cols section + section {
  border-left: var(--hair) solid var(--rule);
}

.price-cols h3 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.price-cols .out h3 {
  color: var(--danger);
}

.price-cols .in h3 {
  color: var(--forest);
}

.price-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-cols li {
  padding: 0.38rem 0;
  border-top: var(--hair) solid var(--rule);
  font-size: 0.98rem;
}

.notes {
  margin-top: 2rem;
}

.notes h3 {
  margin-top: 1.35rem;
}

.notes h3:first-child {
  margin-top: 0;
}

/* FAQ */

.faq {
  margin-top: 1.75rem;
  border-top: var(--hair) solid var(--rule);
}

.faq details {
  border-bottom: var(--hair) solid var(--rule);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Satoshi", "Geist", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  padding: 1rem 1.8rem 1rem 0;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--mute);
  font-size: 0.95rem;
}

.faq details[open] summary::after {
  content: "–";
  color: var(--signal);
}

.faq details p {
  padding: 0 0 1.15rem;
  max-width: 40rem;
}

/* Pilot */

.pilot {
  background: var(--snow);
  border-top: var(--hair) solid var(--rule);
  border-bottom: var(--hair) solid var(--rule);
}

.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}

.pilot-block {
  padding-top: 1rem;
  border-top: var(--hair) solid var(--rule);
}

.pilot-block h3 {
  margin-bottom: 0.45rem;
}

/* Audit / form */

.audit {
  padding-bottom: 5rem;
}

.form-panel {
  margin-top: 2rem;
  border: var(--hair) solid var(--rule);
  background: var(--snow);
  border-radius: var(--radius);
}

.form-panel form {
  padding: 1.4rem 1.4rem 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

input,
select,
textarea {
  appearance: none;
  background: var(--paper);
  color: var(--ink);
  border: var(--hair) solid var(--rule);
  border-radius: var(--radius);
  padding: 0.62rem 0.65rem;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.field-hint {
  font-size: 11px;
  color: var(--mute);
}

.calendar-slot,
.next-strip {
  grid-column: 1 / -1;
  padding: 0.95rem 1rem;
  border: var(--hair) solid var(--rule);
  background: var(--paper);
}

.next-strip .proof-kicker {
  display: block;
  margin-bottom: 0.35rem;
}

.next-strip p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--mute);
  line-height: 1.45;
}

.form-actions {
  margin-top: 1.2rem;
}

.form-note {
  display: none;
  margin-top: 0.9rem;
  padding: 0.75rem 0.85rem;
  border: var(--hair) solid var(--rule);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
  background: var(--paper);
}

.form-note.is-on {
  display: block;
}

/* Footer */

.foot {
  background: var(--forest);
  color: #d9d3c6;
  padding: 0 0 0.4rem;
}

.foot a {
  color: #e8e2d6;
}

.foot a:hover {
  color: #fff;
}

.foot-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem 3rem;
  align-items: end;
  padding: 4.4rem 0 3.1rem;
  border-bottom: var(--hair) solid #3a5040;
}

.foot-close .eyebrow {
  color: #e0a57a;
  margin-bottom: 0.85rem;
}

.foot-close h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.foot-close-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: 17.5rem;
}

.foot .btn {
  text-align: center;
}

.foot .btn-ghost {
  color: #e8e2d6;
  border-color: #6a7d6e;
  text-align: center;
}

.foot .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.4rem 2.5rem;
  padding: 2.6rem 0 2.4rem;
}

.foot-brand {
  flex: 1.4 1 16rem;
  min-width: 15rem;
  max-width: 24rem;
}

.foot-col {
  flex: 1 1 9.5rem;
  min-width: 9rem;
}

.foot-brand .wordmark {
  color: #fff;
  margin-bottom: 0.85rem;
}

.foot-brand p {
  max-width: 26rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.foot-price {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #c9c2b4;
}

.foot-col h3 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #9aaa9c;
  margin: 0 0 0.9rem;
}

.foot-col a,
.foot-col p {
  display: block;
  margin: 0 0 0.5rem;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.45;
}

.foot-col a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.foot-mail {
  display: inline !important;
  color: #fff !important;
  border-bottom: 1px solid var(--signal);
  padding-bottom: 0.08rem;
  font-family: "Satoshi", "Geist", sans-serif;
  font-weight: 500;
  font-size: 1.05rem !important;
}

.foot-mail:hover {
  border-bottom-color: #fff;
}

.foot-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0 1.2rem;
  border-top: var(--hair) solid #3a5040;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #9aaa9c;
}

.foot-legal p {
  margin: 0;
}

.foot-legal a {
  color: #c9c2b4;
  text-decoration: none;
  margin-left: 1.15rem;
}

.foot-legal a:first-child {
  margin-left: 0;
}

.foot-legal a:hover {
  color: #fff;
}

.sources {
  border-top: var(--hair) solid #3a5040;
  padding: 0.85rem 0 2rem;
  font-size: 11px;
  line-height: 1.55;
  color: #b7b0a3;
}

.sources summary {
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aaa9c;
  list-style: none;
}

.sources summary::-webkit-details-marker {
  display: none;
}

.sources summary::after {
  content: " +";
  color: #c9c2b4;
}

.sources[open] summary::after {
  content: " –";
}

.sources ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.sources li {
  margin: 0 0 0.4rem;
}

.sources .warn {
  margin-top: 0.7rem;
  color: #d7b3aa;
}

/* Inner pages */

.legal-page {
  padding: 4.2rem 0 5rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.4rem;
}

.legal-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.6rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal-page ul {
  padding-left: 1.15rem;
}

.legal-page li {
  margin: 0.35rem 0;
}

/* Small screens */

@media (max-width: 860px) {
  .hero-grid,
  .price-deck,
  .price-cols,
  .pilot-grid,
  .form-grid,
  .split,
  .case,
  .foot-close,
  .foot-legal {
    grid-template-columns: 1fr;
  }

  .foot-close-actions {
    min-width: 0;
  }

  .foot-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .foot-legal a {
    margin-left: 0;
    margin-right: 1.1rem;
  }

  .split-col + .split-col,
  .price-cols section + section {
    border-left: 0;
    border-top: var(--hair) solid var(--rule);
  }

  .price-lead {
    border-right: 0;
    border-bottom: var(--hair) solid var(--rule);
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .section {
    padding: 3.4rem 0 3.5rem;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 1.5rem);
  }

  .mast-meta {
    flex-direction: column;
    gap: 0.15rem;
  }

  .proof-strip {
    flex-direction: column;
    gap: 0.7rem;
  }
}
