/* CFO Radar landing page
 *
 * Design goals:
 *   - Approachable for non-tech CFO audience: lots of breathing room,
 *     clear hierarchy, no jargon-heavy layout.
 *   - Tech feel without overwhelming: subtle radar animation in the hero,
 *     monospace eyebrows, accent lines, no glittery gradients.
 *   - Brand: Claesson green as primary, gold accent for highlights.
 *     Dark navy section for examples to add rhythm.
 *
 * Touch points the user will swap later are marked .screenshot-placeholder
 * and .video-placeholder — neutral framed boxes with a label.
 */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --green:       #0d5217;
  --green-2:     #14732a;
  --green-dark:  #093311;
  /* Tint variables kept under their old name so the rest of the stylesheet
   * doesn't have to be touched, but the values are now WARM SAND tones —
   * slightly darker than a typical off-white so accents are visible without
   * the previous mint-green vibe. */
  --green-tint:  #e6dcc4;
  --green-soft:  #f1eada;

  --gold:        #C9930C;
  --gold-soft:   #fef9e7;

  --ink:         #0d1a14;
  --ink-2:       #1a2620;
  --text:        #14201a;
  --text-2:      #3d4a44;
  --text-mute:   #6c7873;
  --line:        #e3ddd0;
  --line-2:      #d4ccb9;
  --surface:     #ffffff;
  --bg-light:    #faf6ec;
  --bg-soft:     #ede6d4;

  --radius:      14px;
  --radius-sm:   8px;
  --shadow-1:    0 1px 2px rgba(13,82,23,.04), 0 4px 12px rgba(13,82,23,.05);
  --shadow-2:    0 12px 32px rgba(13,82,23,.10);

  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg { display: block; max-width: 100%; }

a { color: inherit; }

button,
input,
textarea,
select { font: inherit; color: inherit; }

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Eyebrows & section titles ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow--on-dark { color: var(--gold); }
.eyebrow--muted   { color: var(--text-mute); }

.section__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title--on-dark { color: #fff; }

.lead {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
}
.lead--center { text-align: center; max-width: 720px; margin: 0 auto 8px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn--small { padding: 8px 16px; font-size: 13px; }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-1);
}
.btn--primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--green-tint);
  border-color: var(--green);
}

.section--dark .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.section--dark .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.02em;
}
/* Inline SVG radar mark — kept crisp at any size and inherits brand
 * color via currentColor, so we can swap themes without touching SVG. */
.nav__logo-mark {
  width: 32px;
  height: 32px;
  color: var(--green);
  flex-shrink: 0;
}
.nav__logo-mark circle { transition: stroke-opacity 0.2s ease; }
.nav__logo:hover .nav__logo-mark circle { stroke-opacity: 1; }
/* Wordmark: semibold (not full bold) + slight tracking reads more like a
 * logotype than heavy bold. */
.nav__logo-text,
.footer__brand span {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
}
.nav__links a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
}
.nav__links a:hover { color: var(--green); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__logo { margin-right: auto; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 130px);
  background:
    radial-gradient(80% 60% at 50% 0%, var(--green-soft), transparent),
    linear-gradient(180deg, #ffffff, var(--bg-light));
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__radar {
  position: absolute;
  right: -6%;
  top: 10%;
  width: 560px;
  height: 560px;
  max-width: 60vw;
  max-height: 60vw;
  opacity: 0.55;
}
.hero__radar-ring,
.hero__radar-ring--2,
.hero__radar-ring--3 {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(13,82,23,0.18);
  border-radius: 50%;
}
.hero__radar-ring        { width: 100%; height: 100%; }
.hero__radar-ring--2     { width: 66%;  height: 66%;  }
.hero__radar-ring--3     { width: 33%;  height: 33%;  }
.hero__radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(13,82,23,0.0) 0 250deg, rgba(13,82,23,0.25) 270deg, rgba(13,82,23,0.0) 290deg 360deg);
  mask: radial-gradient(circle, transparent 0 4%, black 5% 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 4%, black 5% 100%);
  animation: radar-sweep 5.5s linear infinite;
}
.hero__radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  left: var(--x);
  top:  var(--y);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(13,82,23,0.12);
  animation: dot-pulse 3.4s ease-out infinite;
  animation-delay: var(--d);
  opacity: 0;
}

@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes dot-pulse {
   0% { opacity: 0;   box-shadow: 0 0 0 2px rgba(13,82,23,0.3); }
  20% { opacity: 1;   box-shadow: 0 0 0 6px rgba(13,82,23,0.18); }
  70% { opacity: 0.4; box-shadow: 0 0 0 14px rgba(13,82,23,0); }
 100% { opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__title {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero__title .accent {
  color: var(--green);
}
.hero__sub {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 500;
}
.hero__body {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 640px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.hero__trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-mute);
  opacity: 0.5;
}

/* ── Generic section ────────────────────────────────────────── */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.section--light   { background: var(--surface); }
.section--surface { background: var(--bg-light); }
.section--dark    { background: var(--ink); color: rgba(255,255,255,0.9); }

.section__inner.narrow { max-width: 760px; margin: 0 auto; }

.section__head {
  text-align: center;
  margin-bottom: 36px;
}

/* ── Prose blocks ───────────────────────────────────────────── */
.prose p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
}
.prose p:last-child { margin-bottom: 0; }
.prose__highlight {
  padding: 16px 20px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  font-weight: 600;
  color: var(--green-dark);
}

/* ── Grid + cards ───────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
}
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.card p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
}

/* ── Two-col (controller section) ──────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at center, var(--green) 0 3px, transparent 4px 100%),
              radial-gradient(circle, transparent 0 5px, var(--green-tint) 6px 7px, transparent 8px 100%);
}
.quote {
  position: relative;
  padding: 32px 32px 28px;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
.quote__mark {
  position: absolute;
  top: 8px;
  left: 24px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--gold);
  line-height: 1;
}
.quote blockquote {
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.quote blockquote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ── Flow diagram ───────────────────────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 36px 0 30px;
}
@media (max-width: 900px) {
  .flow {
    grid-template-columns: 1fr;
  }
  .flow__arrow { transform: rotate(90deg); justify-self: center; }
}
.flow__node {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-1);
  text-align: center;
}
.flow__node--accent {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: var(--green);
}
.flow__node-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.flow__node--accent .flow__node-label { color: rgba(255,255,255,0.7); }
.flow__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow__chips li {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--green-tint);
  color: var(--green-dark);
  border-radius: 999px;
  font-weight: 500;
}
.flow__chips--accent li {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.flow__arrow {
  display: flex;
  align-items: center;
}
.flow__arrow span {
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-tint), var(--green));
  position: relative;
}
.flow__arrow span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
}

/* ── Product screenshot frame ───────────────────────────────── */
.screenshot {
  margin: 40px auto 0;
  max-width: 1000px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-2);
}
.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
  background: #fafcfb;
}
.screenshot figcaption {
  margin: 12px 4px 0;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ── Carousel ───────────────────────────────────────────────── */
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;            /* override .screenshot's auto margins inside track */
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}
.carousel__btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.carousel__btn--prev { left: -16px; }
.carousel__btn--next { right: -16px; }
@media (max-width: 1080px) {
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line-2);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.carousel__dot--active {
  background: var(--green);
  transform: scale(1.25);
}

/* ── Placeholders ───────────────────────────────────────────── */
.screenshot-placeholder,
.video-placeholder {
  margin: 40px auto 0;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px dashed var(--line-2);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(13,82,23,0.04) 14px 15px),
    var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--text-mute);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}
.section--dark .screenshot-placeholder,
.section--dark .video-placeholder {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 15px),
    rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
}
.video-placeholder {
  position: relative;
}
.video-placeholder__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Stats row (presentation: 94 / 30 / 11 %) ───────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
}
.stat-block {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
}
.stat-block__value {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-2);
}

/* ── Maturity ladder ─────────────────────────────────────────── */
.ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 22px;
}
@media (max-width: 900px) {
  .ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ladder { grid-template-columns: 1fr; }
}
.ladder__step {
  position: relative;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  opacity: 0.78;
}
.ladder__step--active {
  opacity: 1;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: var(--green);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.ladder__num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.ladder__step--active .ladder__num {
  background: var(--gold);
  color: #fff;
}
.ladder__step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.ladder__step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
}
.ladder__step--active p { color: rgba(255,255,255,0.85); }
.ladder__badge {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}
.ladder__note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── Video frame ─────────────────────────────────────────────── */
.video-frame {
  margin: 40px auto 0;
  max-width: 900px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 12px 14px;
}
.video-frame video {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  background: #000;
}
.video-frame figcaption {
  margin: 10px 4px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Webinar / credibility block (FAR talk) — centered text + CTA on a light section. */
.webinar {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.webinar__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.webinar__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 26px;
}
.webinar__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  background: #000;
}
.webinar__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Value tagline (slide 28 closer) ─────────────────────────── */
.value-tagline {
  margin: 30px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 17px;
  color: var(--text-2);
  padding: 14px 22px;
  background: var(--green-soft);
  border-radius: 999px;
}
.value-tagline strong { color: var(--green-dark); }

.value-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.value-card__list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.value-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Value cards ────────────────────────────────────────────── */
.value-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: var(--green);
  border-radius: 0 4px 4px 0;
}
.value-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.value-card p {
  margin: 0;
  font-size: 16px;
  color: var(--text-2);
}

/* ── Insight cards (dark section) ──────────────────────────── */
.insight {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.insight__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,147,12,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.insight__quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.insight__quote strong { color: var(--gold); font-weight: 700; }

/* ── Form ───────────────────────────────────────────────────── */
.form {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row {
  display: flex;
  gap: 16px;
}
.form__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .form__row--double { grid-template-columns: 1fr; }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.form__field input,
.form__field textarea {
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  padding: 11px 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,82,23,0.12);
}
/* Honeypot — moved off-screen rather than display:none, because some
 * bots skip fields the computed style hides. tabindex=-1 + aria-hidden
 * keep it out of keyboard/screen-reader flow for humans. */
.form__trap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ALTCHA widget — restyle to the brand. The widget exposes CSS custom
 * properties; values mirror the form inputs around it. */
altcha-widget {
  --altcha-border-width: 1px;
  --altcha-border-radius: 8px;
  --altcha-color-base: var(--surface, #ffffff);
  --altcha-color-border: var(--line-2);
  --altcha-color-text: var(--text);
  --altcha-color-border-focus: var(--green);
  --altcha-max-width: 100%;
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.form__status {
  font-size: 13px;
  color: var(--text-mute);
  min-height: 1em;
}
.form__status[data-state="ok"]   { color: var(--green); font-weight: 600; }
.form__status[data-state="err"]  { color: #b91c1c;      font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--text-mute);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}
