:root {
  color-scheme: dark;
  --bg: #0d100f;
  --surface: #131715;
  --surface-soft: #171b18;
  --text: #f1ece3;
  --muted: #c8c0b4;
  --dim: #91897e;
  --line: rgba(241, 236, 227, 0.1);
  --line-strong: rgba(241, 236, 227, 0.18);
  --accent: #d0a572;
  --accent-strong: #e2b77f;
  --paper: #e9dece;
  --paper-text: #1b1814;
  --paper-muted: #655d53;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

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

p,
figure,
h1,
h2,
h3 {
  margin: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 5px;
}

.skip-link {
  position: absolute;
  top: -10rem;
  left: 1rem;
  z-index: 99;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--paper-text);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, calc(100% - 3rem));
}

.eyebrow {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(241, 236, 227, 0.06);
  background: rgba(13, 16, 15, 0.94);
  backdrop-filter: blur(14px);
}

.site-header .container {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}

.brand-mark {
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.brand-meta {
  color: var(--dim);
  font-size: 0.66rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a {
  transition: color 150ms ease;
}

.site-nav a:hover,
.footer-stack a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.menu-line {
  display: block;
  width: 1.02rem;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-line:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  padding: clamp(4.5rem, 8vw, 6.6rem) 0 3.5rem;
}

.hero-copy-wrap {
  max-width: 1060px;
}

.hero h1 {
  max-width: 900px;
  margin-top: 0.8rem;
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero-lead {
  max-width: 40rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.hero-actions,
.download-actions,
.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.hero-note {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.83rem;
  line-height: 1.6;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.platform-pill {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.btn-primary {
  background: var(--accent-strong);
  color: #18130d;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary,
.platform-pill {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(241, 236, 227, 0.36);
  background: rgba(255, 255, 255, 0.035);
}

.btn-ghost {
  min-height: auto;
  padding-inline: 0;
  color: var(--muted);
}

.hero-frame {
  margin-top: clamp(2.6rem, 5vw, 4.2rem);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: #0b0e0d;
  object-fit: cover;
  object-position: center 20%;
}

.hero-frame figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 0;
  color: var(--dim);
  font-size: 0.8rem;
  line-height: 1.6;
}

.hero-frame figcaption strong {
  margin-right: 0.35rem;
  color: var(--muted);
  font-weight: 600;
}

main section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

main section[id] {
  scroll-margin-top: 4.8rem;
}

.section-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
  margin-bottom: clamp(2.8rem, 6vw, 4.8rem);
}

.section-header {
  margin-bottom: 2.3rem;
}

.section-lead .section-header {
  margin-bottom: 0;
}

.section-header h2 {
  max-width: 44rem;
  margin-top: 0.65rem;
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.8rem, 5.6vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-intro-copy,
.section-body {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.section-body {
  margin-top: 1.2rem;
}

.proof-strip {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.proof-strip-journal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #0a0d0c;
  object-fit: cover;
  object-position: center top;
}

.proof-card figcaption {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 1rem 0 0;
  color: var(--dim);
  font-size: 0.84rem;
  line-height: 1.65;
}

.proof-card figcaption strong {
  color: var(--text);
  font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.journal-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.journal-principles article {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
}

.journal-principles article > span,
.conversation-steps article > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.journal-principles h3,
.conversation-steps h3 {
  margin-top: 1.1rem;
  font-size: 1rem;
  font-weight: 600;
}

.journal-principles p,
.conversation-steps p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

#conversation {
  background: var(--surface);
}

.conversation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.conversation-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #090c0b;
  object-fit: cover;
  object-position: center;
}

.conversation-product figcaption {
  padding-top: 0.85rem;
  color: var(--dim);
  font-size: 0.8rem;
}

.conversation-steps {
  border-top: 1px solid var(--line-strong);
}

.conversation-steps article {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.7rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.conversation-steps h3 {
  margin-top: 0;
}

#local {
  background: #101311;
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.local-layout .section-header {
  margin-bottom: 0;
}

.local-points {
  border-top: 1px solid var(--line-strong);
}

.point-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.point-row strong {
  font-size: 0.94rem;
  font-weight: 600;
}

.point-row span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.status-list {
  border-top: 1px solid var(--line-strong);
}

.status-card {
  display: grid;
  grid-template-columns: minmax(7rem, 0.48fr) minmax(11rem, 0.72fr) minmax(0, 1.5fr);
  align-items: start;
  gap: 2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.status-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
}

.status-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.status-label {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.status-label::before {
  position: absolute;
  top: 0.38rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.status-label.is-available::before {
  background: #91b6a1;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  color: var(--accent);
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 42rem;
  padding: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

#download {
  padding-top: 3rem;
}

.download-panel,
.cta-band {
  padding: clamp(2.2rem, 6vw, 4.5rem);
  border-radius: 1.15rem;
  background: var(--paper);
  color: var(--paper-text);
}

.download-panel .eyebrow,
.cta-band .eyebrow {
  color: #805c34;
}

.download-panel h2 {
  max-width: 38rem;
  margin-top: 0.65rem;
  font-family: "Newsreader", "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.download-panel > p:not(.eyebrow):not(.platform-meta) {
  max-width: 40rem;
  margin-top: 1.25rem;
  color: var(--paper-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.release-list {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(27, 24, 20, 0.16);
}

.release-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(27, 24, 20, 0.12);
  color: var(--paper-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.release-list strong {
  color: var(--paper-text);
  font-weight: 600;
}

.download-actions {
  margin-top: 1.6rem;
}

.download-panel .btn-primary,
.cta-band .btn-primary {
  background: var(--paper-text);
  color: var(--paper);
}

.download-panel .btn-secondary,
.cta-band .btn-secondary,
.download-panel .platform-pill {
  border-color: rgba(27, 24, 20, 0.3);
  color: var(--paper-text);
}

.download-panel .btn-secondary:hover,
.cta-band .btn-secondary:hover {
  border-color: rgba(27, 24, 20, 0.5);
  background: rgba(27, 24, 20, 0.04);
}

.platform-meta {
  margin-top: 1.2rem;
  color: #7b7166;
  font-size: 0.76rem;
  line-height: 1.6;
}

.site-footer {
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(241, 236, 227, 0.06);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  align-items: start;
  gap: 2rem;
}

.footer-stack {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-heading {
  color: var(--dim);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta {
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

.legal-shell {
  flex: 1;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.legal-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.legal-card + .legal-card {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.legal-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-note {
  margin-top: 1.2rem;
  color: var(--dim);
  font-size: 0.8rem;
}

.inception-membership {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 236, 227, 0.07);
  color: var(--muted);
  text-align: center;
}

.inception-membership-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-bottom: 0.75rem;
}

.inception-membership-company {
  display: inline-flex;
  width: 270px;
  min-height: 86px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}

.inception-membership-company img {
  width: 240px;
  height: auto;
  max-width: 100%;
}

.inception-membership-program {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.inception-membership-badge {
  display: block;
  width: 155px;
  height: auto;
  max-width: 100%;
  transform: translateY(5px);
}

.inception-membership p {
  max-width: 34rem;
  margin: 0.35rem auto 0;
  color: var(--dim);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-align: center;
}

.inception-membership-company:focus-visible,
.inception-membership-program:focus-visible {
  outline-color: #76b900;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.23rem;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(18, 22, 20, 0.98);
  }

  .section-lead,
  .conversation-layout,
  .local-layout {
    grid-template-columns: 1fr;
  }

  .section-intro-copy {
    max-width: 38rem;
  }

  .conversation-layout,
  .local-layout {
    gap: 2.8rem;
  }

  .status-card {
    grid-template-columns: 0.55fr 0.85fr 1.6fr;
    gap: 1.2rem;
  }
}

@media (max-width: 680px) {
  .container,
  .container.narrow {
    width: min(100% - 1.5rem, 100%);
  }

  .site-header .container {
    min-height: 4.35rem;
  }

  .brand-logo {
    width: 2.1rem;
    height: 2.1rem;
  }

  .brand-mark {
    font-size: 1.3rem;
  }

  .hero {
    padding: 3.8rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.25rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.65;
  }

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

  .hero-frame {
    margin-top: 2.6rem;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
    border-radius: 0.8rem;
    object-position: center top;
  }

  .hero-frame figcaption {
    display: block;
    padding-top: 0.8rem;
  }

  .hero-frame figcaption > span:last-child {
    display: block;
    margin-top: 0.35rem;
  }

  main section {
    padding: 4.8rem 0;
  }

  .section-lead {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .section-header {
    margin-bottom: 1.8rem;
  }

  .section-header h2 {
    font-size: clamp(2.6rem, 13vw, 3.45rem);
  }

  .section-intro-copy,
  .section-body {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .proof-strip-journal,
  .journal-principles,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip-journal {
    gap: 2.5rem;
  }

  .proof-card img {
    aspect-ratio: 4 / 3;
  }

  .proof-card figcaption {
    grid-template-columns: 4.5rem 1fr;
  }

  .journal-principles {
    gap: 1.8rem;
    margin-top: 3.2rem;
  }

  .conversation-product img {
    border-radius: 0.8rem;
  }

  .point-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .status-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1.35rem 0;
  }

  .release-list p {
    display: block;
  }

  .release-list strong {
    display: block;
    margin-bottom: 0.25rem;
  }

  .download-actions .btn-primary,
  .download-actions .btn-secondary {
    width: 100%;
  }

  .site-footer-grid {
    gap: 1.8rem;
  }

  .inception-membership-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .inception-membership-company {
    width: 250px;
    min-height: 80px;
  }

  .inception-membership-company img {
    width: 220px;
  }

  .inception-membership-badge {
    width: 145px;
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
