:root {
  --ink: #11130f;
  --muted: #5d625b;
  --paper: #f6f3eb;
  --panel: #fffdf6;
  --dark: #111411;
  --green: #0a6b5c;
  --mint: #d9f3e9;
  --gold: #d7ac4c;
  --line: rgba(17, 19, 15, 0.14);
  --shadow: 0 24px 70px rgba(20, 28, 23, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 72px);
  background: rgba(246, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
}
.brand-lockup { display: flex; align-items: center; gap: 12px; font-weight: 820; }
.logo {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: var(--dark); font-weight: 900; letter-spacing: -0.04em;
}
.header-links { display: flex; gap: 22px; align-items: center; font-size: 14px; font-weight: 720; color: #31352f; }
.header-links a { text-decoration: none; }
.header-links .pill { background: var(--ink); color: white; padding: 11px 16px; border-radius: 999px; }
.hero {
  position: relative;
  min-height: min(780px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 18, 17, .92), rgba(6, 35, 31, .76) 52%, rgba(6, 18, 17, .35)),
    radial-gradient(circle at 78% 22%, rgba(215, 172, 76, .28), transparent 34%),
    linear-gradient(135deg, #0c2f2b, #101511 60%, #2d2416);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .22;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}
.hero .wrap, .section .wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: clamp(28px, 5vw, 70px); align-items: center; padding: 72px 0 82px; }
.eyebrow { color: #a5e4d9; text-transform: uppercase; letter-spacing: .2em; font-weight: 900; font-size: 13px; margin: 0 0 18px; }
h1 { font-size: clamp(48px, 8vw, 94px); line-height: .91; letter-spacing: -0.055em; margin: 0 0 26px; max-width: 860px; }
.hero p.lede { font-size: clamp(20px, 2.5vw, 30px); color: rgba(255,255,255,.82); max-width: 760px; margin: 0 0 32px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 20px; border-radius: 10px; text-decoration: none; font-weight: 850; border: 1px solid transparent; }
.button.primary { background: var(--gold); color: #12110d; }
.button.secondary { border-color: rgba(255,255,255,.33); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.visual-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(12, 20, 18, .62);
  box-shadow: 0 32px 100px rgba(0,0,0,.35);
  padding: 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(18px);
}
.screen {
  border-radius: 14px;
  overflow: hidden;
  background: #eef2eb;
  color: #0e1714;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.screen-top { display: flex; gap: 7px; padding: 12px; background: #dfe6df; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); opacity: .65; }
.screen-body { padding: 18px; display: grid; gap: 12px; }
.screen-line { height: 14px; border-radius: 999px; background: rgba(10, 107, 92, .18); }
.screen-line.wide { width: 92%; }
.screen-line.mid { width: 68%; }
.screen-line.short { width: 45%; }
.screen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.screen-tile { min-height: 82px; border-radius: 12px; background: white; padding: 12px; display: grid; align-content: end; color: var(--green); font-weight: 900; }
.visual-card .caption { color: rgba(255,255,255,.82); font-size: 18px; margin: 18px 0 0; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.light { background: #fffaf0; }
.section.dark { background: #111411; color: white; }
.section h2 { font-size: clamp(38px, 5vw, 70px); line-height: .95; letter-spacing: -0.045em; margin: 0 0 18px; max-width: 870px; }
.section .intro { font-size: clamp(18px, 2vw, 24px); color: var(--muted); max-width: 760px; margin: 0 0 34px; }
.dark .intro { color: rgba(255,255,255,.72); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 18px 48px rgba(31,32,28,.07); }
.dark .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.08; letter-spacing: -0.025em; }
.card p, .card li { color: #555c53; }
.dark .card p, .dark .card li { color: rgba(255,255,255,.72); }
ul.clean { padding-left: 19px; margin: 12px 0 0; }
ul.clean li { margin: 8px 0; }
.offer-stack { display: grid; gap: 12px; margin-top: 34px; }
.offer-row { display: grid; grid-template-columns: 230px 1fr; gap: 18px; align-items: start; padding: 18px 0; border-top: 1px solid var(--line); }
.offer-row strong { font-size: 18px; }
.proof-link { margin-top: 34px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: rgba(217,243,233,.55); display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.proof-link a { color: var(--green); font-weight: 900; }
.page-shell { padding: 72px 0; }
.article { width: min(860px, calc(100% - 40px)); margin: 0 auto; }
.article h1 { color: var(--ink); font-size: clamp(44px, 6vw, 82px); }
.article p, .article li { font-size: 19px; color: #454b43; }
.article h2 { font-size: 34px; letter-spacing: -0.035em; margin-top: 44px; }
.footer { padding: 48px clamp(20px, 5vw, 72px); background: #0f120f; color: rgba(255,255,255,.72); }
.footer a { color: #a5e4d9; font-weight: 800; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .header-links { display: none; }
  .hero-grid, .grid { grid-template-columns: 1fr; }
  .hero { min-height: unset; }
  .visual-card { min-height: 340px; }
  .offer-row { grid-template-columns: 1fr; }
  .proof-link { display: block; }
  h1 { font-size: clamp(44px, 13vw, 72px); }
  .section h2 { font-size: clamp(38px, 11vw, 58px); }
}
