/* ============================================================
   Boomerang Pass™ — Website Styles
   Internal version label: Boomerang-Pass-Site-v34-Spec
   ------------------------------------------------------------
   Drop this entire file into:
     • Squarespace → Design → Custom CSS
     • or WordPress block theme → Additional CSS / theme.css
   ------------------------------------------------------------
   Owner of CSS asset: Drew Snow / Boomerang Pass™
   ============================================================ */

:root {
  /* Brand palette (locked) ---------------------------------- */
  --maroon:        #6B1F2A;   /* primary authority + CTA color */
  --maroon-deep:   #531822;   /* hover / pressed maroon */
  --navy:          #14233F;   /* dark navy footer + headlines */
  --navy-soft:     #1F3357;
  --parchment:     #F6EFDF;   /* warm bg, primary tonal section */
  --parchment-2:   #FBF6E8;   /* lighter parchment */
  --paper:         #FFFFFF;   /* white cards */
  --ink:           #1B1B1B;   /* body text on light bg */
  --ink-soft:      #4A4A4A;
  --rule:          #E5DEC9;   /* parchment rule line */
  --aqua:          #2BB5B8;   /* small accent (logo derived) */

  /* Type tokens --------------------------------------------- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-card: 0 4px 18px rgba(20, 35, 63, 0.08);
  --shadow-soft: 0 2px 6px rgba(20, 35, 63, 0.06);
  --radius:      10px;
  --radius-sm:   6px;
  --maxw:        1240px;
}

/* ----- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--maroon-deep); text-decoration: underline; }

/* ----- Headings --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}

/* ----- Layout container ------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   FULL-WIDTH BANNER (top of every page, nothing beside it)
   ============================================================ */
.brand-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #F2F3EE;
  border-bottom: 1px solid var(--rule);
  line-height: 0;
}
.brand-banner a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
}

/* ============================================================
   NAVIGATION (beneath banner, never above, never beside)
   ============================================================ */
.site-nav {
  width: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-nav .nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.site-nav ul a {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
.site-nav ul a.nav-open-app {
  color: var(--maroon);
  font-weight: 600;
}
.site-nav ul a.nav-open-app:hover {
  color: var(--maroon-deep);
}
.site-nav ul a:hover,
.site-nav ul a.is-active {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: var(--paper) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 11px 20px;
  border-radius: 999px;
  border-bottom: 0 !important;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--maroon-deep);
  color: var(--paper) !important;
  transform: translateY(-1px);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav .nav-inner { flex-wrap: wrap; }
  .site-nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--rule);
    padding-top: 6px;
  }
  .site-nav ul.is-open { display: flex; }
  .site-nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--rule);
  }
  .site-nav ul li:last-child { border-bottom: 0; }
  .site-nav ul a { display: block; padding: 12px 0; }
  .nav-cta { order: 99; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, transform .15s, box-shadow .15s, color .15s;
}
.btn-primary { background: var(--maroon); color: var(--paper); }
.btn-primary:hover { background: var(--maroon-deep); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
}
.btn-secondary:hover { background: var(--navy); color: var(--paper); }

/* v34 — Returning reviewer CTA (Open Beta App) */
.reviewer-cta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 35, 63, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.btn-open-app {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid rgba(107, 31, 42, 0.45);
  padding: 10px 22px;
  font-size: 0.95rem;
}
.btn-open-app:hover {
  background: var(--maroon);
  color: var(--paper);
  border-color: var(--maroon);
}
.cta-helper {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.cta-helper a {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-helper a:hover { color: var(--maroon-deep); }
@media (max-width: 880px) {
  .reviewer-cta { align-items: center; text-align: center; }
}
.btn-light {
  background: var(--paper);
  color: var(--navy);
}
.btn-light:hover { background: var(--parchment-2); color: var(--maroon); }

/* ============================================================
   SECTION RHYTHM (alternating parchment / white blocks)
   ============================================================ */
section.block {
  padding: 80px 0;
}
section.block.parchment   { background: var(--parchment); }
section.block.parchment-2 { background: var(--parchment-2); }
section.block.white       { background: var(--paper); }
section.block.maroon {
  background: var(--maroon);
  color: var(--paper);
}
section.block.maroon h1,
section.block.maroon h2,
section.block.maroon h3 { color: var(--paper); }
section.block.maroon .eyebrow { color: rgba(255,255,255,0.85); }

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ============================================================
   HERO (page-specific)
   ============================================================ */
.hero {
  background: var(--parchment);
  padding: 84px 0 80px;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 22px;
}
.hero .trustline {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  margin: 6px 0 26px;
  box-shadow: var(--shadow-soft);
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-text { max-width: 820px; }
.hero.center .hero-text { margin: 0 auto; text-align: center; }
.hero.center .lead { margin-left: auto; margin-right: auto; }
.hero.center .cta-row { justify-content: center; }

@media (max-width: 720px) {
  .hero { padding: 56px 0 60px; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.card h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.card p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
}
.card .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--maroon);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid, .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: var(--parchment-2);
}
.split-text h2 { margin-bottom: 14px; }
.split-text ul { padding-left: 20px; color: var(--ink-soft); margin: 0 0 18px; }
.split-text ul li { margin-bottom: 8px; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > .split-media { order: 0; }
}

/* ============================================================
   COMPARISON TABLE (homepage Boomerang Difference)
   ============================================================ */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 0.97rem;
}
.compare thead th {
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
}
.compare tbody td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td:first-child {
  color: var(--navy);
  font-weight: 600;
}
.compare tbody td:last-child {
  background: var(--parchment-2);
  color: var(--ink);
}
@media (max-width: 720px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare tr {
    margin-bottom: 14px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .compare td {
    border-bottom: 1px solid var(--rule);
    padding: 14px 18px 16px;
  }
  .compare tbody td:first-child { background: var(--navy); color: var(--paper); }
  .compare tbody td:last-child { background: var(--parchment-2); color: var(--ink); }
  .compare td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.75;
  }
  .compare td:first-child[data-label]::before { color: var(--paper); }
  .compare td:nth-child(2)[data-label]::before { color: var(--ink-soft); }
  .compare td:last-child[data-label]::before { color: var(--maroon); }
}

/* ============================================================
   STEPS (numbered)
   ============================================================ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  border-top: 4px solid var(--maroon);
  position: relative;
  box-shadow: var(--shadow-card);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px; left: 22px;
  width: 44px; height: 44px;
  background: var(--maroon);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(107, 31, 42, 0.35);
}
.step h3 { color: var(--navy); margin: 8px 0 8px; font-size: 1.1rem; }
.step p  { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

section.block.maroon .step {
  background: var(--paper);
  color: var(--ink);
}
section.block.maroon .step h3 { color: var(--navy); }
section.block.maroon .step p { color: var(--ink-soft); }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pullquote {
  background: var(--maroon);
  color: var(--parchment-2);
  padding: 56px 40px;
  border-radius: var(--radius);
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.45;
  margin: 0 auto 14px;
  max-width: 820px;
}
.pullquote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   CHECKLIST
   ============================================================ */
ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1em;
}
ul.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
ul.checklist li:last-child { border-bottom: 0; }
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 6px; top: 11px;
  width: 22px; height: 22px;
  background: var(--maroon);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================================
   TWO-COLUMN BETA LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   FORMS
   ============================================================ */
form.bp-form {
  background: var(--paper);
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
form.bp-form h3 { margin-top: 0; }
form.bp-form .field { margin-bottom: 16px; }
form.bp-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form.bp-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
}
form.bp-form .req { color: var(--maroon); }
form.bp-form input,
form.bp-form select,
form.bp-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
form.bp-form input:focus,
form.bp-form select:focus,
form.bp-form textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(107, 31, 42, 0.12);
}
form.bp-form textarea { min-height: 130px; resize: vertical; }
form.bp-form .check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
form.bp-form .check input { width: auto; }
form.bp-form button[type="submit"] { width: 100%; margin-top: 6px; }
form.bp-form .form-status { margin-top: 14px; font-size: 0.95rem; min-height: 1.4em; }
form.bp-form .form-status.success { color: #14693a; }
form.bp-form .form-status.error   { color: #b3261e; }
form.bp-form .form-status.pending { color: var(--ink-soft); }

@media (max-width: 540px) {
  form.bp-form .field-row { grid-template-columns: 1fr; }
  form.bp-form { padding: 24px; }
}

/* ============================================================
   CTA BANNER (final CTA on most pages)
   ============================================================ */
.cta-banner {
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 52px 40px;
  text-align: center;
}
.cta-banner h2 { color: var(--paper); margin-bottom: 12px; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 20px;
}
.cta-banner .btn-primary { background: var(--maroon); }
.cta-banner .btn-primary:hover { background: var(--paper); color: var(--maroon); }

/* ============================================================
   FOOTER (dark navy, full width)
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
  font-size: 0.95rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--parchment-2);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; }
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.site-footer .brand-block .footer-mark {
  background: transparent;
  display: inline-block;
  padding: 0;
  border-radius: 0;
  margin-bottom: 14px;
}
.site-footer .brand-block .footer-mark img {
  height: 96px;
  width: auto;
  display: block;
}
.site-footer .brand-block p { color: rgba(255, 255, 255, 0.78); line-height: 1.6; max-width: 380px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

@media (max-width: 880px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.lead-w { max-width: 760px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--maroon); color: var(--paper);
  padding: 8px 14px; border-radius: 4px; z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================================
   ACCESSIBILITY — focus states
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--maroon);
  outline-offset: 2px;
}

/* ============================================================
   Editorial image-band — full-width photo strips
   used between content sections (added v7, image pass 2)
   ============================================================ */
.block.image-band {
  padding: 0;
  background: var(--navy);
  line-height: 0;
}
.block.image-band .full-bleed {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 720px) {
  .block.image-band .full-bleed { max-height: 320px; }
}

/* ============================================================
   Figure frame — captioned image inside a content block
   ============================================================ */
.figure-frame {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
}
.figure-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(20, 35, 63, 0.08);
}
.figure-frame figcaption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 14px;
  font-style: italic;
}

/* ============================================================
   v13 — Hero split, trustline band, product cards, mid-CTA,
   How-grid, reveal motion. Editorial restraint, not sparseness.
   ============================================================ */

/* Hero split: headline left, product card right */
.hero.hero-split { padding: 76px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero.hero-split .hero-text { text-align: left; max-width: none; }
.hero.hero-split .lead { margin-left: 0; margin-right: 0; max-width: 560px; }
.hero.hero-split .cta-row { justify-content: flex-start; }
.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.product-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px -28px rgba(20, 35, 63, 0.45),
              0 4px 12px -4px rgba(20, 35, 63, 0.18);
  background: var(--paper);
  max-width: 360px;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(20, 35, 63, 0.08);
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.product-card-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.product-card--maroon { border-color: rgba(107, 31, 42, 0.18); }

/* v33 — Landscape variant for desktop app screenshots (1600×1025 source) */
.product-card--landscape {
  aspect-ratio: auto;
  max-width: 560px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border: none;
}
.product-card--landscape img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 56px -28px rgba(20, 35, 63, 0.45),
              0 4px 12px -4px rgba(20, 35, 63, 0.18);
  border: 1px solid rgba(20, 35, 63, 0.08);
}
.product-card--landscape.product-card--maroon img {
  border-color: rgba(107, 31, 42, 0.18);
}
.product-card--landscape figcaption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 14px;
  font-style: italic;
  text-align: center;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero.hero-split .hero-text { text-align: center; }
  .hero.hero-split .lead { margin-left: auto; margin-right: auto; }
  .hero.hero-split .cta-row { justify-content: center; }
  .product-card { max-width: 300px; aspect-ratio: 9 / 16; }
}

/* Trustline band — full-width parchment-2 band immediately under hero */
.trustline-band {
  background: var(--parchment-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.trustline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.trustline-list li {
  padding: 4px 22px;
  border-right: 1px solid rgba(20, 35, 63, 0.18);
  line-height: 1.4;
}
.trustline-list li:last-child { border-right: 0; }
@media (max-width: 720px) {
  .trustline-list { gap: 4px 0; font-size: 0.78rem; }
  .trustline-list li { padding: 4px 12px; }
}

/* Mid-page CTA band — visible between table and how-it-works */
.midcta-band {
  background: var(--parchment);
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.midcta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 32px;
  text-align: center;
}
.midcta-inner p {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
  font-style: italic;
}
@media (max-width: 600px) { .midcta-inner p { font-size: 1.1rem; } }

/* How-it-works grid: product image (left) + vertical steps (right) */
.how-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.how-grid .product-card--floating {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 14;
  background: var(--paper);
}
.how-grid .product-card--floating.product-card--landscape {
  max-width: 520px;
  aspect-ratio: auto;
  background: transparent;
}
.how-grid .product-card--floating.product-card--landscape figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
}
.how-grid figcaption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps-vertical .step {
  counter-increment: stepnum;
}
section.block.maroon .steps-vertical .step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 22px;
  border-radius: 10px;
}
section.block.maroon .steps-vertical .step h3 {
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}
section.block.maroon .steps-vertical .step p {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-grid .product-card--floating { max-width: 280px; }
}

/* Reveal animation: gentle fade-up on scroll. */
/* Default visible — only hide once JS is ready, so no-JS users see content. */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* Brand mark used as section dividers / list ornaments */
.mark-divider {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto 18px;
  opacity: 0.95;
}
