:root {
  --bg: #0a1210;
  --bg2: #12201c;
  --foam: #e7f2ec;
  --mute: #8fa89c;
  --mint: #3ecf8e;
  --mint-dim: #2a9b6a;
  --warn: #e8b86d;
  --font-d: "Syne", system-ui, sans-serif;
  --font-b: "Source Serif 4", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--foam);
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(62, 207, 142, 0.16), transparent 55%),
    radial-gradient(700px 400px at 0% 40%, rgba(232, 184, 109, 0.08), transparent 50%),
    linear-gradient(165deg, var(--bg), var(--bg2) 50%, #08100e);
  overflow-x: hidden;
}
.mesh {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(62, 207, 142, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 207, 142, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 20%, #000 15%, transparent 70%);
}
.top, main, .foot { position: relative; z-index: 2; }
.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
}
.brand, .brand-mark {
  font-family: var(--font-d); font-weight: 800; letter-spacing: -0.04em;
  color: var(--foam); text-decoration: none;
}
.top-cta {
  font-family: var(--font-d); font-weight: 700; font-size: 0.88rem;
  text-decoration: none; color: var(--bg); background: var(--mint);
  padding: 0.55rem 1rem; transition: transform 0.2s ease, background 0.2s;
}
.top-cta:hover { transform: translateY(-1px); background: #4be09c; }
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; min-height: calc(100vh - 4.5rem);
  padding: 0.5rem clamp(1.2rem, 4vw, 3rem) 3.5rem;
}
.brand-mark {
  font-size: clamp(2.6rem, 6.5vw, 4.5rem); line-height: 0.95; margin: 0 0 0.75rem;
  animation: rise 0.85s ease both;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 2.85rem); letter-spacing: -0.035em;
  line-height: 1.12; margin: 0 0 1rem; max-width: 16ch;
  animation: rise 0.85s ease 0.08s both;
}
.lede {
  color: var(--mute); max-width: 34rem; margin: 0 0 1.75rem;
  animation: rise 0.85s ease 0.16s both;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  animation: rise 0.85s ease 0.24s both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; font-size: 0.92rem;
  text-decoration: none; padding: 0.85rem 1.2rem; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s ease, background 0.2s;
}
.btn.primary { background: var(--mint); color: var(--bg); }
.btn.primary:hover { transform: translateY(-2px); background: #4be09c; }
.btn.ghost { background: transparent; color: var(--foam); border-color: rgba(231, 242, 236, 0.25); }
.btn.ghost:hover { border-color: var(--mint); }
.hero-visual { animation: fade 1s ease 0.2s both; }
.panel {
  padding: 1.4rem 1.5rem; background: linear-gradient(155deg, rgba(18, 40, 34, 0.95), rgba(10, 18, 16, 0.98));
  border: 1px solid rgba(62, 207, 142, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.panel-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-d); font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 0.75rem;
}
.pill {
  color: var(--bg); background: var(--warn); padding: 0.2rem 0.5rem; font-weight: 700;
}
.big-save {
  font-family: var(--font-d); font-size: clamp(2.8rem, 6vw, 3.6rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--mint); line-height: 1;
}
.big-save span { font-size: 1rem; color: var(--mute); font-weight: 600; margin-left: 0.25rem; }
.panel-sub { color: var(--mute); font-size: 0.9rem; margin: 0.5rem 0 1.25rem; }
.bars { display: grid; gap: 0.85rem; }
.bar span {
  display: block; font-family: var(--font-d); font-size: 0.72rem;
  color: var(--mute); margin-bottom: 0.35rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.bar i {
  display: block; height: 10px; background: rgba(231, 242, 236, 0.2);
  position: relative; overflow: hidden;
}
.bar i::after {
  content: ""; position: absolute; inset: 0; width: inherit;
  background: rgba(231, 242, 236, 0.55);
  animation: fill 1.4s ease 0.5s both;
}
.bar.cut i::after { background: var(--mint); }
.bar i[style] { /* width on i is target; use inner via width attr simulation */ }
.bar i { width: 100%; }
.bar i::after { width: var(--w, 88%); }
.bar:nth-child(1) i { --w: 88%; }
.bar.cut i { --w: 58%; }
.section {
  padding: 4.25rem clamp(1.2rem, 4vw, 3rem); max-width: 920px;
  border-top: 1px solid rgba(62, 207, 142, 0.12);
}
.section h2 {
  font-family: var(--font-d); font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em; margin: 0 0 0.85rem; line-height: 1.15;
}
.section-lede { color: var(--mute); max-width: 40rem; margin: 0 0 1.5rem; }
.pain-list, .steps { list-style: none; margin: 0; padding: 0; }
.pain-list li, .steps li {
  padding: 1rem 0; border-bottom: 1px solid rgba(62, 207, 142, 0.12);
}
.steps { counter-reset: s; }
.steps li {
  counter-increment: s; position: relative; padding-left: 3rem; display: grid; gap: 0.3rem;
}
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 1rem;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border: 1px solid var(--mint); color: var(--mint);
  font-family: var(--font-d); font-weight: 700; font-size: 0.85rem;
}
.steps strong { font-family: var(--font-d); color: var(--foam); font-size: 1.1rem; }
.steps span { color: var(--mute); }
.pilot { max-width: 640px; }
.pilot-form { display: grid; gap: 1rem; }
.pilot-form label {
  display: grid; gap: 0.4rem; font-family: var(--font-d); font-size: 0.82rem; color: var(--mute);
}
.pilot-form input, .pilot-form textarea, .pilot-form select {
  font: inherit; color: var(--bg); background: var(--foam); border: none; padding: 0.85rem 0.95rem;
}
.pilot-form button { width: fit-content; }
.form-note { font-size: 0.85rem; color: var(--mute); }
.form-note code { color: var(--mint); font-size: 0.8em; }
.foot {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  padding: 2rem clamp(1.2rem, 4vw, 3rem) 3rem;
  border-top: 1px solid rgba(62, 207, 142, 0.12); color: var(--mute); font-size: 0.9rem;
}
.foot span:first-child { font-family: var(--font-d); color: var(--foam); font-weight: 700; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: none; }
  .hero-visual { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
