@charset "utf-8";
/* =========================================================================
   Keos Professional Services — design system v2

   Direction: modern, saturated, confident. Big type, deep violet gradients
   anchored on the brand purple #7044AE, rounded cards, pill controls,
   generous scale. Mono is kept for technical labels only — it is the thread
   that keeps a security consultancy from reading as a generic SaaS site.
   ========================================================================= */

/* ---------- 1. Fonts ---------------------------------------------------- */

@font-face {
  font-family: 'Jakarta';
  src: url('../fonts/jakarta.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('../fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- 2. Tokens --------------------------------------------------- */

:root {
  /* Core */
  --ink:        #14111F;   /* near-black, violet undertone */
  --white:      #FFFFFF;
  --mist:       #F5F2FB;   /* lavender-tinted light section */
  --mist-deep:  #EBE5F7;

  /* Brand */
  --keos:       #7044AE;   /* the logo purple, sampled from source */
  --keos-deep:  #4A2578;
  --void:       #1E0E38;   /* deep violet, base of the gradient */
  --void-soft:  #2C1650;
  --bright:     #C3A0F5;   /* light violet for text on dark */

  /* Accent — the one vivid note. Used for emphasis words and key numbers. */
  --mint:       #3FE0BE;
  --mint-ink:   #0B7A63;   /* the mint darkened enough to sit on white */

  /* Text */
  --slate:      #5A5369;   /* secondary text on light */
  --slate-dim:  #A79FBC;   /* secondary text on dark */

  /* Lines */
  --hair:       #E4DEF0;
  --hair-dark:  #3A2A5C;

  /* The signature gradient */
  --grad: linear-gradient(142deg, #1B0C33 0%, #3A1A69 28%, #6438A4 58%, #8B4FC4 82%, #A85FD6 100%);
  --grad-soft: linear-gradient(140deg, #F7F4FD 0%, #F0E9FB 100%);

  /* Shape */
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(20,17,31,.04), 0 8px 24px rgba(20,17,31,.06);
  --shadow-lift: 0 2px 4px rgba(20,17,31,.05), 0 18px 44px rgba(20,17,31,.12);
  --shadow-nav:  0 2px 8px rgba(20,17,31,.06), 0 12px 32px rgba(20,17,31,.10);

  /* Rhythm */
  --shell: 76rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Type scale — deliberately large */
  --t-xs:  0.8125rem;
  --t-sm:  0.9375rem;
  --t-md:  clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --t-lg:  clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --t-xl:  clamp(1.375rem, 1.24rem + 0.6vw, 1.75rem);
  --t-2xl: clamp(1.75rem, 1.45rem + 1.4vw, 2.625rem);
  --t-3xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.75rem);
  --t-4xl: clamp(2.75rem, 1.85rem + 4.2vw, 5.25rem);
}

:root { color-scheme: light; }

/* ---------- 3. Reset ---------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Jakarta', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: var(--t-md);
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h3, h4 { letter-spacing: -0.022em; line-height: 1.15; }

p { text-wrap: pretty; }

a { color: var(--keos-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--keos); }

/* ---------- 4. Accessibility -------------------------------------------- */

:focus-visible {
  outline: 3px solid var(--keos);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }
.on-dark :focus-visible, .hero :focus-visible { outline-color: var(--mint); }

.skip {
  position: absolute;
  left: var(--gutter); top: -100vh;
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: var(--r-pill);
  font-size: var(--t-sm); font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 1rem; color: #fff; }

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 5. Layout --------------------------------------------------- */

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 84rem; }

.sec { padding-block: clamp(4rem, 9vw, 8rem); }
.sec--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.sec--mist { background: var(--mist); }
.sec--grad-soft { background: var(--grad-soft); }
.sec--dark { background: var(--void); color: #fff; }
.sec--dark h1, .sec--dark h2, .sec--dark h3 { color: #fff; }

.measure { max-width: 52ch; }
.measure-wide { max-width: 64ch; }
.center { text-align: center; margin-inline: auto; }

.stack > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- 6. Type utilities ------------------------------------------- */

.eyebrow {
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--keos);
  display: block;
  margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--mint); }

.t-hero { font-size: var(--t-4xl); }
.t-h1   { font-size: var(--t-3xl); }
.t-h2   { font-size: var(--t-2xl); }
.t-h3   { font-size: var(--t-xl); }
.t-h4   { font-size: var(--t-lg); }

.lede {
  font-size: var(--t-lg);
  line-height: 1.55;
  color: var(--slate);
  font-weight: 400;
}
.sec--dark .lede, .hero .lede { color: var(--slate-dim); }

/* The two-tone headline: accent words carry the vivid note. */
.hl { color: var(--mint); }
.hl-v { color: var(--keos); }

.dim { color: var(--slate); }

/* ---------- 7. Buttons -------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: -0.008em;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease,
              color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--mint { background: var(--mint); color: #06281F; border-color: var(--mint); }
.btn--mint:hover { background: #5CEBCC; border-color: #5CEBCC; color: #06281F; box-shadow: 0 10px 28px rgba(63,224,190,.32); }

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--keos); border-color: var(--keos); color: #fff; box-shadow: 0 10px 28px rgba(112,68,174,.30); }

.btn--glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--glass:hover { background: rgba(255,255,255,.22); color: #fff; border-color: #fff; }

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

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Circular arrow affordance used on cards */
.chev {
  width: 2.25rem; height: 2.25rem; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mist-deep); color: var(--keos-deep);
  font-size: 1rem; line-height: 1;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

/* ---------- 8. Masthead ------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 100;
  padding-top: 0.85rem;
  padding-bottom: 0.35rem;
}
.masthead__bar {
  max-width: var(--shell);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  padding: 0.6rem 0.7rem 0.6rem 1.35rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(228,222,240,.9);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-nav);
}
@supports not (backdrop-filter: blur(1px)) {
  .masthead__bar { background: #fff; }
}
.masthead__inner { padding-inline: var(--gutter); }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 116px; }

.nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.6vw, 1.4rem); }
/* :not(.btn) so the nav CTA keeps its button styling — a bare `.nav a` rule
   outranks `.btn` on specificity and silently blanks the button. */
.nav a:not(.btn) {
  font-size: var(--t-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}
.nav a:not(.btn):hover { background: var(--mist); color: var(--keos-deep); }
.nav a:not(.btn)[aria-current='page'] { color: var(--keos-deep); background: var(--mist); }

.nav__cta { margin-left: 0.25rem; }

.nav__toggle {
  display: none;
  align-items: center; gap: 0.5rem;
  background: var(--ink); color: #fff;
  border: 0; border-radius: var(--r-pill);
  font-size: var(--t-sm); font-weight: 700;
  padding: 0.65rem 1.15rem;
  cursor: pointer;
}

@media (max-width: 60rem) {
  .nav__toggle { display: inline-flex; }
  .masthead__bar { position: relative; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: calc(100% + 0.6rem);
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lift);
    padding: 0.75rem;
  }
  .nav[data-open='true'] { display: flex; }
  .nav a:not(.btn) { padding: 0.85rem 1rem; border-radius: var(--r-sm); }
  .nav__cta { margin-left: 0; margin-top: 0.35rem; }
  .nav .btn { justify-content: center; }
}

/* ---------- 9. Hero ----------------------------------------------------- */

.hero {
  position: relative;
  background: var(--grad);
  color: #fff;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  margin-top: -4.6rem;          /* nav floats over the gradient */
  padding-top: 9.5rem;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.hero::after {                  /* soft light bloom, no image needed */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 48% at 88% 8%, rgba(63,224,190,.20), transparent 62%),
    radial-gradient(46% 40% at 6% 92%, rgba(196,140,255,.24), transparent 66%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lede { max-width: 46ch; margin-top: 1.6rem; }
.hero .btn-row { margin-top: 2.25rem; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 62rem) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__art { display: none; }   /* decorative reinforcement, not content */
}

/* Noise resolving into signal — what risk-based alerting actually does.
   Drawn, not photographed: no stock imagery, nothing invented about Keos. */
.signal { width: 100%; height: auto; display: block; overflow: visible; }
.signal__lbl {
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  fill: rgba(255,255,255,.62);
}
.signal__sig circle { transform-box: fill-box; transform-origin: center; }
.signal__sig > circle:nth-child(4n+1) { animation: pulse 4.5s ease-in-out infinite; }
.signal__sig > circle:nth-child(4n+2) { animation: pulse 4.5s ease-in-out infinite .4s; }
@keyframes pulse {
  0%, 100% { opacity: .10; transform: scale(1); }
  50%      { opacity: .26; transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .signal__sig > circle { animation: none !important; }
}

/* Stat strip inside the hero */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255,255,255,.22);
}
.stat__n {
  display: block;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--mint);
}
.stat__l {
  display: block;
  margin-top: 0.6rem;
  font-size: var(--t-sm);
  color: #E6E0F4;
  max-width: 26ch;
}

/* ---------- 10. Cards --------------------------------------------------- */

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  display: flex; flex-direction: column; gap: 0.85rem;
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card--mist { background: var(--mist); border-color: transparent; box-shadow: none; }
.card--plain { box-shadow: none; }

a.card { text-decoration: none; color: inherit; }
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--mist-deep);
  color: inherit;
}
a.card:hover .chev { background: var(--keos); color: #fff; transform: translateX(2px); }

.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.card__k {
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--keos);
}
.card p { color: var(--slate); font-size: var(--t-sm); }
.card--dark {
  background: var(--void-soft);
  border-color: var(--hair-dark);
  color: #fff;
  box-shadow: none;
}
.card--dark p { color: var(--slate-dim); }
.card--dark .card__k { color: var(--mint); }

/* The audience fork — two large routes of equal weight */
.fork { display: grid; gap: clamp(1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); }
.fork__card {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--r-lg);
  text-decoration: none;
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fork__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.fork__card--cust { background: var(--grad-soft); border: 1px solid var(--mist-deep); color: var(--ink); }
.fork__card--part { background: var(--void); color: #fff; border: 1px solid var(--void); }
.fork__card--part p { color: var(--slate-dim); }
.fork__card--part .card__k { color: var(--mint); }
.fork__card h3 { max-width: 14ch; }
.fork__card p { flex: 1; }
.fork__go {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: var(--t-sm);
  margin-top: 0.35rem;
}
.fork__card--cust .fork__go { color: var(--keos-deep); }
.fork__card--part .fork__go { color: var(--mint); }
.fork__card:hover .fork__go .chev { transform: translateX(3px); }
.fork__card--part .chev { background: rgba(63,224,190,.16); color: var(--mint); }

/* ---------- 11. Product chips ------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  display: inline-flex; align-items: center;
  font-size: var(--t-sm); font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--hair);
  color: var(--ink);
}
.sec--mist .chip { background: #fff; }
.sec--dark .chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.20); color: #fff; }

/* ---------- 12. Feature rows -------------------------------------------- */

.rows { display: grid; gap: 0; }
.rowi {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.4rem 1.35rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--hair);
}
.rowi:last-child { border-bottom: 1px solid var(--hair); }
.rowi__n {
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  color: var(--keos);
  padding-top: 0.35rem;
  letter-spacing: 0.08em;
}
.rowi__b p { color: var(--slate); margin-top: 0.35rem; }
.sec--dark .rowi { border-color: var(--hair-dark); }
.sec--dark .rowi__n { color: var(--mint); }
.sec--dark .rowi__b p { color: var(--slate-dim); }

@media (max-width: 34rem) {
  .rowi { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- 13. Pull quote / statement ---------------------------------- */

/* Two sentences, one per line, never three lines. Each sentence becomes an
   unbreakable box only once the container is wide enough to hold the longer of
   them; below that it wraps normally rather than overflowing. */
@media (min-width: 60rem) {
  .twoline > span { display: inline-block; }
}

.statement {
  font-size: var(--t-2xl);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.12;
  max-width: 22ch;
}

/* ---------- 13b. Partner badges ----------------------------------------- */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: stretch;
}
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 0.9rem;
  flex: 0 0 auto;
}
/* Sized so the three lines of type inside the Splunk marks stay legible —
   below about 9rem they turn to mush. */
.badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(7.5rem, 11vw, 10rem);
  object-fit: contain;
}

.sec--dark .badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }

.badge--empty {
  border-style: dashed;
  border-color: #B4531F;
  background: #FFF1E4;
  color: #8A3D0B;
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  line-height: 1.5;
  text-align: center;
  padding: 1rem;
  width: 9.5rem;
}

/* ---------- 13c. Legal / long-form prose -------------------------------- */

.legal p { color: var(--slate); }
.legal p + p { margin-top: 1rem; }
.legal h2 { color: var(--ink); }
.legal-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}
.legal-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--slate);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 0.55rem; height: 2px;
  background: var(--keos);
  border-radius: 2px;
}
.legal-list li strong { color: var(--ink); }

/* ---------- 14. Placeholders -------------------------------------------- */
/* Loud on purpose — a placeholder must never reach production by being
   easy to overlook. */

.tbd {
  display: inline-block;
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  color: #8A3D0B;
  background: #FFF1E4;
  border: 1px dashed #B4531F;
  border-radius: var(--r-sm);
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.02em;
}
.tbd--block {
  display: block;
  padding: 1.1rem 1.25rem;
  line-height: 1.55;
}
/* Every dark surface the chip can land on must invert its background too, not
   just its text — a light chip inheriting dark-surface text colour fails hard. */
.sec--dark .tbd,
.fork__card--part .tbd,
.card--dark .tbd,
.card--dark p.tbd {
  background: #2E1A0E;
  color: #FFB37A;
  border-color: #C4703A;
}

/* ---------- 15. Forms --------------------------------------------------- */

.form { max-width: 46rem; }
.form__grid { display: grid; gap: 1.25rem; }
@media (min-width: 45rem) {
  .form__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form__span { grid-column: 1 / -1; }
}
.field { display: grid; gap: 0.45rem; }
.field > label { font-size: var(--t-sm); font-weight: 700; }
.field .hint { font-size: var(--t-xs); color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #8A82A0;      /* 3:1 against white — a control border */
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  font-size: var(--t-md);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--keos);
  box-shadow: 0 0 0 4px rgba(112,68,174,.14);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.req { color: #A8410F; }

fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: var(--t-sm); font-weight: 700; padding: 0; margin-bottom: 0.7rem; }
.checks { display: grid; gap: 0.55rem; }
.check { display: flex; align-items: flex-start; gap: 0.6rem; }
.check input { width: 1.1rem; height: 1.1rem; margin-top: 0.3rem; accent-color: var(--keos); flex: none; }
.check label { font-size: var(--t-sm); color: var(--slate); }

/* ---------- 15b. Form status + spam trap (WordPress) --------------------- */

.formnote {
  border-radius: var(--r-sm);
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.5rem;
  max-width: 46rem;
  font-weight: 600;
  font-size: var(--t-sm);
}
.formnote--ok  { background: #E6FAF4; border: 1px solid #1E9E80; color: #08543F; }
.formnote--err { background: #FFF1E4; border: 1px solid #B4531F; color: #8A3D0B; }

/* Honeypot. Off-screen rather than display:none — some bots skip hidden
   fields, and screen readers ignore it via aria-hidden on the wrapper. */
.keos-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pagelinks { margin-top: 2rem; font-size: var(--t-sm); }
.pagelinks a { margin-right: 0.75rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; padding: 0.5rem 0.75rem;
  border: 1px solid var(--hair); border-radius: var(--r-sm);
  text-decoration: none; font-weight: 600; font-size: var(--t-sm);
}
.nav-links .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- 16. Footer -------------------------------------------------- */

.foot { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.foot__cols {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.foot h2 {
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.1rem;
}
.foot ul { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.foot a { color: #CFC7E2; text-decoration: none; font-size: var(--t-sm); }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot__base {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid #2E2842;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: var(--t-xs); color: #A79FBC;
}

/* ---------- 17. Prototype banner (removed at Phase 2) ------------------- */

.proto {
  background: #B4531F; color: #fff;
  font-family: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.5rem var(--gutter);
}
.proto a { color: #fff; }
