:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Consolas, monospace;
  --green-950: #041d17;
  --green-900: #072a21;
  --green-800: #0c3b2e;
  --green-700: #16503d;
  --green-100: #dce8df;
  --paper: #f5f0e5;
  --paper-strong: #fffdf7;
  --ink: #132821;
  --muted: #5d6c65;
  --brass: #d6a23e;
  --brass-light: #edc878;
  --orange: #c96535;
  --line: rgba(19, 40, 33, 0.16);
  --white-line: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(5, 35, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--green-950);
  background: var(--brass-light);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--brass-light);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: white;
  background: rgba(4, 29, 23, 0.92);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand b {
  color: var(--brass-light);
  font-weight: 850;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 650;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brass-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.button-brass {
  color: var(--green-950);
  background: var(--brass);
  border-color: var(--brass);
}

.button-brass:hover,
.button-brass:focus-visible {
  background: var(--brass-light);
  border-color: var(--brass-light);
}

.button-outline {
  color: var(--green-900);
  background: transparent;
  border-color: rgba(7, 42, 33, 0.38);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: white;
  background: var(--green-800);
  border-color: var(--green-800);
}

.button-cream {
  color: var(--green-950);
  background: var(--paper-strong);
}

.button-cream:hover,
.button-cream:focus-visible {
  background: var(--brass-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link.dark {
  color: var(--green-900);
  border-bottom-color: rgba(7, 42, 33, 0.36);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 26%, rgba(36, 112, 83, 0.35), transparent 33%),
    linear-gradient(135deg, var(--green-950), #063127 58%, #09241e);
}

.hero::after {
  position: absolute;
  right: -11vw;
  bottom: -26vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(214, 162, 62, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(214, 162, 62, 0.025),
    0 0 0 150px rgba(214, 162, 62, 0.02);
  content: "";
}

.hero-grid,
.beta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 68px;
  min-height: 700px;
  padding-block: 82px 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--brass-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.eyebrow span + span {
  position: relative;
  padding-left: 22px;
}

.eyebrow span + span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--brass);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.hero h1,
.section h2,
.closing-cta h2,
.legal-hero h1 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.hero h1 em {
  display: block;
  color: var(--brass-light);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.trial-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.trial-ring {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--brass-light);
  border: 2px solid var(--brass);
  border-radius: 50%;
  font-family: var(--font-geist-mono), monospace;
  font-weight: 800;
}

.trial-note p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.trial-note strong {
  font-size: 0.86rem;
}

.trial-note p span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.product-stage {
  position: relative;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  z-index: -1;
  inset: 10% 2% -8% 8%;
  background: rgba(214, 162, 62, 0.13);
  border: 1px solid rgba(214, 162, 62, 0.28);
  content: "";
  transform: rotate(3deg);
}

.product-window {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  color: white;
  background: var(--green-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.window-brand,
.window-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
}

.window-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  color: var(--green-950);
  background: var(--brass);
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 900;
}

.window-status {
  color: rgba(255, 255, 255, 0.66);
}

.window-status span {
  width: 7px;
  height: 7px;
  background: #6fd092;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(111, 208, 146, 0.13);
}

.plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 15px;
  border-bottom: 1px solid var(--line);
}

.plan-heading div {
  display: grid;
  gap: 4px;
}

.plan-heading div span,
.plan-heading small {
  color: #68766f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-heading strong {
  font-size: 0.84rem;
}

.diagram-side {
  padding: 12px 22px 4px;
}

.diagram-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  font-size: 0.64rem;
}

.diagram-label strong {
  color: var(--green-800);
  letter-spacing: 0.08em;
}

.diagram-label span {
  color: #77827d;
}

.diagram-rows {
  position: relative;
  padding: 4px;
  background: #e7ebe7;
  border: 2px solid var(--green-900);
}

.diagram-row {
  position: relative;
  display: flex;
  height: 22px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      #f6f5ef 0,
      #f6f5ef 5px,
      #e8ebe7 5px,
      #e8ebe7 7px
    );
  border-bottom: 1px solid #8b9991;
}

.diagram-row:last-child {
  border-bottom: 0;
}

.diagram-reverse .diagram-row {
  flex-direction: row-reverse;
}

.diagram-lift {
  display: grid;
  place-items: center;
  min-width: 0;
  color: var(--green-950);
  border-right: 1px solid rgba(7, 42, 33, 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.56rem;
  font-weight: 800;
}

.lift-16 {
  flex: 1.6;
  background: #c8d1e6;
}

.lift-14 {
  flex: 1.4;
  background: #e9c6a2;
}

.lift-12 {
  flex: 1.2;
  background: #ead9a9;
}

.lift-10 {
  flex: 1;
  background: #c5ddd2;
}

.diagram-row i {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 8%;
  background:
    repeating-linear-gradient(
      135deg,
      #f7f7f1 0,
      #f7f7f1 5px,
      #e6eae6 5px,
      #e6eae6 7px
    );
  border-inline: 1px dashed rgba(7, 42, 33, 0.3);
}

.diagram-scale {
  display: flex;
  justify-content: space-between;
  padding-top: 3px;
  color: #7b8781;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.5rem;
}

.window-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 13px 22px;
  color: #68766f;
  background: #eef1ec;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
}

.window-footer button {
  margin-left: auto;
  padding: 7px 12px;
  color: white;
  background: var(--green-700);
  border: 0;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
}

.stage-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 190px;
  padding: 10px 14px;
  color: var(--green-950);
  background: var(--brass-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.35;
}

.stage-note span {
  color: rgba(4, 29, 23, 0.54);
  font-family: var(--font-geist-mono), monospace;
}

.stage-note-top {
  top: 18%;
  right: -28px;
}

.stage-note-bottom {
  bottom: 12%;
  left: -32px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--white-line);
}

.proof-strip span {
  padding: 19px 16px;
  color: rgba(255, 255, 255, 0.68);
  border-right: 1px solid var(--white-line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  padding-block: 110px;
}

.section h2,
.closing-cta h2 {
  max-width: 780px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.problem-section {
  background:
    linear-gradient(rgba(7, 42, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 42, 33, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.problem-section .section-kicker,
.how-section .section-kicker,
.feature-section .section-kicker,
.pricing-section .section-kicker,
.faq-section .section-kicker {
  color: var(--orange);
}

.problem-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: end;
}

.problem-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.problem-copy p {
  margin: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 253, 247, 0.52);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-grid article > span,
.feature-grid article > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.outcome-grid h3,
.feature-grid h3 {
  margin: 58px 0 10px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.outcome-grid p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.6;
}

.how-section {
  color: white;
  background: var(--green-900);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 80px;
  align-items: end;
}

.section-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.steps article {
  position: relative;
  min-height: 420px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--white-line);
}

.step-number {
  color: var(--brass-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.step-visual {
  display: grid;
  place-items: center;
  height: 210px;
  margin: 24px 0;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.count-visual {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 35px 56px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(0, 0, 0, 0.12);
  background-size: 20px 20px;
}

.count-visual span,
.count-visual strong {
  display: grid;
  place-items: center;
  width: 100%;
  height: 30px;
  color: rgba(255, 255, 255, 0.64);
  background: var(--green-800);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.count-visual strong {
  color: var(--green-950);
  background: var(--brass-light);
}

.balance-visual {
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
}

.balance-visual > div {
  display: grid;
  gap: 6px;
  width: 74px;
}

.balance-visual span {
  height: 16px;
  background: var(--brass);
  border: 1px solid var(--brass-light);
}

.balance-visual b {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--brass-light);
  border: 1px solid var(--brass);
  border-radius: 50%;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.85rem;
}

.paper-visual > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 130px;
  height: 156px;
  padding: 35px 15px 20px;
  background: var(--paper-strong);
  box-shadow: 10px 12px 0 rgba(214, 162, 62, 0.18);
}

.paper-visual > div::before {
  grid-column: 1 / -1;
  height: 6px;
  background: var(--green-800);
  content: "";
}

.paper-visual i {
  height: 20px;
  background: #cfdbd3;
  border: 1px solid #799083;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

.feature-section {
  background: var(--paper-strong);
}

.feature-heading > p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.feature-grid article:hover {
  color: white;
  background: var(--green-800);
}

.feature-grid article:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid h3 {
  margin-top: 68px;
}

.pricing-section {
  background: #e9e5da;
}

.pricing-intro {
  max-width: 820px;
}

.pricing-intro > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 34px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(16, 44, 35, 0.06);
}

.pricing-card.featured {
  color: white;
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 12px;
  color: var(--green-950);
  background: var(--brass);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .plan-name {
  color: var(--brass-light);
}

.price {
  display: grid;
  margin-top: 25px;
}

.price strong {
  font-size: 4.4rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.price span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.featured .price span,
.featured > p {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-card > p {
  min-height: 52px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.plan-limit {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 760;
}

.featured .plan-limit {
  border-color: var(--white-line);
}

.yearly {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  margin: 20px 0 28px;
  font-size: 0.75rem;
}

.yearly span {
  color: var(--muted);
}

.featured .yearly span {
  color: rgba(255, 255, 255, 0.54);
}

.yearly em {
  grid-column: 1 / -1;
  color: var(--orange);
  font-style: normal;
  font-weight: 750;
}

.featured .yearly em {
  color: var(--brass-light);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-footnote {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: center;
}

.beta-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 80%, rgba(214, 162, 62, 0.2), transparent 30%),
    var(--green-800);
}

.beta-grid {
  opacity: 0.16;
  mask-image: linear-gradient(to left, black, transparent);
}

.beta-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: center;
  gap: 120px;
}

.beta-layout > div:first-child > p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.beta-card {
  position: relative;
  padding: 42px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.beta-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 9px 13px;
  color: var(--green-950);
  background: var(--brass);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.beta-card h3 {
  margin: 0 0 24px;
  font-size: 1.28rem;
}

.beta-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beta-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.beta-card li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.beta-card > p {
  margin: 28px 0 0;
  padding-top: 18px;
  color: var(--orange);
  border-top: 1px solid var(--line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--paper-strong);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 110px;
}

.faq-layout > div:first-child > p:not(.section-kicker) {
  max-width: 380px;
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.closing-cta {
  color: white;
  background: var(--green-950);
  border-top: 1px solid var(--white-line);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 330px;
}

.closing-inner h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

footer {
  color: rgba(255, 255, 255, 0.64);
  background: #031611;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.7fr;
  gap: 70px;
  align-items: start;
  padding-block: 62px;
}

.footer-brand {
  color: white;
}

.footer-top > p {
  margin: 5px 0 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brass-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper-strong);
}

.legal-header {
  color: white;
  background: var(--green-950);
}

.legal-header .header-inner {
  display: flex;
  justify-content: space-between;
}

.legal-back {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-hero {
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--green-800);
  background-size: 40px 40px;
}

.legal-hero .shell {
  padding-block: 90px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-hero p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.legal-content {
  max-width: 820px;
  padding-block: 80px 110px;
}

.legal-content section {
  padding: 0 0 34px;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
}

.legal-notice {
  padding: 18px 20px;
  background: #f4ead5;
  border-left: 4px solid var(--brass);
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  nav {
    display: none;
  }

  .header-inner > .button {
    justify-self: end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 80px;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-stage {
    max-width: 760px;
    margin-inline: auto;
  }

  .problem-layout,
  .section-heading,
  .beta-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .problem-copy,
  .section-heading > p {
    max-width: 680px;
  }

  .beta-card {
    max-width: 620px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner > .button {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 72px 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .product-stage::before {
    display: none;
  }

  .stage-note {
    display: none;
  }

  .window-status,
  .plan-heading small,
  .window-footer > span {
    display: none;
  }

  .plan-heading {
    padding-inline: 14px;
  }

  .plan-heading strong {
    font-size: 0.7rem;
  }

  .diagram-side {
    padding-inline: 14px;
  }

  .diagram-label span {
    display: none;
  }

  .window-footer button {
    margin-left: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip span:nth-child(2) {
    border-right: 0;
  }

  .proof-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-line);
  }

  .section {
    padding-block: 82px;
  }

  .section h2,
  .closing-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .outcome-grid,
  .steps,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid article,
  .feature-grid article {
    min-height: 210px;
  }

  .steps article {
    min-height: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .beta-layout {
    gap: 60px;
  }

  .beta-card {
    padding: 34px 24px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
