/* ==========================================================================
   Amerus — amerus.ai
   Brand: navy / white / restrained red. Confidence without aggression.
   ========================================================================== */

:root {
  --navy-900: #071a36;
  --navy-800: #0a2044;
  --navy-700: #0f2c55;
  --navy-600: #13407c;
  --blue-500: #0c62af;
  --blue-400: #2e86d8;
  --blue-200: #a9cbef;
  --red-600:  #c8102e;
  --red-500:  #d40d1d;

  --paper:    #f8f7f4;
  --paper-2:  #fffffe;
  --ink:      #12161c;
  --ink-2:    #3a424e;
  --muted:    #5d6472;
  --line:     #e4e1d9;
  --line-2:   #efede7;

  --max: 1140px;
  --pad: 24px;
  --r: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(7,26,54,.06), 0 4px 14px rgba(7,26,54,.05);
  --shadow-md: 0 2px 6px rgba(7,26,54,.07), 0 18px 44px rgba(7,26,54,.10);
  --shadow-lg: 0 8px 24px rgba(7,26,54,.12), 0 40px 90px rgba(7,26,54,.20);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
          "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--blue-500); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--navy-800);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.24rem; letter-spacing: -0.012em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 800px; }
.center { text-align: center; }
.lede { font-size: clamp(1.08rem, 1.9vw, 1.32rem); line-height: 1.6; color: var(--ink-2); }
.muted { color: var(--muted); }
.small { font-size: .93rem; }
.tiny  { font-size: .84rem; }
.nowrap { white-space: nowrap; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--red-600);
  margin: 0 0 14px;
}
.dark .eyebrow, .on-dark .eyebrow { color: #ff8a94; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease,
              border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--navy-600) 0%, var(--navy-700) 100%);
  color: #fff;
  box-shadow: 0 2px 5px rgba(10,32,68,.24), 0 12px 26px rgba(10,32,68,.20);
}
.btn-primary:hover { color: #fff; box-shadow: 0 4px 10px rgba(10,32,68,.28), 0 18px 36px rgba(10,32,68,.26); }

.btn-secondary { background: transparent; color: var(--navy-700); border-color: rgba(15,44,85,.28); }
.btn-secondary:hover { color: var(--navy-800); border-color: var(--navy-700); background: rgba(15,44,85,.04); }

.dark .btn-primary,
.on-dark .btn-primary,
.btn-light {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 2px 6px rgba(0,0,0,.18), 0 16px 34px rgba(0,0,0,.24);
}
.dark .btn-primary:hover, .on-dark .btn-primary:hover, .btn-light:hover { color: var(--navy-900); }

.dark .btn-secondary, .on-dark .btn-secondary { color: #dfe8f5; border-color: rgba(223,232,245,.34); }
.dark .btn-secondary:hover, .on-dark .btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .cta-row { justify-content: center; }

.cta-note { margin-top: 16px; font-size: .9rem; color: var(--muted); }
.dark .cta-note, .on-dark .cta-note { color: #9db1cc; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248,247,244,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.brand-link { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-link img { width: 34px; height: auto; }
.brand-word {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: .085em;
  color: var(--navy-800);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
  color: var(--red-600);
  margin-top: 3px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: .96rem;
  font-weight: 550;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--navy-800); }
.site-nav a[aria-current="page"] { color: var(--navy-800); border-bottom-color: var(--red-600); }
.site-nav a.btn { padding: 10px 20px; font-size: .95rem; border-bottom: none; }
.site-nav a.btn-primary { color: #fff; }
.site-nav a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 17px; height: 1.8px; background: var(--navy-800); border-radius: 2px; }

/* ---------- sections ---------- */
section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-tight { padding-top: 0; }
.bg-white { background: var(--paper-2); }
.bg-line-top { border-top: 1px solid var(--line); }

.dark {
  background:
    radial-gradient(1100px 520px at 12% -5%, rgba(46,134,216,.20), transparent 62%),
    radial-gradient(900px 460px at 92% 108%, rgba(200,16,46,.16), transparent 60%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #dbe4f1;
}
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .lede { color: #b8c8de; }
.dark .muted { color: #8fa4c1; }
.dark a { color: var(--blue-200); }
.dark a:hover { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 0;
  text-align: center;
}
.hero-mark { width: 96px; margin: 0 auto 28px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.35rem);
  letter-spacing: -0.032em;
  margin-bottom: 6px;
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(96deg, #ff5f6d 0%, var(--red-500) 55%, #ff8080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
  font-weight: 550;
  color: #cfdcee;
  margin: 20px auto 0;
  max-width: 660px;
  letter-spacing: -0.01em;
}
.hero-body { max-width: 640px; margin: 18px auto 0; color: #a8bcd8; font-size: 1.03rem; }
.hero .cta-row { margin-top: 34px; justify-content: center; }

.hero-rule {
  width: 78px; height: 3px; border-radius: 2px;
  background: var(--red-500);
  margin: 30px auto 0;
}
.hero-motto {
  margin-top: 18px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8ba3c4;
}

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 30px;
  margin: 40px auto 0;
  max-width: 900px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.trust li {
  list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: #a9bdd8;
}
.trust svg { flex: none; }

/* ---------- app window mock ---------- */
.mock-stage { padding: 62px 0 84px; margin-top: 46px; }
.mock {
  max-width: 940px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  background: #fbfaf7;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 60px rgba(0,0,0,.42), 0 60px 140px rgba(0,0,0,.34);
  text-align: left;
  font-size: 13px;
  color: var(--ink);
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px;
  background: #f0eee9;
  border-bottom: 1px solid #e2dfd8;
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-title {
  margin-left: 10px; font-size: 11.5px; font-weight: 650;
  color: #7d8492; letter-spacing: .04em;
}
.mock-body { display: flex; min-height: 372px; }
.mock-side {
  width: 178px; flex: none;
  background: #fff;
  border-right: 1px solid #eae7e0;
  padding: 16px 13px;
}
.mock-brand { display: flex; align-items: center; gap: 8px; }
.mock-brand img { width: 22px; }
.mock-brand b { font-size: 14px; letter-spacing: .04em; color: var(--navy-800); }
.mock-tag { font-size: 10.5px; color: #8b9099; margin: 3px 0 15px 30px; }
.mock-nav { display: flex; flex-direction: column; gap: 3px; }
.mock-nav i {
  font-style: normal; font-size: 12.5px; padding: 7px 10px;
  border-radius: 8px; color: #4c5361;
}
.mock-nav i.on { background: var(--navy-700); color: #fff; font-weight: 600; }
.mock-status {
  display: flex; align-items: center; gap: 7px;
  margin-top: 24px; padding-top: 13px;
  border-top: 1px solid #eae7e0;
  font-size: 10.5px; color: #78808d;
}
.mock-status .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34a853; box-shadow: 0 0 0 3px rgba(52,168,83,.16);
}
.mock-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-bottom: 1px solid #eae7e0;
}
.mock-head b { font-size: 15px; color: var(--navy-800); }
.mock-pills { display: flex; gap: 4px; }
.mock-pills u {
  text-decoration: none; font-size: 10.5px; padding: 4px 10px;
  border-radius: 999px; border: 1px solid #e2dfd8; color: #6b7280; background: #fff;
}
.mock-pills u.on { background: var(--navy-700); border-color: var(--navy-700); color: #fff; font-weight: 600; }
.mock-thread { padding: 18px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.mock-msg { max-width: 84%; padding: 10px 14px; border-radius: 13px; line-height: 1.55; font-size: 12.5px; }
.mock-msg.you { align-self: flex-end; background: var(--navy-700); color: #fff; border-bottom-right-radius: 4px; }
.mock-msg.ai { align-self: flex-start; background: #fff; border: 1px solid #eae7e0; border-bottom-left-radius: 4px; }
.mock-cite {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px; padding: 3px 9px;
  background: #eef3fa; border: 1px solid #d6e3f4; border-radius: 999px;
  font-size: 10.5px; color: var(--navy-600); font-weight: 600;
}
.mock-compose {
  margin: 0 18px 18px; padding: 11px 13px;
  border: 1px solid #e2dfd8; border-radius: 11px; background: #fff;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: #9aa0aa;
}
.mock-send {
  margin-left: auto; padding: 6px 15px; border-radius: 8px;
  background: var(--navy-700); color: #fff; font-size: 11.5px; font-weight: 650;
}

/* ---------- pillars ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: .99rem; }
.card-num {
  font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  color: var(--red-600); text-transform: uppercase; margin-bottom: 14px;
}
.dark .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.13);
  box-shadow: none;
}
.dark .card p { color: #b7c7dd; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(19,64,124,.11), rgba(12,98,175,.07));
  border: 1px solid rgba(19,64,124,.14);
  margin-bottom: 18px;
}
.dark .icon-badge {
  background: linear-gradient(160deg, rgba(169,203,239,.16), rgba(169,203,239,.05));
  border-color: rgba(169,203,239,.22);
}

/* ---------- feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 46px 0;
}
.feature + .feature { border-top: 1px solid var(--line); }
.feature.flip .feature-visual { order: -1; }
.feature h3 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); letter-spacing: -0.02em; }
.feature p { color: var(--ink-2); }
.feature-visual { display: flex; justify-content: center; }
.feature-visual svg { width: 100%; max-width: 420px; height: auto; }

/* ---------- checklist ---------- */
.checks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.checks svg { flex: none; margin-top: 4px; }
.dark .checks li { color: #b7c7dd; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.chip {
  padding: 9px 19px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: .95rem; font-weight: 550; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.dark .chip {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #cfdcee; box-shadow: none;
}

/* ---------- pull quote / statement band ---------- */
.statement { text-align: center; }
.statement p {
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -0.022em;
  color: var(--navy-800);
  max-width: 820px; margin: 0 auto;
}
.dark .statement p, .statement.dark p { color: #fff; }
.statement .sig {
  margin-top: 22px; font-size: .8rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red-600);
}
.dark .statement .sig, .statement.dark .sig { color: #ff8a94; }

/* ---------- diagram ---------- */
.diagram { max-width: 880px; margin: 0 auto; }
.diagram svg { width: 100%; height: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq details[open] { background: transparent; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 44px 21px 0;
  position: relative;
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.012em;
  color: var(--navy-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--red-600);
  border-bottom: 2px solid var(--red-600);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .answer { padding: 0 30px 24px 0; color: var(--ink-2); }
.dark .faq details { border-color: rgba(255,255,255,.14); }
.dark .faq summary { color: #fff; }
.dark .faq .answer { color: #b7c7dd; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; max-width: 760px; }
.step {
  display: grid; grid-template-columns: 46px 1fr; gap: 20px; align-items: start;
}
.step-n {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-700); color: #fff;
  font-weight: 750; font-size: 1.02rem;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--ink-2); font-size: 1rem; }

/* ---------- specs table ---------- */
.specs { width: 100%; border-collapse: collapse; margin-top: 8px; }
.specs th, .specs td {
  text-align: left; padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem; vertical-align: top;
}
.specs th { width: 210px; font-weight: 650; color: var(--navy-800); }
.specs td { color: var(--ink-2); }

/* ---------- callout ---------- */
.callout {
  border-left: 3px solid var(--red-600);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  color: var(--ink-2);
}
.callout strong { color: var(--navy-800); }
.dark .callout { border-color: #ff8a94; color: #b7c7dd; }
.dark .callout strong { color: #fff; }

/* ---------- final CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.cta-band .lede { max-width: 620px; margin: 0 auto 30px; }
.cta-band .cta-row { justify-content: center; }
.statement .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #93a6c2;
  padding: 62px 0 34px;
  font-size: .94rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { width: 202px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; color: #8098b8; font-size: .93rem; }
.site-footer h4 {
  font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer a { color: #93a6c2; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: .86rem; color: #6f86a6;
}
.footer-motto { font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; color: #ff8a94; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: 78px 0 62px; text-align: center; }
.page-hero .lede { max-width: 700px; margin-left: auto; margin-right: auto; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.flip .feature-visual { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 66px 0; }
  .hero { padding-top: 74px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 20px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line-2); color: var(--red-600); }
  .site-nav .btn { margin-top: 14px; border-bottom: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-stage { padding-top: 44px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .specs th { width: auto; display: block; padding-bottom: 2px; border: none; }
  .specs td { display: block; padding-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* ==========================================================================
   Pricing
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.price.featured {
  border-color: var(--navy-700);
  box-shadow: var(--shadow-md);
}
.price-flag {
  position: absolute; top: -13px; left: 30px;
  padding: 5px 14px; border-radius: 999px;
  background: var(--red-600); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.price-name {
  font-size: .76rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.price-amount {
  font-size: 2.9rem; font-weight: 750; letter-spacing: -0.035em;
  color: var(--navy-800); line-height: 1; margin-bottom: 6px;
}
.price-amount small { font-size: 1rem; font-weight: 600; letter-spacing: 0; color: var(--muted); }
.price-terms { font-size: .95rem; color: var(--ink-2); margin-bottom: 18px; }
.price .checks { padding-top: 14px; }
.price .checks li { font-size: .95rem; }

.price-note {
  margin-top: 30px; padding: 22px 26px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--red-600);
  border-radius: 4px var(--r) var(--r) 4px;
  color: var(--ink-2); font-size: .98rem;
}
.price-note strong { color: var(--navy-800); }
.dark .price-note {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13);
  border-left-color: #ff8a94; color: #b7c7dd;
}
.dark .price-note strong { color: #fff; }

/* ==========================================================================
   Registration form
   ========================================================================== */
.form-shell {
  max-width: 760px; margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 40px 34px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .9rem; font-weight: 650; color: var(--navy-800);
  letter-spacing: -0.005em;
}
.field .hint { font-weight: 400; color: var(--muted); }
.field input[type="text"],
.field input[type="email"],
.field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235d6472' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(19,64,124,.14);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--red-600); }

.consent {
  display: grid; grid-template-columns: 22px 1fr; gap: 13px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
  font-size: .95rem; color: var(--ink-2); line-height: 1.55;
}
.consent input[type="checkbox"] {
  width: 20px; height: 20px; margin: 2px 0 0;
  accent-color: var(--navy-700);
  cursor: pointer;
}
.consent label { cursor: pointer; }
.consent a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.form-actions { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-actions .btn { padding: 15px 32px; }
.form-foot {
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: .86rem; color: var(--muted); line-height: 1.6;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-error {
  margin: 0 0 26px;
  padding: 15px 18px;
  border-radius: 11px;
  background: #fdf1ee;
  border: 1px solid #f0cabe;
  color: #8f2f1a;
  font-size: .95rem;
}
.form-error ul { margin: 8px 0 0; padding-left: 20px; }

/* ==========================================================================
   System specification table
   ========================================================================== */
.spec-block { max-width: 880px; margin: 0 auto; }
.spec-group { margin-bottom: 44px; }
.spec-group > h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-800);
  margin-bottom: 0;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left; padding: 16px 6px;
  border-bottom: 1px solid var(--line);
  vertical-align: top; font-size: 1rem;
}
.spec-table th { width: 240px; font-weight: 650; color: var(--navy-800); }
.spec-table td { color: var(--ink-2); }
.spec-table td b { color: var(--navy-800); font-weight: 650; }
.yes, .no {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.yes { background: #e9f3ec; color: #2f6b41; }
.no  { background: #fbeceb; color: #a53324; }

/* ==========================================================================
   Legal documents
   ========================================================================== */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 {
  font-size: 1.28rem;
  letter-spacing: .01em;
  margin: 52px 0 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 1.04rem; margin: 30px 0 10px; color: var(--navy-700);
}
.legal p { font-size: 1rem; line-height: 1.72; color: var(--ink-2); margin-bottom: 1em; }
.legal p strong { color: var(--navy-800); }
.legal ul { margin: 0 0 1.2em; padding: 0; list-style: none; }
.legal .legal-alpha li, .legal .legal-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 1rem; line-height: 1.7; color: var(--ink-2);
}
.legal .legal-list li::before {
  content: ""; position: absolute; left: 2px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--red-600);
}
.legal-meta {
  display: inline-block;
  margin-bottom: 34px; padding: 7px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .86rem; font-weight: 600; color: var(--muted);
}
.legal-toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  margin-bottom: 46px;
}
.legal-toc h4 {
  margin: 0 0 14px; font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-600);
}
.legal-toc ol {
  margin: 0; padding: 0; list-style: none;
  columns: 2; column-gap: 34px;
  font-size: .93rem; line-height: 1.9;
}
.legal-toc a { color: var(--ink-2); }
.legal-toc a:hover { color: var(--navy-700); }

/* ==========================================================================
   Thank-you / confirmation
   ========================================================================== */
.confirm { max-width: 660px; margin: 0 auto; text-align: center; }
.confirm-mark {
  width: 72px; height: 72px; border-radius: 50%;
  margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3);
}
.download-card {
  max-width: 620px; margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.download-card .btn { margin-top: 8px; }

@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; }
  .legal-toc ol { columns: 1; }
}
@media (max-width: 760px) {
  .form-shell { padding: 28px 22px 24px; border-radius: var(--r); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .spec-table th { width: auto; display: block; padding-bottom: 2px; border: none; }
  .spec-table td { display: block; padding-top: 0; }
  .price-amount { font-size: 2.5rem; }
}


/* ==========================================================================
   Ownership pricing — trial / buy-once / optional upgrades
   ========================================================================== */
.price-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.price-amount .per { font-size: 1.05rem; font-weight: 600; letter-spacing: 0; color: var(--muted); }
.price-sub {
  font-size: .78rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--red-600); margin: 0 0 16px;
}
.price-optional { border-style: dashed; }
.price-keeps {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-size: .95rem; font-weight: 600; color: var(--navy-800);
}
.dark .price-keeps { border-color: rgba(255,255,255,.14); color: #fff; }

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; min-width: 560px;
  border-collapse: collapse;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-2);
  text-align: left;
  font-size: .98rem;
  vertical-align: middle;
}
.compare thead th {
  background: var(--navy-800);
  color: #fff;
  font-size: .8rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-bottom: none;
}
.compare thead th:first-child { background: var(--navy-900); }
.compare tbody th {
  font-weight: 600; color: var(--navy-800);
  width: 44%;
}
.compare td { text-align: center; color: var(--ink-2); width: 28%; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: rgba(19,64,124,.022); }
.compare .tick { color: #2f6b41; font-weight: 800; font-size: 1.1rem; }
.compare .dash { color: #b9b5ab; font-weight: 700; }
.compare .em { font-weight: 650; color: var(--navy-800); }
.compare-note { margin-top: 18px; font-size: .88rem; color: var(--muted); }

/* ---------- big closing statement ---------- */
.keepline {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 650; letter-spacing: -0.02em;
  color: var(--navy-800); line-height: 1.35;
}
.dark .keepline { color: #fff; }

@media (max-width: 960px) {
  .price-grid.two { grid-template-columns: 1fr; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .cta-row, .nav-toggle, .form-shell { display: none !important; }
  .legal-toc { display: none !important; }
  .dark { background: #fff !important; color: #000 !important; }
  .dark h1, .dark h2, .dark h3 { color: #000 !important; }
}
