:root {
  --display-font: "Aptos Display", "Segoe UI Variable Display", "Helvetica Neue", Arial, sans-serif;
  --ink: #0c1117;
  --ink-2: #17202b;
  --paper: #f7f5ef;
  --paper-2: #ebe7db;
  --white: #ffffff;
  --muted: #5d6873;
  --line: rgba(12, 17, 23, 0.12);
  --green: #16c172;
  --lime: #d7f43e;
  --amber: #d69131;
  --steel: #7aa7bb;
  --shadow: 0 24px 70px rgba(12, 17, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.brand span span {
  color: var(--green);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--green));
  border-radius: 7px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.site-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  font-weight: 750;
  color: var(--ink-2);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(22, 193, 114, 0.12);
  color: #075f38;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.compact-hero {
  min-height: min(780px, calc(100vh - 78px));
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.92) 0%, rgba(7, 10, 14, 0.72) 42%, rgba(7, 10, 14, 0.36) 100%),
    linear-gradient(0deg, rgba(7, 10, 14, 0.82) 0%, rgba(7, 10, 14, 0.12) 44%);
}

.centered-shade {
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.58) 0%, rgba(7, 10, 14, 0.78) 52%, rgba(7, 10, 14, 0.95) 100%),
    radial-gradient(circle at center, rgba(22, 193, 114, 0.18), transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 80px);
  padding: 54px 0 116px;
  color: var(--white);
}

.hero-centered {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.hero-centered h1,
.hero-centered .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.4vw, 5.45rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.25rem);
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 850;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.full {
  width: 100%;
}

.proof-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 14, 0.78);
  backdrop-filter: blur(15px);
}

.proof-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 70px);
}

.centered {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.centered p:not(.eyebrow),
.page-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.split,
.evidence,
.price-section,
.contact-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.split p,
.evidence p,
.price-note p {
  color: var(--muted);
  font-size: 1.07rem;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: #087143;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contrast-panel {
  display: grid;
  gap: 16px;
}

.contrast-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(12, 17, 23, 0.08);
}

.contrast-card span,
.story-stack span,
.process span,
.agent-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contrast-card strong {
  display: block;
  margin: 10px 0;
  font-size: 1.5rem;
  line-height: 1.08;
}

.past {
  transform: translateX(18px);
}

.future {
  background: var(--ink);
  color: var(--white);
  transform: translateX(-18px);
}

.future p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  width: min(900px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0;
}

.agent-grid,
.feature-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.agent-card,
.feature-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.agent-card h3,
.feature-grid h3 {
  margin-top: 44px;
}

.agent-card p,
.feature-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.evidence {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
}

.product-proof {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 90px);
}

.product-proof-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.product-proof-copy h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.95rem, 3.6vw, 3.25rem);
}

.product-proof-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.3vw, 1rem);
}

.product-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 23, 0.16);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--white);
  background: rgba(7, 10, 14, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.visual-stat.top {
  top: 16px;
  left: 16px;
}

.visual-stat.bottom {
  right: 16px;
  bottom: 16px;
}

.visual-stat strong {
  font-size: 1.05rem;
  line-height: 1;
}

.visual-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-window {
  overflow: hidden;
  border: 1px solid rgba(12, 17, 23, 0.14);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--steel);
}

.source-item {
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.source-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.source-item p {
  margin: 0;
}

.source-item.active {
  background: rgba(22, 193, 114, 0.12);
}

.pricing-teaser {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #132018, #0c1117 64%, #263240);
}

.pricing-teaser p {
  color: rgba(255, 255, 255, 0.72);
}

.compact {
  justify-content: center;
}

.home-intro {
  padding-top: clamp(74px, 9vw, 126px);
  padding-bottom: clamp(56px, 8vw, 94px);
}

.home-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.home-showcase {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  padding-top: clamp(28px, 5vw, 64px);
  text-align: center;
}

.home-showcase-copy {
  max-width: 760px;
  margin: 0 auto;
}

.home-showcase-copy h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

.home-showcase-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1rem;
}

.home-visual {
  max-width: 940px;
  margin: 0 auto;
}

.home-offer {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 8vw, 118px);
  padding: clamp(42px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 193, 114, 0.13), transparent 46%),
    var(--white);
  box-shadow: 0 18px 54px rgba(12, 17, 23, 0.08);
  text-align: center;
}

.home-offer h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.home-offer p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.conversion-panel {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 193, 114, 0.13), transparent 46%),
    var(--white);
  box-shadow: 0 18px 54px rgba(12, 17, 23, 0.08);
}

.conversion-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.conversion-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(82px, 10vw, 150px) clamp(18px, 5vw, 70px) clamp(58px, 8vw, 96px);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(22, 193, 114, 0.16), transparent 34%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.page-hero h1 {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.05rem, 4.4vw, 3.95rem);
}

.page-hero.narrow h1 {
  margin-left: auto;
  margin-right: auto;
}

.process,
.story-stack {
  width: min(1050px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.compact-process {
  width: min(1060px, calc(100% - 36px));
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: clamp(34px, 5vw, 66px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.process article,
.story-stack article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compact-process article {
  min-height: 228px;
  padding: 26px;
  text-align: center;
}

.process h2,
.story-stack h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.compact-process h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.process p,
.story-stack p {
  max-width: 780px;
  color: var(--muted);
}

.compact-process p {
  max-width: 27rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
}

.step-accordion-wrap {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: clamp(34px, 5vw, 66px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.step-accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(12, 17, 23, 0.06);
}

.step-accordion + .step-accordion {
  margin-top: 12px;
}

.step-accordion summary {
  display: grid;
  grid-template-columns: 52px 1fr 38px;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 0 22px;
  list-style: none;
}

.step-accordion summary::-webkit-details-marker {
  display: none;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(22, 193, 114, 0.14);
  font-weight: 900;
}

.step-title {
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 880;
  line-height: 1.1;
}

.step-plus {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.step-plus::before,
.step-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.step-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.step-accordion[open] .step-plus {
  background: var(--green);
}

.step-accordion[open] .step-plus::after {
  opacity: 0;
}

.step-accordion p {
  max-width: 720px;
  margin: -4px 22px 24px 92px;
  color: var(--muted);
  font-size: 1rem;
}

.output-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 18px;
}

.output-list button {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.output-list button.is-active {
  color: var(--white);
  background: var(--ink);
}

.reveal-box {
  max-width: 760px;
  min-height: 92px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.why-focus {
  padding-top: clamp(70px, 9vw, 118px);
  padding-bottom: clamp(70px, 9vw, 118px);
}

.why-focus h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.interaction-cue {
  max-width: 420px;
  margin: 22px auto 30px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-terms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 5vw, 58px);
  margin: 34px auto;
}

.why-terms button {
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(1.28rem, 2.4vw, 1.85rem);
  font-weight: 900;
  cursor: pointer;
}

.why-terms button:hover,
.why-terms button:focus,
.why-terms button.is-active {
  color: #087143;
  border-color: var(--green);
}

.why-info {
  max-width: 760px;
  min-height: 218px;
  margin: 18px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 193, 114, 0.12), transparent 46%),
    var(--white);
  box-shadow: 0 16px 42px rgba(12, 17, 23, 0.08);
  text-align: center;
}

.why-info span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-info h3 {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}

.why-info p {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.defense-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.defense-board {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.defense-statement {
  text-align: center;
}

.defense-statement span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.defense-statement h3 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 5.6vw, 5.6rem);
  line-height: 0.95;
}

.defense-statement p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-align: center;
}

.defense-lines {
  width: min(860px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.defense-lines div {
  display: grid;
  gap: 7px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.defense-lines strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.08;
}

.defense-lines span {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.proof-callout {
  padding-top: clamp(82px, 9vw, 130px);
  padding-bottom: clamp(82px, 9vw, 130px);
}

.proof-callout h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.9rem, 3.3vw, 3.15rem);
}

.proof-callout p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1rem;
}

.price-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.75fr);
  align-items: stretch;
}

.price-card,
.price-note,
.contact-card,
.trial-panel,
.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(12, 17, 23, 0.08);
}

.price-card h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 820;
}

.price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 18px 0 26px;
}

.price span {
  font-family: var(--display-font);
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 850;
  line-height: 0.9;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--green);
}

.price-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-note h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.price-note p {
  max-width: 30rem;
}

.faq {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 30px;
}

details {
  border-top: 1px solid var(--line);
  background: transparent;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.14rem;
  font-weight: 850;
}

details p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  align-items: stretch;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.contact-row:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-row:hover {
  color: #087143;
}

.contact-row svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row span {
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.contact-row strong {
  color: var(--ink);
}

.contact-row:hover span {
  color: #087143;
}

.contact-row:hover strong {
  color: #075f38;
}

.trial-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.trial-panel h2 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.58rem, 2.7vw, 2.25rem);
}

.trial-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form h2 {
  margin-bottom: 4px;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 780;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
  font-weight: 750;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    grid-column: 1 / -1;
    padding: 20px;
    background: rgba(247, 245, 239, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(12, 17, 23, 0.14);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-inner {
    margin: 0 auto;
    padding-bottom: 210px;
  }

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

  .split,
  .evidence,
  .product-proof,
  .price-section,
  .contact-layout {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr;
  }

  .past,
  .future {
    transform: none;
  }

  .agent-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-process,
  .defense-board {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .conversion-panel h2,
  .conversion-panel p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .compact-process article {
    min-height: auto;
  }

  .step-accordion-wrap {
    width: min(100% - 36px, 720px);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .site-nav {
    inset: 70px 0 auto 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 10, 14, 0.42), rgba(7, 10, 14, 0.94) 46%, rgba(7, 10, 14, 0.98) 100%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-bottom: 245px;
  }

  .hero-actions,
  .compact {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .proof-strip span {
    min-height: 50px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .agent-grid,
  .feature-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .product-proof {
    width: 100%;
  }

  .visual-stat {
    max-width: calc(100% - 32px);
  }

  .defense-board {
    width: 100%;
  }

  .agent-card,
  .feature-grid article {
    min-height: auto;
  }

  .agent-card h3,
  .feature-grid h3 {
    margin-top: 28px;
  }

  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process,
  .story-stack,
  .faq {
    width: 100%;
  }

  .process article,
  .story-stack article,
  .price-card,
  .price-note,
  .contact-card,
  .trial-panel,
  .contact-form,
  .conversion-panel {
    padding: 24px;
  }

  .step-accordion-wrap {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .step-accordion summary {
    grid-template-columns: 42px 1fr 34px;
    gap: 12px;
    min-height: 72px;
    padding: 0 14px;
  }

  .step-number {
    width: 32px;
    height: 32px;
  }

  .step-accordion p {
    margin: -2px 16px 22px 68px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }
}
