/* ===== LEXI HANDLES IT — WEBSITE STYLES ===== */

/* ── Variables ── */
:root {
  --walnut:     #7D5730;
  --walnut-d:   #5a3d20;
  --walnut-t:   #fdf4ed;
  --sage:       #6B7C5C;
  --sage-d:     #4a5c3c;
  --sage-t:     #eef4ea;
  --cream:      #F5F0E8;
  --cream-d:    #EDE8DD;
  --charcoal:   #2c2c2c;
  --mid:        #555;
  --muted:      #888;
  --white:      #ffffff;
  --border:     #e0d8cc;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: #C4553A;
}
.script-gold {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: #C9A030;
  font-size: 1.3em;
  line-height: 1;
}
/* Smaller version for tight spaces — nav buttons, eyebrows */
.script-gold-sm {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: #C9A030;
  font-size: 1.1em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.btn-walnut  { background: var(--walnut); color: var(--white); border-color: var(--walnut); }
.btn-walnut:hover  { background: var(--walnut-d); border-color: var(--walnut-d); }
.btn-sage    { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage:hover    { background: var(--sage-d); border-color: var(--sage-d); }
.btn-outline { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn-outline:hover { background: var(--walnut-t); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 64px 0; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-logo-img  { height: 90px; width: auto; }
.nav-strap-img { height: 38px; width: auto; margin-left: 6px; }
.nav-actions { display: flex; align-items: center; gap: 10px; width: 100%; }
.nav-actions .btn { padding: 10px 20px; font-size: 0.9rem; }
.nav-btn-logon { margin-left: auto; }

@media (max-width: 680px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-logo-img  { height: 42px; }
  .nav-strap-img { height: 34px; }
  .nav-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 4px;
  }
  .nav-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 7px 4px;
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  }
  .nav-btn-logon { margin-left: 0; }
  .nav-actions .script-gold-sm { font-size: 0.95em; }
}

/* ── HERO ── */
.hero { padding: 0; background: var(--cream); }

/* Image pushed to the right — left cream zone holds the text */
.hero-img-full {
  position: relative;
  background: var(--cream);
  display: flex;
  justify-content: flex-end; /* image sits on the right */
  overflow: hidden;
}
.hero-full-img {
  display: block;
  width: 62%;        /* image takes right 62% of the hero */
  height: auto;
  flex-shrink: 0;
}

/* Text floats over the left cream zone */
.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  width: 34%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-eyebrow {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sage);
  line-height: 1.45;
}
.hero-text-overlay h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  color: var(--walnut-d);
}
.hero-lede {
  color: var(--walnut-d);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 34rem;
  margin: 0;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-list li {
  color: var(--walnut-d);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 600;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hero-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  color: var(--mid);
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-ctas .btn { font-size: clamp(0.88rem, 1.3vw, 1.05rem); padding: 14px 26px; }

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  color: var(--mid);
  font-weight: 600;
}
.hero-tagline em { font-style: italic; color: #C4553A; }
.hero-tagline svg { color: var(--sage); flex-shrink: 0; }

.btn-outline-hero {
  background: transparent;
  color: var(--walnut);
  border: 2px solid var(--walnut);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline-hero:hover { background: var(--walnut-t); }

/* Tablet: narrow the text zone a touch */
@media (max-width: 900px) {
  .hero-full-img { width: 58%; }
  .hero-text-overlay { width: 38%; }
}

/* Mobile: stack — image full width on top, text on cream below */
@media (max-width: 680px) {
  .hero-img-full {
    flex-direction: column;
  }
  .hero-full-img {
    width: 100%;
    order: -1; /* image first */
  }
  .hero-text-overlay {
    position: static;
    transform: none;
    width: 100%;
    background: var(--cream);
    padding: 24px 20px 28px;
    gap: 12px;
  }
  .hero-ctas .btn { font-size: 0.9rem; padding: 12px 20px; }
}

/* ── CHOOSE YOUR SHORTCUT ── */
.choice-section {
  background: var(--cream);
  padding: clamp(34px, 6vw, 64px) 0 clamp(24px, 4vw, 42px);
}
.choice-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 14px 34px rgba(92, 62, 37, 0.08);
}
.choice-title {
  color: var(--walnut-d);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  text-align: center;
  margin-bottom: clamp(18px, 4vw, 30px);
}
.choice-sub {
  color: var(--sage);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(20px, 4vw, 34px);
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 3vw, 28px);
}
.choice-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.choice-card-title {
  color: var(--walnut-d);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  line-height: 1.15;
  text-align: center;
  margin: 0;
}
.choice-card p {
  color: var(--sage);
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
  text-align: center;
  flex: 1;
}
.choice-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 680px) {
  .choice-panel {
    padding: 16px 10px;
  }
  .choice-card {
    padding: 16px 10px;
    gap: 12px;
  }
  .choice-card-title {
    font-size: 1rem;
  }
  .choice-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }
  .choice-btn {
    font-size: 0.78rem;
    padding: 11px 8px;
    white-space: normal;
  }
}
/* ── WHO IS THIS FOR ── */
.for-section { background: var(--cream); }
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.for-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.for-icon { font-size: 2rem; }
.for-card h3 { font-size: 1.1rem; color: var(--walnut); }
.for-card p  { font-size: 0.92rem; color: var(--mid); line-height: 1.7; }

@media (max-width: 720px) {
  .for-grid { grid-template-columns: 1fr; }
}

/* ── FREE TEMPLATES ── */
.templates-section {
  background: var(--cream);
  padding-top: clamp(28px, 5vw, 52px);
}
.templates-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 14px 34px rgba(92, 62, 37, 0.08);
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  text-align: center;
}
/* Heading-style label — matches the h1 "Hi, I'm Lexi" colour and weight */
.section-heading-label {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--walnut-d);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-title { text-align: center; margin-bottom: 10px; }
.templates-section .section-title {
  color: var(--sage) !important;
  font-weight: 500 !important;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem) !important;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  text-align: center;
  color: var(--mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.template-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.template-card:hover { box-shadow: var(--shadow); }
.template-icon {
  width: 40px;
  height: 40px;
  background: var(--walnut-t);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut);
  flex-shrink: 0;
}
.template-card h4 { font-size: 0.95rem; line-height: 1.3; }
.template-card p  { font-size: 0.8rem; color: var(--muted); }
.template-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage);
  background: var(--sage-t);
  padding: 2px 8px;
  border-radius: 20px;
}

/* Dual download buttons on template cards */
.template-downloads {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.dl-excel {
  background: #1d6f42;
  color: #fff;
  border-color: #1d6f42;
}
.dl-excel:hover { background: #155230; border-color: #155230; }
.dl-word {
  background: #2b5898;
  color: #fff;
  border-color: #2b5898;
}
.dl-word:hover { background: #1e3f70; border-color: #1e3f70; }

/* ── FREEBIES CLIPBOARD GRID ── */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(18px, 4vw, 64px);
  row-gap: clamp(34px, 6vw, 72px);
  margin: clamp(28px, 5vw, 44px) 0 clamp(28px, 5vw, 44px);
}
@media (min-width: 920px) {
  .fb-grid { grid-template-columns: repeat(3, 1fr); }
}

.fb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.fb-card:hover { transform: translateY(-5px); }
.fb-card:hover .fb-frame {
  box-shadow:
    inset 0 0 0 1px rgba(40,24,10,.4),
    inset 0 2px 5px rgba(255,228,190,.22),
    inset 0 -6px 12px rgba(30,18,8,.4),
    0 32px 52px -20px rgba(40,24,10,.65),
    0 8px 20px rgba(40,24,10,.28);
}

/* Number */
.fb-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1;
  color: #5E3F22;
  font-variant-numeric: lining-nums;
  margin-bottom: clamp(8px, 1.6vw, 20px);
}

/* Wooden clipboard board */
.fb-frame {
  position: relative;
  width: 100%;
  padding: clamp(30px,4.6vw,52px) clamp(10px,1.8vw,20px) clamp(12px,1.8vw,22px);
  display: flex;
  justify-content: center;
  border-radius: clamp(9px, 1.4vw, 16px);
  background:
    linear-gradient(115deg, rgba(255,245,225,0) 30%, rgba(255,247,230,.42) 45%, rgba(255,248,232,0) 58%),
    repeating-linear-gradient(94deg, rgba(60,36,16,.18) 0 1px, rgba(120,82,44,.05) 1px 3px, rgba(40,24,10,.12) 3px 5px),
    linear-gradient(165deg, #92693c 0%, #7D5730 45%, #5f4123 100%);
  box-shadow:
    inset 0 0 0 1px rgba(40,24,10,.4),
    inset 0 2px 5px rgba(255,228,190,.22),
    inset 0 -6px 12px rgba(30,18,8,.4),
    0 24px 40px -22px rgba(40,24,10,.55),
    0 5px 12px rgba(40,24,10,.22);
  transition: box-shadow 0.22s ease;
}

/* Chrome clip */
.fb-clip {
  position: absolute;
  top: clamp(7px, 1.1vw, 13px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 9vw, 108px);
  height: clamp(34px, 5vw, 58px);
  border-radius: clamp(26px,4vw,46px) clamp(26px,4vw,46px) clamp(6px,1vw,10px) clamp(6px,1vw,10px);
  z-index: 3;
  background: linear-gradient(180deg,#fbfbfc 0%,#dadbdf 30%,#b3b4b9 50%,#cccdd2 70%,#eceef0 100%);
  box-shadow:
    0 6px 10px rgba(40,28,16,.34),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -3px 4px rgba(0,0,0,.2);
}
/* Hanging hole */
.fb-clip::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(8px, 1.2vw, 13px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #6f7075 0%, #303135 70%, #16171a 100%);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.6);
}
/* Hinge seam */
.fb-clip::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: 30%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.28) 18%, rgba(0,0,0,.28) 82%, transparent);
  box-shadow: 0 1px 0 rgba(255,255,255,.7);
}

/* Document sheet */
.fb-doc {
  position: relative;
  width: 100%;
  aspect-ratio: 17 / 22;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 44px -24px rgba(44,42,38,.42), 0 3px 10px rgba(44,42,38,.08);
}
.fb-doc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Title */
.fb-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 40px);
  line-height: 1.08;
  color: #5E3F22;
  margin-top: clamp(14px, 2.4vw, 26px);
  text-align: center;
  text-wrap: balance;
}

/* Description */
.fb-desc {
  margin-top: clamp(5px, 0.8vw, 9px);
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--sage);
  text-align: center;
  max-width: 26ch;
  text-wrap: pretty;
}

/* Email capture */
.capture-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 32px);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}
.capture-box h3 { margin-bottom: 20px; font-size: clamp(1rem, 2.5vw, 1.3rem); line-height: 1.4; }
.capture-box .btn { display: flex; }
.capture-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capture-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.capture-form input:focus { border-color: var(--walnut); }
.capture-form input::placeholder { color: var(--muted); }
.capture-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ── LEXI APP BRIDGE ── */
.app-bridge-section {
  background: var(--walnut);
  padding: 0;
  text-align: center;
}
.app-bridge-section .section-title {
  color: var(--sage) !important;
  font-weight: 500 !important;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem) !important;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── App Showcase — 3-page device mockup ── */
.bridge-section-inset {
  background:
    #8A6338;
  overflow: hidden;
}
.app-bridge-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  align-items: center;
  gap: clamp(20px, 5vw, 56px);
}
.app-bridge-copy {
  text-align: left;
}
.app-bridge-copy h2,
.app-bridge-copy p {
  margin-left: 0;
  margin-right: 0;
}
.app-bridge-portrait {
  align-self: end;
  display: flex;
  justify-content: center;
}
.app-bridge-portrait img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(35, 20, 8, 0.28));
}

@media (max-width: 720px) {
  .app-bridge-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .app-bridge-copy {
    text-align: center;
  }
  .app-bridge-copy h2,
  .app-bridge-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .app-bridge-portrait img {
    width: min(68vw, 250px);
  }
}
.app-showcase-scroller {
  height: auto;
  overflow: visible;
  scroll-snap-type: none;
  margin-top: 0;
  background: #8A6338;
}
.showcase-page {
  min-height: 0;
  scroll-snap-align: none;
  position: relative;
  overflow: visible;
  background: #8A6338;
  padding: clamp(34px, 7vw, 76px) 0 clamp(48px, 9vw, 96px);
}
.showcase-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
}


.mockup-story {
  width: min(100% - 32px, 620px);
  margin: 0 auto clamp(18px, 4vw, 30px);
  text-align: center;
  color: var(--white);
}
.mockup-kicker {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.mockup-story h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 8px;
}
.mockup-story p:not(.mockup-kicker) {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 48ch;
}
.mockup-tablet-row,
.app-showcase-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 7vw, 64px);
}
.app-showcase-cta .btn-outline {
  background: #C9A030;
  color: var(--white);
  border-color: #C9A030;
}
.app-showcase-cta .btn-outline:hover {
  background: #b48d25;
  border-color: #b48d25;
}

/* Device frame */
.sc-frame { position: relative; }
.sc-device {
  position: relative;
  background: linear-gradient(150deg, #3d3d3f 0%, #19191b 46%, #0b0b0c 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.12),
    inset 0 3px 4px rgba(255,255,255,.20),
    inset 0 -4px 10px rgba(0,0,0,.6),
    0 16px 30px -12px rgba(35,26,12,.36),
    0 38px 66px -22px rgba(35,26,12,.48),
    0 66px 100px -44px rgba(35,26,12,.34);
}
.mockup-tablet {
  width: min(94vw, 520px);
  aspect-ratio: 616 / 801;
  border-radius: clamp(24px, 7vw, 40px);
}
.mockup-phone {
  width: min(42vw, 290px);
  aspect-ratio: 400 / 775;
  border-radius: clamp(28px, 8vw, 54px);
}
.sc-screen {
  position: absolute;
  overflow: hidden;
  background: #fff;
}
.mockup-tablet .sc-screen {
  inset: 4%;
  border-radius: clamp(10px, 3vw, 16px);
  background: #F5F0E8;
}
.mockup-phone .sc-screen {
  inset: 3.5%;
  border-radius: clamp(24px, 7vw, 42px);
  background: #fff;
}
.sc-screen-placeholder {
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,0) 42%),
    #F5F0E8;
}
.sc-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
.sc-cam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #070708;
  box-shadow: inset 0 0 0 1px rgba(120,150,180,.25);
}
.sc-tablet .sc-cam {
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}
.sc-b-vol,
.sc-b-pwr {
  position: absolute;
  background: #161618;
  border-radius: 2px;
}
.sc-b-vol {
  left: -3px;
  width: 3px;
  height: 54px;
  top: 150px;
  box-shadow: 0 78px 0 #161618, 0 146px 0 #161618;
}
.sc-b-pwr {
  right: -3px;
  width: 3px;
  height: 92px;
  top: 210px;
}
.sc-shadow {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 86%;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(45,33,16,.32), rgba(45,33,16,0) 72%);
  filter: blur(9px);
  z-index: -1;
}
.mockup-tablet-frame .sc-shadow {
  width: 78%;
  height: 48px;
  bottom: -22px;
}

@media (max-width: 760px) {
  .showcase-page {
    padding-top: 24px;
  }
  .mockup-tablet {
    width: min(94vw, 380px);
  }
  .mockup-phone {
    width: min(42vw, 176px);
  }
}


/* Scroll hint */
.sc-hint {
  display: none;
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font: 600 13px/1 'Segoe UI', system-ui, sans-serif;
  letter-spacing: .4px;
  color: #9a9486;
  opacity: .9;
  animation: sc-bob 1.8s ease-in-out infinite;
}
.sc-hint svg { width: 22px; height: 22px; }
@keyframes sc-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%       { transform: translate(-50%, 7px); }
}

/* ── FREE GUIDES ── */
.guides-section { background: var(--white); }

.guides-block {
  margin-top: 48px;
}
.guides-block-header {
  margin-bottom: 24px;
}
.guides-block-header h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin: 6px 0 4px;
  color: var(--charcoal);
}
.guides-block-header p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* Badge labels */
.guides-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--walnut);
  background: var(--walnut-t);
  border: 1px solid rgba(125,87,48,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.guides-badge--sage {
  color: var(--sage);
  background: var(--sage-t);
  border-color: rgba(107,124,92,0.2);
}

/* Journey grid — 4 numbered cards */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.journey-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.journey-card:hover { box-shadow: var(--shadow); }
.journey-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8A6338;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-card h4 {
  font-size: 0.92rem;
  line-height: 1.3;
  color: var(--charcoal);
}
.journey-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* PDF download button (for future use when guides become PDFs) */
.dl-pdf {
  background: #C0392B;
  color: #fff;
  border-color: #C0392B;
}
.dl-pdf:hover { background: #922b21; border-color: #922b21; }

/* Guide read button (HTML guides, opens in new tab) */
.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.guide-actions .dl-btn {
  flex: 1 1 130px;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
.dl-guide {
  background: var(--walnut);
  color: #fff;
  border-color: var(--walnut);
}
.dl-guide:hover { background: var(--walnut-d); border-color: var(--walnut-d); }
.dl-podcast {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.dl-podcast:hover {
  background: var(--sage-d);
  border-color: var(--sage-d);
}

/* Responsive */
@media (max-width: 900px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .journey-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
}

/* ── BRIDGE ── */
.bridge-section {
  background: var(--walnut);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.bridge-section h2 { margin-bottom: 12px; }
.bridge-section p  { font-size: 1.05rem; opacity: 0.85; max-width: 560px; margin: 0 auto 28px; }
.bridge-section .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.bridge-section .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--cream); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 8px 8px;
  text-align: center;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--walnut);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-mockup-pair {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px auto 0;
}
.step-mockup-pair img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 8px;
}
.step-mockup-placeholder {
  aspect-ratio: 9 / 14;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.42), rgba(255,255,255,0) 44%),
    var(--cream);
  border: 1px dashed rgba(125,87,48,0.34);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 12px 8px;
  min-height: 170px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p  { font-size: 0.88rem; color: var(--mid); }
.step-num { margin-bottom: 8px !important; }
.step-desc-lg { font-size: 1.1rem !important; font-weight: 600; color: var(--charcoal) !important; margin-bottom: 12px; }
.step-mockup-col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.step-mockup-col img { width: 100%; height: auto; aspect-ratio: 9/16; object-fit: cover; object-position: top; }
.step-img-label { font-size: 0.85rem; font-weight: 700; color: var(--sage); text-align: center; }

@media (max-width: 640px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* ── PRICING ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  background: var(--white);
}
.price-card.featured {
  border-color: var(--walnut);
  border-width: 2px;
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--walnut);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 6px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--walnut);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--mid); }
.price-desc {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--mid);
}
.price-features li .tick { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.price-features li .lock { color: var(--muted); flex-shrink: 0; margin-top: 2px; }
.price-features li.locked { color: #bbb; }
.price-coming {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}
.price-limit {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--walnut);
  background: var(--walnut-t);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.price-was {
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Early adopter banner */
.early-adopter-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--walnut-t);
  border: 2px solid var(--walnut);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 36px;
}
.ea-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ea-text { display: flex; flex-direction: column; gap: 4px; }
.ea-text strong { font-size: 0.95rem; color: var(--walnut); }
.ea-text span   { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.featured { order: initial; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--cream);
  padding: 32px 0;
  text-align: center;
}
.trust-strip p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 600;
}
.trust-item svg { color: var(--sage); }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 6px; }
.footer-logo-img  { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-strap-img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ── Google Font ── */


/* Trade-specific guide modal */
.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}
.guide-modal[hidden] {
  display: none;
}
.guide-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.62);
}
.guide-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  padding: clamp(22px, 4vw, 34px);
}
.guide-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  appearance: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--walnut);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 11px;
}
.guide-modal-panel h3 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 12px 0 8px;
  padding-right: 64px;
}
.guide-modal-panel > p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 22px;
}
.trade-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.trade-modal-grid .trade-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trade-modal-grid .trade-card h4 {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.25;
}
.guide-modal-open {
  width: 100%;
}

@media (max-width: 620px) {
  .trade-modal-grid {
    grid-template-columns: 1fr;
  }
}
/* Podcast mini player */
.podcast-player {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 1000;
  width: min(calc(100% - 24px), 720px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
  padding: 12px 14px;
}
.podcast-player[hidden] {
  display: none;
}
.podcast-player-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.podcast-player-label,
#podcast-status {
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
#podcast-title {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.2;
}
.podcast-player-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.podcast-control {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  padding: 9px 10px;
}
.podcast-control:hover {
  background: rgba(255,255,255,0.16);
}
.podcast-control-main {
  background: var(--sage);
  border-color: var(--sage);
  min-width: 68px;
}
.podcast-control-main:hover {
  background: var(--sage-d);
  border-color: var(--sage-d);
}

@media (max-width: 560px) {
  .podcast-player {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .podcast-player-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

/* Combined app journey */
.app-journey-section {
  background: var(--cream);
  padding: clamp(30px, 6vw, 64px) 0;
}
.app-journey-section .container {
  padding: 0;
}
.app-journey-panel {
  background: #8A6338;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(92, 62, 37, 0.18);
}
.app-journey-panel .app-bridge-content {
  padding: clamp(34px, 6vw, 64px) clamp(18px, 4vw, 48px) 0;
}
.app-journey-panel .app-showcase-scroller {
  background: #8A6338;
}
.app-journey-panel .showcase-page {
  padding-top: clamp(22px, 4vw, 40px);
}
.app-how-block {
  padding: 24px 12px 32px;
  text-align: center;
}
.app-how-block .section-eyebrow,
.app-how-block .section-title,
.app-how-block .section-sub {
  color: var(--white);
}
.app-how-block .section-sub {
  opacity: 0.86;
}
.app-how-block .steps-row {
  margin-top: clamp(24px, 5vw, 40px);
}
.app-journey-panel .app-bridge-copy h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.app-journey-panel .app-bridge-copy p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.62;
}
.app-how-block .section-eyebrow {
  color: rgba(255,255,255,0.78);
}
.app-how-block .section-title {
  color: var(--white) !important;
}
.app-how-block .section-sub {
  color: rgba(255,255,255,0.86) !important;
}
.app-journey-panel .showcase-page {
  background: #8A6338 !important;
}

.app-journey-panel .app-bridge-portrait {
  position: relative;
  align-self: end;
  margin-bottom: -34px;
  z-index: 2;
}
.app-journey-panel .app-bridge-portrait::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: min(78%, 260px);
  height: 72%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 18px 34px rgba(42, 24, 10, 0.16);
}
.app-journey-panel .app-bridge-portrait img {
  position: relative;
  z-index: 1;
}
.app-journey-panel .app-showcase-scroller {
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-portrait {
    margin-bottom: -26px;
  }
  .app-journey-panel .app-bridge-portrait::before {
    width: min(70%, 220px);
  }
}
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 240px);
  align-items: center;
  padding-bottom: 0;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 220px);
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 32vw);
    text-align: left;
    gap: 12px;
  }
  .app-journey-panel .app-bridge-copy {
    text-align: left;
  }
  .app-journey-panel .app-bridge-copy h2,
  .app-journey-panel .app-bridge-copy p {
    margin-left: 0;
    margin-right: 0;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(32vw, 150px);
  }
}
.app-journey-panel .mockup-story-simple {
  width: min(100% - 32px, 720px);
  text-align: left;
  margin: 0 auto clamp(18px, 4vw, 30px);
}
.app-journey-panel .mockup-story-simple p {
  color: #C9A030 !important;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem) !important;
  font-weight: 400;
  line-height: 1.25;
  max-width: none;
}
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 300px);
  align-items: end;
}
.app-journey-panel .app-bridge-portrait {
  margin-bottom: -74px;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 285px);
}
.app-journey-panel .app-bridge-portrait::before {
  width: min(82%, 275px);
  height: 74%;
}
.app-journey-panel .app-showcase-scroller {
  padding-top: 58px;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 40vw);
    align-items: end;
  }
  .app-journey-panel .app-bridge-portrait {
    margin-bottom: -54px;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(40vw, 190px);
  }
  .app-journey-panel .app-showcase-scroller {
    padding-top: 42px;
  }
  .app-journey-panel .mockup-story-simple {
    width: min(100% - 24px, 420px);
  }
}
.app-journey-panel .app-proof-line {
  color: #C9A030 !important;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem) !important;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 16px !important;
}
.app-journey-panel .app-bridge-content {
  align-items: end;
  padding-bottom: 0;
}
.app-journey-panel .app-bridge-portrait {
  margin-bottom: -74px;
}
.app-journey-panel .app-showcase-scroller {
  padding-top: 0;
}
.app-journey-panel .showcase-page {
  padding-top: 0 !important;
}
.app-journey-panel .mockup-tablet-row {
  margin-top: 0;
}
@media (max-width: 720px) {
  .app-journey-panel .app-proof-line {
    font-size: clamp(1.05rem, 4vw, 1.28rem) !important;
    margin-top: 12px !important;
  }
  .app-journey-panel .app-bridge-portrait {
    margin-bottom: -46px;
  }
}
/* Final app portrait/tablet alignment */
.app-journey-panel .app-bridge-portrait {
  margin-bottom: 0 !important;
}
.app-journey-panel .app-showcase-scroller {
  padding-top: 0 !important;
}
.app-journey-panel .showcase-page {
  padding-top: 0 !important;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-portrait {
    margin-bottom: 0 !important;
  }
}
/* Keep the app intro/mockup spacing calm on mobile */
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 34vw) !important;
    gap: 10px;
    padding-bottom: 12px;
  }
  .app-journey-panel .app-bridge-portrait {
    margin-bottom: 0 !important;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(34vw, 160px) !important;
  }
  .app-journey-panel .app-showcase-scroller {
    padding-top: 14px !important;
  }
  .app-journey-panel .showcase-page {
    padding-top: 10px !important;
  }
}
.app-journey-panel .app-proof-line {
  color: #C9A030 !important;
  font-size: clamp(1rem, 1.8vw, 1.16rem) !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
}
@media (max-width: 720px) {
  .app-journey-panel .app-proof-line {
    font-size: clamp(1rem, 1.8vw, 1.16rem) !important;
    line-height: 1.62 !important;
  }
}
/* Hero tablet mockup image */
.app-journey-panel .hero-tablet-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Niche fit strip */
.nav-business-tagline {
  color: #6B7C5C;
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  text-align: center;
  max-width: 300px;
}
.fit-strip {
  background: var(--walnut-t);
  padding: clamp(28px, 5vw, 44px) 0;
}
.fit-strip-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.fit-strip h2 {
  color: #2C2C2C;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.fit-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.fit-list li {
  color: #2C2C2C;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.5;
}
.fit-list li::before {
  content: "\2713";
  color: #6B7C5C;
  font-weight: 900;
  margin-right: 8px;
}
@media (max-width: 680px) {
  .nav-business-tagline {
    text-align: left;
    max-width: none;
  }
}
/* Header tagline layout fix */
.nav-inner {
  flex-wrap: wrap;
  align-items: center;
}
.nav-logo {
  order: 1;
}
.nav-actions {
  order: 2;
  flex: 1 1 460px;
  width: auto;
}
.nav-business-tagline {
  order: 3;
  flex: 0 0 100%;
  max-width: none;
  margin-top: -8px;
  padding-left: 4px;
  text-align: left;
}
@media (max-width: 680px) {
  .nav-inner {
    flex-wrap: nowrap;
  }
  .nav-logo {
    order: 1;
  }
  .nav-business-tagline {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    margin-top: -2px;
    padding-left: 0;
    font-size: 0.78rem;
  }
  .nav-actions {
    order: 3;
    flex: 0 0 auto;
    width: 100%;
  }
}
/* Fit strip visual match */
.fit-strip {
  background: var(--cream) !important;
  padding: clamp(24px, 4vw, 42px) 0 !important;
}
.fit-strip-inner {
  max-width: none !important;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 14px 34px rgba(92, 62, 37, 0.08);
}
.fit-strip h2 {
  color: var(--walnut-d) !important;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem) !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: clamp(18px, 4vw, 30px) !important;
}
/* Fit strip final polish */
.fit-strip {
  background: var(--cream) !important;
  padding: clamp(24px, 4vw, 42px) 0 !important;
}
.fit-strip-inner.choice-panel {
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center;
}
.fit-strip .choice-title {
  color: var(--walnut-d) !important;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem) !important;
  line-height: 1.12 !important;
  margin-bottom: clamp(18px, 4vw, 30px) !important;
}
.fit-list {
  max-width: 760px;
  margin: 0 auto !important;
  text-align: left;
  gap: 12px !important;
}
.fit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: #2C2C2C !important;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem) !important;
}
.fit-list li::before {
  content: "\2713";
  color: #6B7C5C !important;
  font-weight: 900;
  margin-right: 0 !important;
}
@media (max-width: 680px) {
  .fit-strip-inner.choice-panel {
    padding: 18px 14px !important;
  }
  .fit-list {
    max-width: 100%;
  }
}
/* Template card typography refinement */
.fb-num {
  font-family: inherit !important;
  font-weight: 800 !important;
  font-size: clamp(0.82rem, 1.8vw, 1.05rem) !important;
  line-height: 1 !important;
  color: var(--white) !important;
  background: var(--walnut) !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px !important;
}
.fb-title {
  font-family: inherit !important;
  font-size: clamp(1.05rem, 2vw, 1.32rem) !important;
  line-height: 1.2 !important;
  color: var(--walnut-d) !important;
  margin-top: clamp(12px, 2vw, 20px) !important;
}
.fb-desc {
  font-size: clamp(0.88rem, 1.5vw, 1rem) !important;
  line-height: 1.45 !important;
  max-width: 24ch !important;
}
.capture-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.capture-actions .btn {
  width: 100%;
  white-space: normal;
}
@media (max-width: 520px) {
  .capture-actions {
    grid-template-columns: 1fr;
  }
}
/* App section spacing and portrait sizing */
.templates-section {
  padding-bottom: clamp(18px, 3vw, 28px) !important;
}
.app-journey-section {
  padding-top: clamp(18px, 3vw, 28px) !important;
}
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1fr) minmax(130px, 210px) !important;
  gap: clamp(16px, 4vw, 34px) !important;
  align-items: center !important;
}
.app-journey-panel .app-bridge-portrait {
  margin-bottom: 0 !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 190px) !important;
  max-height: 100% !important;
  object-fit: contain;
}
.app-journey-panel .app-bridge-portrait::before {
  width: min(84%, 190px) !important;
  height: 92% !important;
  top: 4% !important;
  bottom: auto !important;
  border-radius: 8px !important;
}
@media (max-width: 720px) {
  .templates-section {
    padding-bottom: 14px !important;
  }
  .app-journey-section {
    padding-top: 14px !important;
  }
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 30vw) !important;
    gap: 10px !important;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(30vw, 138px) !important;
  }
  .app-journey-panel .app-bridge-portrait::before {
    width: min(82%, 132px) !important;
    height: 92% !important;
  }
}
/* Smaller app portrait adjustment */
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1fr) minmax(112px, 170px) !important;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 155px) !important;
}
.app-journey-panel .app-bridge-portrait::before {
  width: min(86%, 160px) !important;
  height: 90% !important;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(88px, 26vw) !important;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(26vw, 118px) !important;
  }
  .app-journey-panel .app-bridge-portrait::before {
    width: min(86%, 112px) !important;
  }
}
/* Shared app intro backing and CSS portrait crop */
.app-journey-panel .app-bridge-content {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 210px) !important;
  padding: clamp(28px, 5vw, 46px) clamp(18px, 4vw, 42px) clamp(20px, 4vw, 34px) !important;
  isolation: isolate;
}
.app-journey-panel .app-bridge-content::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 28px) clamp(14px, 3vw, 28px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(42, 24, 10, 0.12);
  z-index: -1;
}
.app-journey-panel .app-bridge-copy,
.app-journey-panel .app-bridge-portrait {
  position: relative;
  z-index: 1;
}
.app-journey-panel .app-bridge-portrait {
  overflow: hidden;
  height: clamp(250px, 34vw, 330px);
  align-self: center !important;
  align-items: flex-start !important;
  justify-content: center;
}
.app-journey-panel .app-bridge-portrait::before {
  display: none !important;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 210px) !important;
  max-height: none !important;
  object-fit: contain;
  object-position: top center;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(110px, 34vw) !important;
    padding: 22px 14px 18px !important;
  }
  .app-journey-panel .app-bridge-content::before {
    inset: 10px;
  }
  .app-journey-panel .app-bridge-portrait {
    height: clamp(190px, 48vw, 245px);
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(34vw, 155px) !important;
  }
}
/* Portrait-only backing with cropped Lexi */
.app-journey-panel .app-bridge-content::before {
  display: none !important;
}
.app-journey-panel .app-bridge-portrait::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(42, 24, 10, 0.12);
  z-index: 0;
}
.app-journey-panel .app-bridge-portrait img {
  position: relative;
  z-index: 1;
}
/* Correct Lexi portrait crop after full-body image swap */
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 210px) !important;
}
.app-journey-panel .app-bridge-portrait {
  width: 100%;
  height: clamp(330px, 38vw, 390px) !important;
  overflow: hidden;
  align-self: center !important;
  align-items: flex-start !important;
  justify-content: center;
}
.app-journey-panel .app-bridge-portrait::before {
  inset: 0 !important;
  display: block !important;
}
.app-journey-panel .app-bridge-portrait img {
  width: min(100%, 165px) !important;
  max-height: none !important;
  object-fit: contain;
  object-position: top center;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(126px, 34vw) !important;
  }
  .app-journey-panel .app-bridge-portrait {
    height: clamp(300px, 76vw, 355px) !important;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(34vw, 148px) !important;
  }
}
/* Reset app portrait to a clean contained treatment */
.app-journey-panel .app-bridge-content {
  grid-template-columns: minmax(0, 1fr) minmax(112px, 156px) !important;
  gap: clamp(14px, 3vw, 28px) !important;
  align-items: center !important;
  padding: clamp(28px, 5vw, 46px) clamp(18px, 4vw, 42px) clamp(20px, 4vw, 34px) !important;
}
.app-journey-panel .app-bridge-content::before {
  display: none !important;
}
.app-journey-panel .app-bridge-portrait {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 10px 0 !important;
}
.app-journey-panel .app-bridge-portrait::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0 0 10px 0 !important;
  width: auto !important;
  height: auto !important;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(42, 24, 10, 0.12);
  z-index: 0;
}
.app-journey-panel .app-bridge-portrait img {
  position: relative;
  z-index: 1;
  width: min(100%, 128px) !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}
@media (max-width: 720px) {
  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 28vw) !important;
    gap: 10px !important;
    padding: 22px 14px 18px !important;
  }
  .app-journey-panel .app-bridge-portrait {
    padding: 10px 8px 0 !important;
  }
  .app-journey-panel .app-bridge-portrait img {
    width: min(28vw, 112px) !important;
  }
}
/* Remove Lexi portrait backing rectangle */
.app-journey-panel .app-bridge-portrait::before {
  display: none !important;
}
.app-journey-panel .app-bridge-portrait {
  padding: 0 !important;
}
/* App proof pill */
.app-journey-panel .app-proof-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--cream);
  color: var(--walnut-d) !important;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-top: 18px !important;
}
/* App proof cue, not a button */
.app-journey-panel .app-proof-line {
  display: inline-block !important;
  width: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 0 8px !important;
  color: #C9A030 !important;
  font-size: clamp(1rem, 1.9vw, 1.18rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin-top: 18px !important;
  position: relative;
}
.app-journey-panel .app-proof-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: #C9A030;
  border-radius: 999px;
}
.mockup-explain-title {
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.2;
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(20px, 4vw, 34px);
}
.app-journey-panel .app-proof-line {
  font-size: clamp(1.18rem, 2.5vw, 1.55rem) !important;
  line-height: 1.25 !important;
}
.mockup-explain-title {
  color: rgba(255,255,255,0.92) !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem) !important;
  line-height: 1.25 !important;
  text-align: center !important;
}
.app-journey-panel .app-proof-line {
  margin-bottom: 0 !important;
}
.app-journey-panel .mockup-tablet-row {
  margin-top: clamp(24px, 5vw, 42px) !important;
}
/* Freestyle app cue underline and standalone arrow */
.app-journey-panel .app-proof-line {
  color: #C9A030 !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  padding-bottom: 14px !important;
}
.app-journey-panel .app-proof-line::after {
  width: 138px !important;
  height: 11px !important;
  left: 0 !important;
  bottom: 0 !important;
  background: none !important;
  border-bottom: 3px solid #C4553A;
  border-radius: 50%;
  transform: rotate(-2deg) skewX(-18deg);
  opacity: 0.95;
}
.mockup-down-arrow {
  color: #C9A030;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  margin: clamp(12px, 3vw, 24px) 0 clamp(10px, 2vw, 18px);
}
.app-journey-panel .mockup-tablet-row {
  margin-top: 0 !important;
}
/* Gold cue underline and reliable CSS down arrow */
.app-journey-panel .app-proof-line::after {
  border-bottom-color: #C9A030 !important;
}
.mockup-down-arrow {
  width: 34px;
  height: 54px;
  margin: clamp(12px, 3vw, 24px) auto clamp(10px, 2vw, 18px) !important;
  position: relative;
}
.mockup-down-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 34px;
  transform: translateX(-50%);
  background: #C9A030;
  border-radius: 999px;
}
.mockup-down-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 22px;
  height: 22px;
  border-right: 5px solid #C9A030;
  border-bottom: 5px solid #C9A030;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
/* Guaranteed arrow above the app mockup */
.app-journey-panel .showcase-page::before {
  content: "";
  display: block;
  width: 38px;
  height: 58px;
  margin: clamp(12px, 3vw, 24px) auto clamp(12px, 3vw, 22px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 64'%3E%3Cpath d='M20 4v43' stroke='%23C9A030' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M7 38l13 18 13-18' fill='none' stroke='%23C9A030' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.mockup-down-arrow {
  display: none !important;
}
/* Tighten arrow spacing below the app cue */
.app-journey-panel .showcase-page::before {
  margin-top: 0 !important;
  margin-bottom: clamp(10px, 2.5vw, 18px) !important;
}
/* Pull app mockup arrow much closer to intro copy */
.app-journey-panel .app-showcase-scroller {
  padding-top: 0 !important;
  margin-top: -54px !important;
}
.app-journey-panel .showcase-page {
  padding-top: 0 !important;
}
.app-journey-panel .showcase-page::before {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}
@media (max-width: 720px) {
  .app-journey-panel .app-showcase-scroller {
    margin-top: -42px !important;
  }
}
.footer-avatar-note {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
  margin: -12px 0 14px;
}

/* Hero AI transparency line */
.hero-ai-line {
  margin: 8px 0 8px;
  color: var(--sage);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
}

/* Tighten hero heading to AI line */
.hero-text-overlay h1 {
  margin-bottom: -8px !important;
}
.hero-ai-line {
  margin-top: 0 !important;
}

/* Final mobile nav alignment */
@media (max-width: 680px) {
  .site-nav .nav-inner {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .site-nav .nav-logo {
    align-self: flex-start !important;
    justify-content: flex-start !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .site-nav .nav-business-tagline {
    align-self: stretch !important;
    text-align: left !important;
  }
}

/* Large finished-estimate tablet */
.app-journey-panel .hero-tablet-wrap {
  padding: 12px 8px 4px;
}
.app-journey-panel .hero-tablet-stage {
  width: 100%;
  height: clamp(440px, 74vw, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
}
.app-journey-panel .hero-tablet-stage .hero-tablet-img {
  width: 205% !important;
  max-width: none !important;
  height: auto !important;
  flex: 0 0 auto;
  border-radius: 0;
}
@media (max-width: 680px) {
  .app-journey-panel .hero-tablet-wrap {
    padding-left: 4px;
    padding-right: 4px;
  }
  .app-journey-panel .hero-tablet-stage {
    height: clamp(410px, 118vw, 560px);
  }
  .app-journey-panel .hero-tablet-stage .hero-tablet-img {
    width: 215% !important;
  }
}

/* Remove white border around finished-estimate tablet */
.app-journey-panel .hero-tablet-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.app-journey-panel .hero-tablet-stage {
  background: transparent !important;
  border-radius: 0 !important;
}

/* Emphasise Step 3 chase explanation */
.step-card .step-chase-copy {
  font-size: clamp(1rem, 1.8vw, 1.18rem) !important;
  line-height: 1.55 !important;
}

/* Final extra-small phone safeguards */
@media (max-width: 420px) {
  html { font-size: 15px; }
  .container { padding-left: 10px; padding-right: 10px; }
  section { padding-top: 34px; padding-bottom: 34px; }

  .site-nav { padding: 8px 0; }
  .site-nav .nav-inner { gap: 7px !important; }
  .site-nav .nav-logo {
    max-width: 100%;
    overflow: hidden;
  }
  .site-nav .nav-logo-img { height: 34px; max-width: 38%; object-fit: contain; }
  .site-nav .nav-strap-img { height: 27px; max-width: 60%; object-fit: contain; }
  .site-nav .nav-actions { gap: 3px; }
  .site-nav .nav-actions .nav-btn {
    min-height: 48px;
    flex-direction: column;
    gap: 0;
    padding: 5px 2px;
    font-size: 0.7rem;
    line-height: 1.12;
    white-space: normal;
  }
  .site-nav .nav-actions .script-gold-sm {
    display: block;
    font-size: 0.95rem;
    line-height: 1;
  }
  .site-nav .nav-btn-logon { justify-content: center; }

  .hero-text-overlay { padding: 18px 12px 22px !important; gap: 8px; }
  .hero-text-overlay h1 { font-size: 1.55rem; margin-bottom: -4px !important; }
  .hero-ai-line { font-size: 0.9rem; }
  .hero-lede { font-size: 0.88rem; line-height: 1.45; }
  .hero-list { font-size: 0.82rem; line-height: 1.42; padding-left: 18px; }

  .app-journey-panel .app-bridge-content {
    grid-template-columns: minmax(0, 1fr) minmax(78px, 26vw) !important;
    gap: 8px !important;
    padding: 16px 10px 10px !important;
  }
  .app-journey-panel .app-bridge-copy h2 { font-size: 1.18rem; }
  .app-journey-panel .app-bridge-copy p { font-size: 0.84rem; line-height: 1.48; }
  .app-journey-panel .app-bridge-portrait img { width: min(26vw, 96px) !important; }
  .app-journey-panel .hero-tablet-stage { height: clamp(350px, 112vw, 470px); }

  .choice-panel,
  .templates-panel,
  .fit-strip-inner.choice-panel { padding: 16px 10px !important; }
  .choice-title,
  .section-heading-label { font-size: 1.45rem !important; }
  .steps-row,
  .pricing-grid,
  .journey-grid,
  .fb-grid { grid-template-columns: 1fr !important; }
  .step-card { padding: 16px 7px 7px; }
  .step-mockup-pair { gap: 5px; }
  .capture-actions { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
}

@media (max-width: 350px) {
  .site-nav .nav-actions .nav-btn { font-size: 0.64rem; padding-left: 1px; padding-right: 1px; }
  .site-nav .nav-actions .script-gold-sm { font-size: 0.86rem; }
  .app-journey-panel .app-bridge-content { grid-template-columns: 1fr !important; }
  .app-journey-panel .app-bridge-portrait { display: none !important; }
}
/* Show the complete finished-estimate tablet at every screen size */
.app-journey-panel .hero-tablet-stage {
  width: 100%;
  height: auto !important;
  overflow: visible !important;
  display: block;
}
.app-journey-panel .hero-tablet-stage .hero-tablet-img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Visual trade introduction */
.hero-promise-title {
  color: var(--walnut-d);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.15;
  margin: 2px 0 0;
}
.hero-trade-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 2px 0;
}
.hero-trade {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--walnut-d);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
  line-height: 1.15;
}
.hero-trade svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-trade-sage svg { color: var(--sage); }
.hero-trade-walnut svg { color: var(--walnut); }
.hero-trade-gold svg { color: #C9A030; }
.hero-trade-note {
  color: var(--sage-d);
  font-size: clamp(0.82rem, 1.25vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 681px) {
  .hero-text-overlay { width: 42%; gap: 9px; }
  .hero-full-img { width: 56%; }
  .hero-list { gap: 3px; }
  .hero-list li { font-size: clamp(0.76rem, 1.1vw, 0.92rem); line-height: 1.32; }
}
@media (max-width: 680px) {
  .hero-trade-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .hero-trade { padding: 8px; font-size: 0.8rem; }
  .hero-trade svg { width: 20px; height: 20px; flex-basis: 20px; }
  .hero-list { padding-left: 0 !important; }
}
/* Visual app feature list */
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}
.hero-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  padding: 8px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.hero-feature:last-child { grid-column: 1 / -1; }
.hero-feature svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature-sage svg { color: var(--sage); }
.hero-feature-walnut svg { color: var(--walnut); }
.hero-feature-gold svg { color: #C9A030; }
.hero-feature span { min-width: 0; display: block; }
.hero-feature strong {
  display: block;
  color: var(--walnut-d);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.15;
}
.hero-feature small {
  display: block;
  margin-top: 2px;
  color: var(--mid);
  font-size: clamp(0.62rem, 0.82vw, 0.72rem);
  line-height: 1.3;
}
@media (max-width: 680px) {
  .hero-feature-grid { grid-template-columns: 1fr; gap: 7px; }
  .hero-feature:last-child { grid-column: auto; }
  .hero-feature { grid-template-columns: 28px minmax(0, 1fr); padding: 9px 10px; }
  .hero-feature svg { width: 23px; height: 23px; }
  .hero-feature strong { font-size: 0.86rem; }
  .hero-feature small { font-size: 0.76rem; }
}
/* Cleaner hero hierarchy: light trade row, emphasis on app features */
.hero-trade-grid {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 14px !important;
  margin: 4px 0 8px;
}
.hero-trade {
  display: inline-flex !important;
  width: auto;
  min-width: 0;
  align-items: center;
  gap: 5px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
}
.hero-trade svg {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}
.hero-feature-heading {
  color: var(--sage-d);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 4px 0 0;
}
@media (max-width: 680px) {
  .hero-trade-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px 6px !important;
  }
  .hero-trade {
    font-size: 0.75rem;
  }
  .hero-trade svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
  .hero-feature-heading { margin-top: 7px; }
}
/* Pound currency icon */
.hero-pound-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
/* Lead app feature */
.hero-feature-documents {
  grid-column: 1 / -1;
}
/* Match I'll help you to the AI assistant line */
.hero-feature-heading {
  color: var(--sage) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.7vw, 1.18rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}
/* Unified brand-gold app feature icons */
.hero-feature-grid .hero-feature svg,
.hero-feature-grid .hero-pound-icon {
  color: #C9A030 !important;
}
/* Trade row inside the brown app introduction */
.app-bridge-copy .app-trade-grid {
  margin: 0 0 18px;
}
.app-bridge-copy .app-trade-grid .hero-trade {
  color: var(--white);
}
.app-bridge-copy .app-trade-grid .hero-trade span {
  color: var(--white);
}
/* Tidied app introduction */
.app-trades-band {
  padding: clamp(22px, 4vw, 34px) clamp(18px, 4vw, 42px) 4px;
}
.app-trades-title {
  color: var(--white);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
  text-align: left;
}
.app-trades-band .app-trade-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
}
.app-trades-band .hero-trade {
  justify-content: flex-start;
  color: var(--white);
}
.app-trades-band .hero-trade span { color: var(--white); }
.app-journey-panel .app-intro-content {
  padding-top: clamp(18px, 3vw, 28px) !important;
  padding-bottom: 0 !important;
  align-items: end !important;
}
.app-intro-content .app-bridge-copy {
  align-self: center;
}
.app-intro-content .app-bridge-copy h2 {
  max-width: 18ch;
}
.app-intro-content .app-bridge-copy p {
  max-width: 34ch;
}
.app-intro-content .app-bridge-portrait img {
  width: min(100%, 118px) !important;
}
@media (max-width: 720px) {
  .app-trades-band { padding: 18px 12px 2px; }
  .app-trades-band .app-trade-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 9px 6px !important; }
  .app-trades-band .hero-trade { font-size: 0.74rem; }
  .app-journey-panel .app-intro-content { padding-top: 14px !important; padding-bottom: 0 !important; }
  .app-intro-content .app-bridge-portrait img { width: min(27vw, 102px) !important; }
}
/* Tools image with trade copy placed in its open space */
.app-tools-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #936a3b;
}
.app-tools-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.app-tools-copy {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 4vw, 46px);
  left: clamp(18px, 5vw, 54px);
  width: min(68%, 700px);
}
.app-tools-copy h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 clamp(12px, 2vw, 22px);
}
.app-tools-copy .app-trade-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(7px, 1.5vw, 14px) clamp(10px, 2vw, 20px);
  margin: 0 !important;
}
.app-tools-copy .hero-trade,
.app-tools-copy .hero-trade span {
  color: var(--white);
}
.app-tools-copy .hero-trade {
  justify-content: flex-start;
  font-size: clamp(0.78rem, 1.5vw, 1rem);
}
.app-estimate-intro {
  padding: clamp(18px, 3vw, 28px) 18px 4px;
  text-align: center;
}
.app-estimate-intro h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 8px;
}
.app-estimate-intro p {
  color: var(--white);
  margin: 0 auto;
  max-width: 42rem;
}
@media (max-width: 520px) {
  .app-tools-copy {
    top: 12px;
    left: 12px;
    width: 72%;
  }
  .app-tools-copy h2 {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }
  .app-tools-copy .app-trade-grid {
    gap: 5px 7px !important;
  }
  .app-tools-copy .hero-trade {
    font-size: 0.63rem;
    gap: 4px;
  }
  .app-tools-copy .hero-trade svg {
    width: 12px;
    height: 12px;
  }
  .app-estimate-intro {
    padding: 14px 12px 2px;
  }
}
/* Clean tools message and one continuous warm-brown showcase */
.app-journey-panel,
.app-tools-visual,
.app-estimate-intro,
.app-journey-panel .hero-tablet-wrap,
.app-journey-panel .hero-tablet-stage,
.app-journey-panel .app-showcase-cta {
  background: #936a3b !important;
}
.app-tools-copy {
  width: min(62%, 640px);
}
.app-tools-copy h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 4vw, 3rem);
}
.app-estimate-intro {
  padding-top: clamp(20px, 4vw, 34px);
}
@media (max-width: 520px) {
  .app-tools-copy {
    width: 62%;
  }
  .app-tools-copy h2 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }
}
/* Focused bridge between the finished estimate and how it works */
.app-next-step-panel {
  width: min(calc(100% - 32px), 760px);
  margin: clamp(18px, 4vw, 32px) auto clamp(24px, 5vw, 42px);
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.app-next-step-panel h2 {
  color: var(--walnut);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 10px;
}
.app-next-step-panel p {
  color: var(--charcoal);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto 20px;
}
.app-next-step-panel .app-result-cta {
  width: min(100%, 390px);
  background: var(--walnut);
  color: var(--white);
  border: 2px solid var(--walnut);
  padding: 15px 20px;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 800;
  box-shadow: none;
}
.app-next-step-panel .app-result-cta:hover {
  background: var(--sage);
  border-color: var(--sage);
}
@media (max-width: 520px) {
  .app-next-step-panel {
    width: calc(100% - 20px);
    margin-top: 14px;
    padding: 20px 14px;
  }
}
/* Step 1 compact number and instruction */
.step-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 12px;
}
.step-heading-row .step-num {
  flex: 0 0 44px;
  margin: 0 !important;
}
.step-heading-row h3 {
  margin: 0;
  text-align: left;
  line-height: 1.3;
}
/* Visible compact headings and tighter spacing for steps 1 and 2 */
.step-card .step-heading-row {
  width: 100%;
  justify-content: flex-start;
  padding: 0 10px;
  margin-bottom: 4px;
}
.step-card .step-heading-row h3 {
  display: block !important;
  color: var(--walnut-d) !important;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem) !important;
  font-weight: 800 !important;
  margin: 0 !important;
}
.step-card:has(.step-heading-row) {
  padding-top: 12px;
}
.step-card:has(.step-heading-row) .step-mockup-pair {
  margin-top: 6px;
}
@media (max-width: 640px) {
  .step-card .step-heading-row {
    padding: 0 6px;
    gap: 10px;
  }
  .step-card:has(.step-heading-row) {
    padding-top: 10px;
  }
}
/* Step 3 uses the same compact heading treatment */
.step-card .step-heading-row-long h3 {
  font-size: clamp(0.9rem, 1.45vw, 1.02rem) !important;
  line-height: 1.4;
}
.step-card:has(.step-heading-row-long) .step-mockup-pair {
  margin-top: 6px;
}
/* Lexi Lessons library */
.lessons-kicker {
  margin: 18px auto 0;
  color: var(--walnut);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  text-align: center;
}
.lesson-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 5vw, 42px);
}
.lesson-series-card {
  min-height: 210px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--charcoal);
}
button.lesson-series-card {
  appearance: none;
  font: inherit;
  cursor: pointer;
}
.lesson-series-card-live {
  border-color: var(--walnut);
  box-shadow: var(--shadow);
}
.lesson-series-card:hover {
  transform: translateY(-2px);
}
.lesson-series-num {
  align-self: flex-start;
  background: var(--walnut);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 900;
}
.lesson-series-card strong {
  color: var(--walnut-d);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.2;
}
.lesson-series-card small {
  color: var(--mid);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.5;
}
.lesson-series-action,
.lesson-series-status {
  margin-top: auto;
  font-weight: 900;
  color: var(--sage);
}
.lesson-series-card-soon {
  opacity: 0.78;
}
.guide-modal-panel-wide {
  width: min(100%, 980px);
}
.quote-journey-modal .guides-block {
  margin-top: 24px;
}
.quote-journey-modal .journey-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Bigger, cleaner hero feature boxes */
.hero-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}
.hero-feature {
  grid-template-columns: 31px minmax(0, 1fr) !important;
  padding: 11px 12px !important;
}
.hero-feature strong {
  font-size: clamp(0.86rem, 1.18vw, 1rem) !important;
  line-height: 1.18 !important;
}
.hero-feature small {
  font-size: clamp(0.76rem, 1vw, 0.9rem) !important;
  line-height: 1.35 !important;
}
.hero-feature svg,
.hero-pound-icon {
  width: 24px !important;
  height: 24px !important;
}
@media (max-width: 780px) {
  .lesson-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-journey-modal .journey-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .lesson-library-grid {
    grid-template-columns: 1fr;
  }
  .hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }
  .hero-feature {
    grid-template-columns: 24px minmax(0, 1fr) !important;
    padding: 9px 8px !important;
  }
  .hero-feature strong {
    font-size: 0.78rem !important;
  }
  .hero-feature small {
    font-size: 0.68rem !important;
  }
  .hero-feature svg,
  .hero-pound-icon {
    width: 20px !important;
    height: 20px !important;
  }
}
/* Final eight-feature grid: two neat columns, no spanning cards */
.hero-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}
.hero-feature-grid .hero-feature,
.hero-feature-grid .hero-feature-documents,
.hero-feature-grid .hero-feature:last-child {
  grid-column: auto !important;
  min-height: 76px;
}
.hero-feature-grid .hero-feature {
  align-content: start;
}
.hero-feature-grid .hero-feature strong {
  font-size: clamp(0.92rem, 1.25vw, 1.05rem) !important;
}
.hero-feature-grid .hero-feature small {
  font-size: clamp(0.8rem, 1.05vw, 0.92rem) !important;
}
@media (max-width: 520px) {
  .hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero-feature-grid .hero-feature,
  .hero-feature-grid .hero-feature-documents,
  .hero-feature-grid .hero-feature:last-child {
    grid-column: auto !important;
    min-height: 86px;
  }
  .hero-feature-grid .hero-feature strong {
    font-size: 0.82rem !important;
  }
  .hero-feature-grid .hero-feature small {
    font-size: 0.72rem !important;
  }
}
/* Keep hero feature cards to two title lines and two explainer lines */
.hero-feature-grid .hero-feature strong,
.hero-feature-grid .hero-feature small {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-feature-grid .hero-feature strong {
  -webkit-line-clamp: 2;
}
.hero-feature-grid .hero-feature small {
  -webkit-line-clamp: 2;
}
/* Left-align the estimate intro above the tablet */
.app-estimate-intro {
  text-align: left !important;
  padding-left: clamp(18px, 5vw, 54px) !important;
  padding-right: clamp(18px, 5vw, 54px) !important;
}
.app-estimate-intro p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* Add breathing room above the estimate intro */
.app-estimate-intro {
  padding-top: clamp(30px, 6vw, 56px) !important;
}
/* Left-aligned Lexi Lessons intro */
.guides-section .container > .lessons-title {
  text-align: left !important;
  color: var(--walnut) !important;
  font-size: clamp(1.45rem, 3vw, 2rem) !important;
  margin: 0 0 10px !important;
}
.guides-section .lessons-lead,
.guides-section .lessons-kicker {
  text-align: left !important;
  color: var(--sage) !important;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
}
.guides-section .section-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.guides-section .lessons-kicker {
  margin-top: 18px !important;
}
/* Coming soon mailing-list banner */
.launch-banner {
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.launch-banner-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.35;
  padding-top: 8px;
  padding-bottom: 8px;
}
.launch-banner-inner strong {
  color: #C9A030;
}
.launch-banner-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--walnut);
  font-weight: 900;
  text-decoration: none;
}
.launch-banner-btn:hover {
  background: var(--white);
}
@media (max-width: 560px) {
  .launch-banner-inner {
    flex-direction: column;
    gap: 8px;
  }
  .launch-banner-btn {
    width: min(100%, 240px);
  }
}
/* Light connected How Lexi Handles It panel */
.app-how-block {
  width: min(calc(100% - 32px), 960px);
  margin: clamp(22px, 5vw, 42px) auto clamp(28px, 5vw, 48px);
  padding: clamp(22px, 4vw, 34px) clamp(12px, 3vw, 22px) clamp(18px, 4vw, 28px) !important;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: left !important;
}
.app-how-block .section-eyebrow {
  color: var(--sage) !important;
  text-align: left !important;
  margin-bottom: 8px;
}
.app-how-block .section-title {
  color: var(--walnut) !important;
  text-align: left !important;
  max-width: 30rem;
  margin: 0 0 8px !important;
  font-size: clamp(1.45rem, 3vw, 2rem) !important;
  line-height: 1.18 !important;
}
.app-how-block .section-sub {
  color: var(--charcoal) !important;
  text-align: left !important;
  max-width: 42rem;
  margin: 0 0 clamp(18px, 4vw, 28px) !important;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem) !important;
  line-height: 1.55 !important;
}
.app-how-block .steps-row {
  margin-top: 0 !important;
  gap: 16px !important;
}
.app-how-block .step-card {
  background: var(--white);
}
@media (max-width: 520px) {
  .app-how-block {
    width: calc(100% - 18px);
    padding: 18px 8px 12px !important;
  }
}
/* Give the How panel mockups more room again */
.app-how-block {
  width: min(calc(100% - 12px), 1080px) !important;
  padding-left: clamp(8px, 2vw, 14px) !important;
  padding-right: clamp(8px, 2vw, 14px) !important;
}
.app-how-block .step-card {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
@media (max-width: 520px) {
  .app-how-block {
    width: calc(100% - 8px) !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
/* Larger labels under step mockups */
.step-img-label {
  font-size: clamp(0.98rem, 1.8vw, 1.12rem) !important;
  line-height: 1.25 !important;
}
/* Compact the gap between step headings and mockups */
.app-how-block .step-card {
  padding-top: 8px !important;
}
.app-how-block .step-heading-row {
  margin-bottom: 0 !important;
}
.app-how-block .step-card:has(.step-heading-row) .step-mockup-pair,
.app-how-block .step-card:has(.step-heading-row-long) .step-mockup-pair {
  margin-top: 0 !important;
}
.app-how-block .step-mockup-pair {
  margin-top: 0 !important;
}
@media (max-width: 640px) {
  .app-how-block .step-card {
    padding-top: 7px !important;
  }
}
/* Desktop-only template clipboard zoom for clearer preview */
@media (min-width: 769px) and (hover: hover) {
  .fb-card {
    position: relative;
    z-index: 1;
  }
  .fb-card .fb-frame {
    transform-origin: center top;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .fb-card:hover,
  .fb-card:focus-visible {
    z-index: 8;
  }
  .fb-card:hover .fb-frame,
  .fb-card:focus-visible .fb-frame {
    transform: scale(1.18);
  }
}
/* Full-page template clipboard preview */
.template-preview-modal[hidden] {
  display: none;
}
.template-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(20, 16, 12, 0.78);
}
.template-preview-backdrop {
  position: absolute;
  inset: 0;
}
.template-preview-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--cream);
}
.template-preview-toolbar {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: var(--charcoal);
  color: var(--white);
}
.template-preview-toolbar h3 {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
.template-preview-control,
.template-preview-close,
.template-preview-download {
  min-height: 36px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.template-preview-download {
  background: var(--cream);
  color: var(--walnut);
  border-color: var(--cream);
}
.template-preview-stage {
  min-height: 0;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(16px, 3vw, 30px);
}
.template-preview-clipboard {
  position: relative;
  width: min(94vw, 760px);
  min-height: calc(100vh - 108px);
  padding: clamp(52px, 7vw, 82px) clamp(18px, 3vw, 34px) clamp(20px, 3vw, 34px);
  display: flex;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255,245,225,0) 30%, rgba(255,247,230,.42) 45%, rgba(255,248,232,0) 58%),
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(0,0,0,.12)),
    #8a5d32;
  box-shadow: 0 34px 70px rgba(20, 16, 12, 0.34);
}
.template-preview-clipboard .fb-clip {
  top: clamp(12px, 2vw, 22px);
  width: clamp(90px, 14vw, 138px);
  height: clamp(50px, 8vw, 74px);
}
.template-preview-doc {
  width: min(100%, 620px);
  background: var(--white);
  box-shadow: 0 24px 44px -24px rgba(44,42,38,.42), 0 3px 10px rgba(44,42,38,.08);
}
.template-preview-doc img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .template-preview-modal {
    display: none !important;
  }
}
/* Mobile template CTA prompt: no direct downloads */
@media (max-width: 768px) {
  .template-preview-modal[hidden] {
    display: none !important;
  }
  .template-preview-modal:not([hidden]) {
    display: block !important;
  }
  .template-preview-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(20, 16, 12, 0.36);
  }
  .template-preview-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    background: var(--cream);
    color: var(--walnut);
  }
  .template-preview-toolbar h3 {
    color: var(--walnut);
    font-size: 1.2rem;
  }
  .template-preview-control {
    display: none;
  }
  .template-preview-download {
    width: 100%;
    background: var(--walnut);
    color: var(--white);
    border-color: var(--walnut);
  }
  .template-preview-close {
    width: 100%;
    background: var(--white);
    color: var(--walnut);
    border-color: var(--border);
  }
  .template-preview-stage {
    display: none;
  }
}
/* Brand green read-guide buttons for Guide 1-5 */
.quote-journey-modal .journey-card:nth-child(-n+5) .dl-guide {
  background: var(--sage) !important;
  color: var(--white) !important;
}
.quote-journey-modal .journey-card:nth-child(-n+5) .dl-guide:hover {
  background: var(--sage-d) !important;
}
/* Clipboard cards are buttons, never direct download links */
button.fb-card {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  width: 100%;
  padding: 0;
  text-align: center;
}
/* Website app doorway nav */
.nav-actions .nav-btn-app {
  margin-left: auto;
  background: var(--sage) !important;
  border-color: var(--sage) !important;
  color: var(--white) !important;
}
.nav-actions .nav-btn-app:hover {
  background: var(--sage-d) !important;
  border-color: var(--sage-d) !important;
}
@media (max-width: 680px) {
  .nav-actions .nav-btn-app {
    margin-left: 0;
  }
}