/* One shared template for hub, 4 variants, disclosure, thanks. */
:root {
  --ink: #1c2a24;
  --ink-soft: #4c5f56;
  --accent: #2e7d5b;
  --accent-dark: #1f5c42;
  --paper: #fbfaf7;
  --card: #ffffff;
  --line: #e3e0d8;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 24px 20px 64px; }

header.site {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0 26px;
}
header.site .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 19px;
}
header.site .name { font-weight: 700; font-size: 18px; letter-spacing: 0.2px; }
header.site .tag { color: var(--ink-soft); font-size: 13px; margin-left: auto; }

.hero {
  background: linear-gradient(160deg, #eaf4ee 0%, #f6f3ea 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  margin-bottom: 22px;
}
.hero-img {
  margin: -34px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-img img { display: block; width: 100%; height: auto; }
.hero .kicker {
  color: var(--accent-dark); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.hero h1 { font-size: clamp(26px, 5vw, 34px); line-height: 1.18; margin-bottom: 12px; }
.hero p.sub { color: var(--ink-soft); font-size: 17px; max-width: 46ch; }

.price-row {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin: 22px 0 6px;
}
.price { font-size: 30px; font-weight: 700; }
.price-anchor {
  color: var(--ink-soft); font-size: 20px; text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.price-note { color: var(--ink-soft); font-size: 14px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-size: 16px; font-weight: 600; border-radius: 10px;
  padding: 13px 22px; transition: transform 0.05s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent; color: var(--accent-dark);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: #eaf4ee; }

ul.features { list-style: none; margin: 20px 0; }
ul.features li {
  padding: 10px 0 10px 30px; position: relative;
  border-bottom: 1px solid var(--line); font-size: 15.5px;
}
ul.features li:last-child { border-bottom: 0; }
ul.features li::before {
  content: "✓"; position: absolute; left: 4px; color: var(--accent);
  font-weight: 700;
}

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; margin-bottom: 18px;
}
.card h2 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 10px; }

form.capture { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
form.capture input[type="email"] {
  font-size: 16px; padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; width: 100%;
}
form.capture input[type="email"]:focus {
  outline: none; border-color: var(--accent);
}
.hp { position: absolute; left: -9999px; opacity: 0; }
#form-status { color: #a4442c; font-size: 14px; min-height: 18px; }

.app-preview {
  display: grid; grid-template-columns: 1fr 300px; gap: 26px;
  align-items: center; margin-top: 34px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.app-preview h2 { font-size: 22px; margin-bottom: 6px; }
.app-preview .features li { border-bottom: 0; padding: 7px 0 7px 30px; }
.app-shot img { display: block; width: 100%; height: auto; border-radius: 12px; }
@media (max-width: 560px) {
  .app-preview { grid-template-columns: 1fr; }
  .app-shot { order: -1; max-width: 300px; margin: 0 auto; }
}

footer.site {
  color: var(--ink-soft); font-size: 12.5px; margin-top: 40px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
footer.site a { color: var(--ink-soft); }

.fineprint { color: var(--ink-soft); font-size: 13px; margin-top: 10px; }

@media (max-width: 480px) {
  .hero { padding: 26px 20px; }
  .cta-row .btn { width: 100%; text-align: center; }
}
