:root {
  --ink: #0a2138;
  --navy: #123a5e;
  --green: #14584a;
  --green-deep: #0f4238;
  --green-soft: #eaf2ef;
  --gold: #c3a459;
  --wordmark: #14584a;
  --body: #2c3a47;
  --muted: #5b6b7a;
  --line: #dfe7ee;
  --tint: #eef4f9;
  --paper: #ffffff;
  --paper-2: #f9fafb;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(10, 33, 56, .06), 0 8px 24px rgba(10, 33, 56, .06);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green); }

.wrap { width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-head .wrap { display: flex; align-items: center; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-right: auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { display: flex; align-items: center; }
.brand-name b { font-size: 14px; font-weight: 700; color: var(--wordmark); text-transform: uppercase; letter-spacing: normal; }
.brand-name span { display: none; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-nav a:hover { color: var(--green); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-size: 16px; font-weight: 600;
  padding: 13px 24px; border-radius: 7px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-line { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-line:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-busy { opacity: .6; cursor: default; pointer-events: none; }

/* Hero */
.hero { padding: 68px 0 52px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--paper-2), var(--paper)); text-align: center; }
.hero h1 { margin: 0 auto 18px; font-size: 42px; line-height: 1.17; letter-spacing: -.6px; color: var(--ink); font-weight: 700; max-width: 21ch; text-wrap: balance; }
.hero p { margin: 0 auto 28px; font-size: 19px; color: var(--muted); max-width: 58ch; text-wrap: pretty; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.eyebrow, .hero p.eyebrow { font-size: 11.5px; letter-spacing: 1.7px; text-transform: uppercase; color: var(--green); font-weight: 700; margin: 0 auto 16px; max-width: none; }

/* Sections */
section { padding: 60px 0; }
.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head h2 { margin: 0 0 12px; font-size: 29px; line-height: 1.25; color: var(--ink); letter-spacing: -.3px; font-weight: 700; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }

/* Product cards */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow);
}
.card.free { border-color: var(--green); }
.card .flag { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.3; color: var(--ink); font-weight: 700; }
.card .tagline { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; }
.card ul { list-style: none; margin: 0 0 22px; padding: 0; }
.card li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 15.5px; color: var(--body); }
.card li::before {
  content: ""; position: absolute; left: 3px; top: 9px; width: 9px; height: 5px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}
.card .price-row { display: flex; align-items: baseline; gap: 10px; margin: auto 0 18px; padding-top: 8px; }
.price { font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: -.5px; }
.price-was { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.price-note { font-size: 14px; color: var(--muted); }
.card .after { margin: 12px 0 0; font-size: 13.5px; color: var(--muted); text-align: center; }
.soon { display: block; text-align: center; padding: 13px 20px; border: 1px dashed var(--line); border-radius: 7px; color: var(--muted); font-size: 15px; }

/* Free block */
.claim { background: var(--green-soft); border: 1px solid #cfe2db; border-radius: var(--radius); padding: 34px; }
.claim h2 { margin: 0 0 10px; font-size: 25px; color: var(--ink); font-weight: 700; }
.claim p { margin: 0 0 22px; color: var(--muted); max-width: 54ch; }
.form-row { display: flex; flex-wrap: wrap; gap: 10px; max-width: 560px; }
.form-row input { flex: 1 1 200px; }
input[type=email], input[type=text], input[type=password], input[type=number], textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 7px; padding: 12px 14px; width: 100%;
}
input:focus, textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.gmail-note {
  margin: 14px 0 0; font-size: 15px; color: var(--ink);
  background: #fdf6e6; border: 1px solid #ecdcb4; border-left: 4px solid var(--gold);
  border-radius: 7px; padding: 12px 16px; max-width: 620px;
}
.claim-after { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.note { margin: 14px 0 0; font-size: 14px; }
.note.ok { color: var(--green-deep); }
.note.bad { color: #a4302a; }

/* Plain panels */
.panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.cols h3 { margin: 0 0 8px; font-size: 17px; color: var(--ink); font-weight: 700; }
.cols p { margin: 0; color: var(--muted); font-size: 15.5px; }

.faq { border-top: 1px solid var(--line); }
.faq dl { margin: 0; }
.faq dt { font-weight: 700; color: var(--ink); margin-top: 22px; font-size: 16.5px; }
.faq dd { margin: 6px 0 0; color: var(--muted); font-size: 16px; }

/* Footer */
.site-foot { border-top: 1px solid var(--line); background: var(--ink); color: #b9c6d4; padding: 40px 0 46px; font-size: 14.5px; }
.site-foot a { color: #dce6ef; text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }
.site-foot .rows { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: flex-start; }
.site-foot b { color: #fff; display: block; margin-bottom: 8px; font-size: 15px; }
.site-foot .legal { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: #90a0b1; }

/* Library and simple pages */
.page { padding: 54px 0 70px; min-height: 60vh; }
.page h1 { margin: 0 0 10px; font-size: 33px; color: var(--ink); letter-spacing: -.4px; font-weight: 700; }
.page .lede { margin: 0 0 30px; color: var(--muted); font-size: 17px; }
.stack { display: grid; gap: 14px; }
.row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; background: #fff;
}
.row .grow { flex: 1 1 260px; min-width: 0; }
.row h3 { margin: 0 0 4px; font-size: 17.5px; color: var(--ink); font-weight: 700; }
.row p { margin: 0; color: var(--muted); font-size: 14.5px; }
.tag { display: inline-block; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: var(--green); background: var(--green-soft); border-radius: 20px; padding: 4px 11px; }
.empty { border: 1px dashed var(--line); border-radius: var(--radius); padding: 36px; text-align: center; color: var(--muted); }
.box { max-width: 460px; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; box-shadow: var(--shadow); }
.box h2 { margin: 0 0 8px; font-size: 21px; color: var(--ink); font-weight: 700; }
.box p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; }
.box .field { margin-bottom: 14px; }
.box .btn-block + .btn-block { margin-top: 10px; }
.skeleton { color: var(--muted); }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 46px 0 38px; }
  .hero h1 { font-size: 31px; }
  .hero p { font-size: 17px; }
  section { padding: 44px 0; }
  .section-head h2 { font-size: 24px; }
  .claim { padding: 24px; }
  .site-head .wrap { height: 74px; gap: 12px; }
  .brand img { width: 38px; height: 38px; }
  .brand-name b { font-size: 12.5px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 14px; }
}
