:root {
  --bg: #fbfaf7;
  --bg-alt: rgba(248, 246, 241, 0.88);
  --panel: rgba(255, 255, 255, 0.92);
  --panel-2: #f6f2ea;
  --line: #ded6c8;
  --line-soft: #ebe4d8;
  --ink: #17191f;
  --ink-2: #4b4f5a;
  --muted: #777066;
  --gold: #aa7a24;
  --gold-soft: #7c5515;
  --focus: #8c641f;
  --champagne: #dfbd72;
  --radius: 8px;
  --wrap: 1180px;
  color-scheme: light;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

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

body {
  margin: 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(251,250,247,0.94)),
    var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

body.tester-page { min-height: 100vh; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 650;
}

p { margin: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-logo {
  width: 190px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(145deg, #efd387, #a8771f 68%, #6c4911);
  color: #17120a;
  box-shadow: 0 0 0 1px rgba(124, 85, 21, 0.22), 0 8px 22px rgba(170, 122, 36, 0.20);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-llc { color: var(--muted); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-2);
}

.nav-links a:hover { color: var(--ink); background: var(--panel); }

.nav-links .nav-cta {
  margin-left: 6px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.nav-links .nav-cta:hover { border-color: var(--gold); color: var(--gold-soft); }

.nav-links-static { display: flex; }

.menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 9px;
  padding: 8px 14px;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

/* ---------------------------------------------------------------- hero */

.hero {
  padding: 88px 0 64px;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line-soft);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.35rem;
  max-width: 20ch;
}

.lede {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 1.18rem;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------- sections */

.section { padding: 84px 0; }

.section.alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }

.section-head { max-width: 68ch; margin-bottom: 44px; }

.section-head h2 {
  font-size: 2.25rem;
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-2);
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------------------------------------------------------------- ventures */

.ventures {
  display: grid;
  gap: 28px;
}

.venture {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(89, 70, 34, 0.07);
}

.venture-shot {
  display: block;
  position: relative;
  background: var(--panel-2);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.venture-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.venture:hover .venture-shot img { transform: none; }

.venture-body {
  padding: 30px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venture-body h3 { font-size: 1.6rem; }

.venture-body h3 a { text-decoration: none; }

.venture-body h3 a:hover { color: var(--gold-soft); }

.tagline { color: var(--gold-soft); font-size: 1.02rem; }

.body { color: var(--ink-2); font-size: 0.97rem; }

.facts {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.facts li {
  font-size: 13px;
  color: var(--ink-2);
  background: rgba(246, 242, 234, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
}

.venture-actions {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.button {
  display: inline-block;
  background: var(--gold);
  color: #fffdf8;
  text-decoration: none;
  font-weight: 620;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.button:hover { background: var(--gold-soft); }

.button-lg { font-size: 17px; padding: 14px 26px; }

button.button { appearance: none; }

.sublink {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.sublink:hover { color: var(--gold-soft); border-color: var(--gold); }

/* ---------------------------------------------------------------- tester signup */

.tester-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.tester-grid h2 {
  font-size: 2.25rem;
  max-width: 15ch;
}

.tester-grid p {
  margin-top: 16px;
  color: var(--ink-2);
  max-width: 58ch;
}

.signup-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 12px;
}

.signup-form label {
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-2);
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.signup-form input::placeholder { color: var(--muted); }

.signup-form .button { margin-top: 8px; width: 100%; }

.signup-form .button:disabled { opacity: 0.7; cursor: wait; }

.signup-form .form-note { margin: 0; font-size: 13px; color: var(--muted); }

.signup-form .form-status { margin: 0; min-height: 20px; font-size: 13px; color: var(--gold-soft); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tester-hero {
  min-height: calc(100vh - 61px);
  padding: 92px 0;
  display: grid;
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
}

.tester-hero h1 {
  font-size: 3.35rem;
  max-width: 15ch;
}

.tester-points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 440px;
}

.tester-points li {
  padding: 12px 15px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
}

/* ---------------------------------------------------------------- tiles */

.tile-row { display: grid; gap: 18px; }

.tile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.tile:hover { border-color: var(--gold); }

.tile img { width: 56px; height: 56px; border-radius: 50%; flex: none; background: var(--panel-2); }

.tile span { display: flex; flex-direction: column; gap: 5px; }

.tile strong { font-size: 1.02rem; font-weight: 600; }

.tile em { font-style: normal; font-size: 14.5px; color: var(--muted); }

/* ---------------------------------------------------------------- about + contact */

.publishing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.publishing-grid .kicker { margin-bottom: 6px; }

.publishing-grid h2 { font-size: 2rem; margin-bottom: 14px; }

.publishing-grid > div > p { color: var(--ink-2); margin-bottom: 22px; max-width: 52ch; }

.imprint-list {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.imprint-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.imprint-list strong { color: var(--gold); font-size: 1.2rem; min-width: 1.6em; }

.imprint-list span { color: var(--ink-2); font-size: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-grid h2 { font-size: 2.25rem; margin-bottom: 18px; }

.about-grid p { color: var(--ink-2); margin-bottom: 16px; max-width: 62ch; }

.spec { margin: 0; border-top: 1px solid var(--line); }

.spec > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec dt { color: var(--muted); font-size: 14px; }

.spec dd { margin: 0; font-size: 14px; text-align: right; }

.contact { border-top: 1px solid var(--line-soft); }

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.contact h2 { font-size: 2.1rem; margin-bottom: 12px; }

.contact p { color: var(--ink-2); max-width: 54ch; }

.contact-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

/* ---------------------------------------------------------------- footer */

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(248, 246, 241, 0.90);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  align-items: center;
  justify-content: space-between;
}

.footer-note { margin-top: 12px; font-size: 14px; color: var(--muted); }

.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }

.footer-links a { font-size: 14.5px; color: var(--ink-2); text-decoration: none; }

.footer-links a:hover { color: var(--gold-soft); }

/* ---------------------------------------------------------------- chat assistant */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 980px) {
.venture { grid-template-columns: 1fr; }
.venture-shot { border-right: 0; border-bottom: 1px solid var(--line); }
.venture-shot img { height: 260px; }
.publishing-grid { grid-template-columns: 1fr; gap: 32px; }
.about-grid { grid-template-columns: 1fr; gap: 32px; }
.tester-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
body { font-size: 16px; }
.wrap { padding: 0 16px; }
.nav { padding: 12px 16px; }
.brand-logo { width: 158px; }
.hero { padding: 64px 0 52px; }
.section { padding: 60px 0; }
.hero h1, .tester-hero h1 { font-size: 2.15rem; }
.lede { font-size: 1.05rem; }
.section-head h2,
  .tester-grid h2,
  .about-grid h2,
  .contact h2 { font-size: 1.75rem; }
.menu-button { display: inline-block; }
.nav-links {
    position: fixed;
    inset: 61px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 16px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }
.nav-links.open { display: flex; }
.nav-links a { padding: 13px 12px; font-size: 16px; }
.nav-links .nav-cta { margin: 8px 0 0; text-align: center; }
.nav-links-static {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
  }
.nav-links-static a { font-size: 14px; padding: 8px 10px; }
.nav-links-static .nav-cta { margin: 0; }
.venture-body { padding: 24px 20px 26px; }
.venture-shot img { height: 210px; }
.contact-inner { gap: 24px; }
.tester-hero { min-height: auto; padding: 64px 0; }
}
