/* DryAcre marketing site — brand tokens from Branding/dryacre-tokens.css */
:root {
  --slate-ink: #23262E;
  --ink-soft: #2A2D36;
  --field-paper: #F6F2EA;
  --paper-strong: #EDE7DA;
  --survey-blue: #2A80B9;
  --drop-blue: #2F8BC4;
  --field-amber: #C6822E;

  --ink-70: rgba(35, 38, 46, 0.70);
  --ink-55: rgba(35, 38, 46, 0.55);
  --hairline: rgba(35, 38, 46, 0.12);
  --hairline-strong: rgba(35, 38, 46, 0.18);

  --font-display: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(35,38,46,.06), 0 12px 32px rgba(35,38,46,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--slate-ink);
  background: var(--field-paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
a { color: var(--survey-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.mono { font-family: var(--font-mono); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--survey-blue); margin: 0 0 .9em;
}
.muted { color: var(--ink-70); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 1rem; padding: .8em 1.35em;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--survey-blue); color: #fff; box-shadow: 0 6px 18px rgba(42,128,185,.28); }
.btn-primary:hover { background: #2872a6; color: #fff; }
.btn-ghost { background: transparent; color: var(--slate-ink); border-color: var(--hairline-strong); }
.btn-ghost:hover { background: rgba(35,38,46,.04); color: var(--slate-ink); }
.btn-lg { font-size: 1.06rem; padding: .95em 1.6em; }

/* ---- Header ---- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,234,.82); backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { display: flex; align-items: center; gap: .6em; font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--slate-ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 8px; display: block; }
.brand .tm { font-size: .55em; font-weight: 700; vertical-align: super; margin-left: 1px; color: var(--ink-55); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-70); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--slate-ink); text-decoration: none; }
.nav-links .btn { color: #fff; }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* ---- Hero ---- */
.hero { padding: 76px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.hero .lede { font-size: 1.22rem; color: var(--ink-70); max-width: 34ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.hero-note { font-family: var(--font-mono); font-size: .8rem; color: var(--ink-55); margin-top: 18px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .lede { max-width: none; }
}

/* Product visual */
.shot {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--hairline-strong); background: #fff;
}
.shot svg, .shot picture, .shot img { display: block; width: 100%; height: auto; }

/* Full-width detail showcase */
.showcase-shot {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--hairline-strong); box-shadow: var(--shadow); background: #fff;
}
.showcase-shot picture, .showcase-shot img { display: block; width: 100%; height: auto; }
.showcase-shot figcaption {
  font-family: var(--font-mono); font-size: .82rem; color: var(--ink-70);
  text-align: center; padding: 14px 20px; border-top: 1px solid var(--hairline);
  background: var(--field-paper);
}

/* ---- Section scaffolding ---- */
section { padding: 68px 0; }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.section-head p { font-size: 1.12rem; color: var(--ink-70); }
.tint { background: var(--paper-strong); }
.dark { background: var(--slate-ink); color: var(--paper-strong); }
.dark h2 { color: #fff; }
.dark .muted, .dark .section-head p { color: rgba(237,231,218,.72); }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step .num {
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem;
  color: var(--survey-blue); border: 1px solid var(--hairline-strong);
  width: 2.4em; height: 2.4em; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.22rem; }
.step p { color: var(--ink-70); margin: 0; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 22px; } }

/* ---- Feature grid ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--field-paper); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 26px 24px;
}
.feature .ico { width: 34px; height: 34px; color: var(--survey-blue); margin-bottom: 14px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .4em; }
.feature p { color: var(--ink-70); font-size: .97rem; margin: 0; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }

/* ---- Pricing ---- */
.price-card {
  max-width: 460px; margin: 0 auto; background: var(--field-paper);
  border: 1px solid var(--hairline-strong); border-radius: 18px;
  box-shadow: var(--shadow); padding: 38px 34px; text-align: left;
}
.price-badge {
  display: inline-block; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--field-amber);
  border: 1px solid rgba(198,130,46,.4); border-radius: 999px; padding: .3em .8em; margin-bottom: 18px;
}
.price-amount { display: flex; align-items: baseline; gap: .3em; margin-bottom: 4px; }
.price-amount .amt { font-size: 3.1rem; font-weight: 800; letter-spacing: -.03em; }
.price-amount .per { color: var(--ink-70); font-weight: 600; }
.price-sub { color: var(--ink-70); margin-bottom: 24px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; }
.price-list li { display: flex; gap: .7em; padding: 9px 0; border-top: 1px solid var(--hairline); font-size: .98rem; }
.price-list li:first-child { border-top: 0; }
.price-list .chk { color: var(--survey-blue); flex: 0 0 auto; margin-top: 2px; }
.price-card .btn-primary { width: 100%; justify-content: center; }
.price-fine { text-align: center; font-family: var(--font-mono); font-size: .76rem; color: var(--ink-55); margin-top: 16px; }

/* ---- Trial download form ---- */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 820px) { .dl-grid { grid-template-columns: 1fr; gap: 30px; } }
.trial-form {
  background: var(--field-paper); border: 1px solid var(--hairline-strong);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 26px;
}
.trial-form .field { margin-bottom: 16px; }
.trial-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 460px) { .trial-form .field-row { grid-template-columns: 1fr; } }
.trial-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.trial-form label .opt { font-weight: 400; color: var(--ink-55); }
.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="number"] {
  width: 100%; font: inherit; font-size: 1rem; padding: .7em .8em;
  border: 1px solid var(--hairline-strong); border-radius: 9px; background: #fff; color: var(--slate-ink);
}
.trial-form input:focus { outline: none; border-color: var(--survey-blue); box-shadow: 0 0 0 3px rgba(42,128,185,.18); }
.trial-form .consent { display: flex; gap: .6em; align-items: flex-start; font-weight: 400; font-size: .9rem; color: var(--ink-70); margin: 4px 0 20px; }
.trial-form .consent input { margin-top: 3px; }
.trial-form button[type="submit"] { width: 100%; justify-content: center; }
.form-msg { margin: 14px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-msg.ok { color: #2f7d4f; font-weight: 600; }
.form-msg.err { color: #b5451f; font-weight: 600; }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--hairline); padding: 18px 4px;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 1.08rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--survey-blue); font-size: 1.4rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--ink-70); margin: 14px 0 4px; }

/* ---- Final CTA ---- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.cta-final .lede { font-size: 1.18rem; color: rgba(237,231,218,.8); max-width: 48ch; margin: 0 auto 28px; }
.cta-final .btn-ghost { color: #fff; border-color: rgba(237,231,218,.35); }
.cta-final .btn-ghost:hover { background: rgba(237,231,218,.08); }

/* ---- Footer ---- */
footer { padding: 44px 0; border-top: 1px solid var(--hairline); color: var(--ink-70); font-size: .9rem; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: .6em; font-weight: 800; color: var(--slate-ink); }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--ink-70); }
.legal { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--hairline); font-size: .78rem; line-height: 1.5; color: var(--ink-55); max-width: 90ch; }

/* pill row under hero */
.trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--hairline); }
.trust div { font-size: .92rem; color: var(--ink-70); display: flex; align-items: center; gap: .5em; }
.trust .mono { color: var(--slate-ink); font-weight: 700; }
