:root {
  --navy: #0b1220;
  --navy2: #121c2e;
  --green: #34d399;
  --ink: #0b1220;
  --muted: #6b7a8d;
  --line: #e3e8ee;
  --cream: #eef2ef;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; background: var(--navy); color: #fff;
}
.logo { font-family: Georgia, serif; font-weight: 800; font-size: 20px; letter-spacing: .5px; }
.logo .dot { color: var(--green); }
.tag { color: #8b9a90; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.hero {
  max-width: 1040px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start;
}
@media (max-width: 820px) { .hero { grid-template-columns: 1fr; } }

.eyebrow { color: #0e7c5a; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 10px; }
.pitch h1 { font-family: Georgia, serif; font-size: 34px; line-height: 1.15; margin: 0 0 16px; color: var(--navy); }
.sub { font-size: 16px; color: #3a4657; margin: 0 0 20px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 26px; color: #24313f; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.card {
  background: #fff; border-radius: 16px; padding: 26px;
  box-shadow: 0 12px 40px rgba(10,20,30,.10); border: 1px solid var(--line);
}
.card h2 { font-family: Georgia, serif; margin: 0 0 6px; font-size: 22px; color: var(--navy); }
.price { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.price span { font-size: 30px; font-weight: 800; color: var(--navy); }

form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: #33404f; }
.opt { color: var(--muted); font-weight: 400; }
input {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; outline: none; transition: border-color .15s, box-shadow .15s;
}
input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(52,211,153,.18); }
button {
  margin-top: 6px; padding: 14px 16px; border: 0; border-radius: 10px;
  background: var(--navy); color: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .15s, transform .05s;
}
button:hover { background: #16233a; }
button:active { transform: translateY(1px); }
button:disabled { opacity: .6; cursor: default; }
.err { color: #b42318; font-size: 13px; margin: 4px 0 0; }
.fine { color: var(--muted); font-size: 12px; margin: 6px 0 0; }

.foot { text-align: center; color: var(--muted); font-size: 12px; padding: 30px 20px 50px; }
