/* =========================================================
   Your Legacy Plan - site.css
   Brand: paper #F5F5F4 - ink #0F172A - sapphire #0F3460
          copper #B45309 (restrained) - eucalyptus #4D7C0F
   ========================================================= */

/* -- 1. TOKENS ------------------------------------------------------------ */
:root {
  --ink:           #0f172a;
  --sapphire:      #0f3460;
  --paper:         #f5f5f4;
  --white:         #ffffff;
  --sand:          #efc07b;
  --copper:        #b45309;
  --copper-light:  #d97706;
  --eucalyptus:    #4d7c0f;
  --eucalyptus-lt: #65a30d;

  --radius-xl:  22px;
  --radius-lg:  18px;
  --radius-md:  14px;
  --radius-sm:  10px;

  /* Elevation scale */
  --shadow-xs:   0 2px 8px   rgba(15, 23, 42, 0.07);
  --shadow-sm:   0 6px 18px  rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.12);
  --shadow-crisp:0 18px 40px rgba(15, 23, 42, 0.18);
  --shadow-lift: 0 28px 70px rgba(15, 23, 42, 0.20);

  /* Transition presets */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur-base: 220ms;
  --dur-slow: 340ms;

  /* Optional texture assets */
  --texture-ink: url('/research documents/Branding Assets/textures and materials/a-macro-photograph-of-a-deconstructed-lu_sRRRu3GwRo6Gmv3e4aEmTQ_SIuiKuPsTs2DFToQ1iCn1w_hd.png');
}

/* ── 2. RESET & BASE ────────────────────────────────────── */
html, body { height: 100%; }
html { font-size: 17px; }

body {
  margin:   0;
  background: linear-gradient(180deg, rgba(245, 245, 244, 1), rgba(242, 242, 240, 0.98));
  color:    var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.nav-locked {
  overflow: hidden;
}

/* Agent bar (top strip) */
.agent-bar {
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.92), rgba(15, 52, 96, 0.88));
  color: rgba(245, 245, 244, 0.92);
  border-bottom: 1px solid rgba(245, 245, 244, 0.12);
}
.agent-bar-toggle-wrap {
  display: none;
}
.agent-bar-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.98);
  color: #fff;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.agent-bar-chevron {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  position: relative;
}
.agent-bar-chevron::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  top: -2px;
}
.agent-bar[data-open="true"] .agent-bar-chevron::before {
  transform: rotate(-135deg);
  top: 2px;
}
.agent-bar-panel {
  display: block;
}
.agent-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.agent-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.agent-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(239, 192, 123, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}
.agent-meta {
  min-width: 0;
}
.agent-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(96, 165, 250, 0.98);
  line-height: 1.1;
}
.agent-contact {
  margin-top: 3px;
  font-size: 12.5px;
  color: rgba(245, 245, 244, 0.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 8px;
}
.agent-mail-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 244, 0.82);
  flex-shrink: 0;
}
.agent-mail-icon svg { width: 16px; height: 16px; }
.agent-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 244, 0.18);
}
.agent-contact a:hover {
  border-bottom-color: rgba(239, 192, 123, 0.75);
}
.agent-sep {
  margin: 0 8px;
  opacity: 0.55;
}
.agent-licensed {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.agent-licensed-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.75;
}
.agent-licensed-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.license-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(245, 245, 244, 0.08);
  border: 1px solid rgba(245, 245, 244, 0.14);
  color: rgba(245, 245, 244, 0.90);
}
@media (max-width: 640px) {
  .agent-bar-toggle-wrap { display: block; }
  .agent-bar-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 420ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
  }
  .agent-bar[data-open="true"] .agent-bar-panel {
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
  }
  .agent-bar-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .agent-licensed { display: none; }
  .agent-contact {
    white-space: normal;
    flex-wrap: wrap;
  }
}

/* ── 3. REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration:       0.001ms !important;
    animation-iteration-count:1       !important;
    transition-duration:      0.001ms !important;
    scroll-behavior:          auto    !important;
  }
}

/* ── 4. ACCESSIBILITY — SKIP LINK ───────────────────────── */
.skip-link {
  position:        absolute;
  left:            12px;
  top:             12px;
  padding:         10px 14px;
  border-radius:   var(--radius-sm);
  background:      rgba(15, 23, 42, 0.94);
  color:           #fff;
  font-size:       13px;
  font-weight:     600;
  text-decoration: none;
  transform:       translateY(-160%);
  transition:      transform var(--dur-base) var(--ease-out);
  z-index:         1000;
}
.skip-link:focus {
  transform:      translateY(0);
  outline:        3px solid rgba(239, 192, 123, 0.95);
  outline-offset: 2px;
}

/* ── 5. GLOBAL FOCUS RING ───────────────────────────────── */
:focus-visible {
  outline:        2px solid var(--copper);
  outline-offset: 3px;
  border-radius:  4px;
}

/* ── 6. HEADER ──────────────────────────────────────────── */
[data-site-header] {
  transition: box-shadow      var(--dur-base) var(--ease-out),
              border-color    var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out);
}
[data-site-header][data-scrolled="true"] {
  box-shadow:       var(--shadow-soft);
  border-bottom-color: rgba(15, 23, 42, 0.12) !important;
  background-color: rgba(245, 245, 244, 0.97);
  backdrop-filter:  blur(12px);
}

/* ── 7. NAV LINKS — animated slide-under ───────────────── */
.nav-link {
  position:     relative;
  padding-bottom: 2px;
  color:        inherit;
  text-decoration: none;
  transition:   color var(--dur-fast) var(--ease-out);
}
.nav-link::after {
  content:         '';
  position:        absolute;
  left:            0;
  bottom:          -2px;
  width:           100%;
  height:          2px;
  border-radius:   999px;
  background:      linear-gradient(90deg, var(--copper), var(--copper-light));
  transform:       scaleX(0);
  transform-origin:left center;
  transition:      transform var(--dur-fast) var(--ease-out);
}
.nav-link:hover { color: var(--sapphire); }
.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

/* ── 8. BUTTONS ─────────────────────────────────────────── */

/* Primary */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  border-radius:   999px;
  padding:         12px 30px;
  font-size:       14px;
  font-weight:     600;
  letter-spacing:  0.01em;
  color:           var(--paper);
  background:      linear-gradient(135deg, var(--sapphire), rgba(15, 52, 96, 0.92));
  box-shadow:      0 8px 24px rgba(15, 52, 96, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  border:          1px solid rgba(15, 52, 96, 0.20);
  text-decoration: none;
  white-space:     nowrap;
  cursor:          pointer;
  transition:      background   var(--dur-base) var(--ease-out),
                   box-shadow   var(--dur-base) var(--ease-out),
                   transform    var(--dur-fast) var(--ease-out);
}
.btn-primary:hover {
  background:  linear-gradient(135deg, var(--ink), rgba(15, 23, 42, 0.94));
  box-shadow:  0 12px 32px rgba(15, 23, 42, 0.32), inset 0 1px 0 rgba(255,255,255,0.10);
  transform:   translateY(-2px);
}
.btn-primary:active {
  transform:  translateY(0);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.24);
}

/* Secondary ghost */
.btn-secondary {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  border-radius:   999px;
  padding:         11px 28px;
  font-size:       14px;
  font-weight:     600;
  letter-spacing:  0.01em;
  color:           var(--ink);
  background:      linear-gradient(135deg, rgba(255,255,255,0.88), rgba(250,250,248,0.82));
  border:          1px solid rgba(15,23,42,0.18);
  text-decoration: none;
  white-space:     nowrap;
  cursor:          pointer;
  transition:      background    var(--dur-fast) var(--ease-out),
                   border-color  var(--dur-fast) var(--ease-out),
                   box-shadow    var(--dur-fast) var(--ease-out),
                   transform     var(--dur-fast) var(--ease-out);
}
.btn-secondary:hover {
  background:   linear-gradient(135deg, var(--white), rgba(252,252,250,0.96));
  border-color: rgba(15,52,96,0.32);
  box-shadow:   0 6px 18px rgba(15, 23, 42, 0.12);
  transform:    translateY(-2px);
}

/* Inverse (light on dark) */
.btn-inverse {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  border-radius:   999px;
  padding:         11px 28px;
  font-size:       14px;
  font-weight:     600;
  color:           var(--ink);
  background:      var(--paper);
  box-shadow:      var(--shadow-soft);
  border:          1px solid transparent;
  text-decoration: none;
  white-space:     nowrap;
  cursor:          pointer;
  transition:      background var(--dur-base) var(--ease-out),
                   box-shadow  var(--dur-base) var(--ease-out),
                   transform   var(--dur-fast) var(--ease-out);
}
.btn-inverse:hover {
  background:  #fff;
  box-shadow:  var(--shadow-lift);
  transform:   translateY(-2px);
}

/* Ghost on dark */
.btn-ghost-dark {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  border-radius:   999px;
  padding:         10px 28px;
  font-size:       14px;
  font-weight:     600;
  color:           rgba(245,245,244,0.90);
  background:      transparent;
  border:          1px solid rgba(245,245,244,0.28);
  text-decoration: none;
  white-space:     nowrap;
  cursor:          pointer;
  transition:      background  var(--dur-fast) var(--ease-out),
                   border-color var(--dur-fast) var(--ease-out),
                   transform    var(--dur-fast) var(--ease-out);
}
.btn-ghost-dark:hover {
  background:   rgba(245,245,244,0.10);
  border-color: rgba(245,245,244,0.44);
  transform:    translateY(-1px);
}

/* ── 9. COPPER UNDERLINE DECO ───────────────────────────── */
.copper-underline {
  position: relative;
  display:  inline-block;
}
.copper-underline::after {
  content:      '';
  position:     absolute;
  left:         0;
  bottom:       -4px;
  width:        100%;
  height:       4px;
  border-radius:999px;
  background:   linear-gradient(90deg, var(--copper), var(--copper-light));
  box-shadow:   0 2px 8px rgba(180, 83, 9, 0.25);
}

/* ── 10. HERO MEDIA — ambient float ────────────────────── */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.hero-media-float {
  animation: float-gentle 8s var(--ease-out) infinite;
}

.hero-stack {
  position: relative;
}
.hero-stack-stage {
  position: relative;
  overflow: visible;
  touch-action: pan-y;
  user-select: none;
}
.hero-stack-stage::before {
  content: '';
  position: absolute;
  inset: 14px 18px auto 18px;
  height: calc(100% - 28px);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 192, 123, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(15, 52, 96, 0.10), rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  z-index: 0;
}
.hero-stack-card {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 520ms var(--ease-out),
    opacity 420ms var(--ease-out),
    filter 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}
.hero-stack-card img {
  transition: transform 900ms var(--ease-out);
}
.hero-stack-card.is-active {
  z-index: 4;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: none;
  pointer-events: auto;
}
.hero-stack-card.is-active img {
  transform: scale(1.01);
}
.hero-stack-card.is-next {
  z-index: 3;
  opacity: 0.98;
  transform: translate3d(14px, 10px, 0) scale(0.965) rotate(2.1deg);
  filter: saturate(0.92);
}
.hero-stack-card.is-prev {
  z-index: 2;
  opacity: 0.80;
  transform: translate3d(-14px, 16px, 0) scale(0.93) rotate(-2.3deg);
  filter: saturate(0.82);
}
.hero-stack-card.is-third {
  z-index: 1;
  opacity: 0.46;
  transform: translate3d(22px, 22px, 0) scale(0.89) rotate(3.4deg);
  filter: saturate(0.7) blur(0.2px);
}
.hero-stack-card.is-hidden {
  z-index: 0;
  opacity: 0;
  transform: translate3d(30px, 24px, 0) scale(0.86) rotate(4deg);
  filter: saturate(0.6);
}
.hero-stack-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.76));
  border: 1px solid rgba(245, 245, 244, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.22);
}
.hero-stack-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 192, 123, 0.92);
}
.hero-stack-kicker::before {
  content: '';
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 192, 123, 0.95), rgba(180, 83, 9, 0.70));
}
.hero-stack-title {
  color: rgba(245, 245, 244, 0.96);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-size: 14px;
}
.hero-stack-swipe-hint {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 244, 0.18);
  background: rgba(2, 6, 23, 0.48);
  color: rgba(245, 245, 244, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
}
.hero-stack-swipe-hint::before {
  content: '';
  width: 18px;
  height: 10px;
  border-top: 2px solid rgba(239, 192, 123, 0.85);
  border-bottom: 2px solid rgba(239, 192, 123, 0.85);
  mask: linear-gradient(90deg, transparent 0 12%, #000 12% 88%, transparent 88% 100%);
  opacity: 0.85;
  animation: hero-swipe-nudge 1.7s var(--ease-out) infinite;
}
@keyframes hero-swipe-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.65; }
  40% { transform: translateX(4px); opacity: 1; }
  70% { transform: translateX(-2px); opacity: 0.9; }
}
.hero-stack-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hero-stack-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-xs);
}
.hero-stack-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.20);
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    width var(--dur-fast) var(--ease-out);
}
.hero-stack-dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, var(--sapphire), rgba(15, 52, 96, 0.78));
  box-shadow: 0 4px 10px rgba(15, 52, 96, 0.22);
}
.hero-stack-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-stack-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.hero-stack-btn svg {
  width: 16px;
  height: 16px;
}
.hero-stack-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(15, 52, 96, 0.22);
  color: var(--sapphire);
}
.hero-stack-btn:focus-visible,
.hero-stack-dot:focus-visible {
  outline: 2px solid rgba(15, 52, 96, 0.24);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .hero-stack-swipe-hint {
    font-size: 11px;
    padding: 7px 10px;
    top: 12px;
    left: 12px;
  }
  .hero-stack-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    gap: 4px;
  }
  .hero-stack-title {
    font-size: 13px;
  }
  .hero-stack-card.is-next {
    transform: translate3d(10px, 8px, 0) scale(0.968) rotate(1.8deg);
  }
  .hero-stack-card.is-prev {
    transform: translate3d(-10px, 12px, 0) scale(0.94) rotate(-2.0deg);
  }
  .hero-stack-card.is-third {
    transform: translate3d(15px, 16px, 0) scale(0.90) rotate(2.8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media-float {
    animation: none !important;
  }
  .hero-stack-card,
  .hero-stack-card img,
  .hero-stack-swipe-hint::before {
    transition: none !important;
    animation: none !important;
  }
}

/* ── 11. POSTER FRAME / IMPACT MEDIA ───────────────────── */
.poster-frame,
.impact-media {
  border-radius:var(--radius-lg);
  box-shadow:   var(--shadow-crisp);
  overflow:     hidden;
  position:     relative;
  border:       1px solid rgba(15, 23, 42, 0.14);
  background:   linear-gradient(135deg, rgba(245, 245, 244, 1), rgba(245, 245, 244, 0.84));
  transition:   box-shadow var(--dur-base) var(--ease-out),
                transform  var(--dur-base) var(--ease-out);
}
.card-article:hover .impact-media {
  box-shadow: var(--shadow-lift);
}

/* FIX: has-texture::before MUST have content or it won't paint */
.has-texture::before {
  content:             '';
  position:            absolute;
  inset:               0;
  background-image:    var(--texture-ink);
  background-size:     cover;
  background-position: center;
  opacity:             0.06;
  mix-blend-mode:      multiply;
  pointer-events:      none;
  z-index:             0;
}

.poster-frame img,
.impact-media img {
  position: relative;
  z-index:  1;
  display:  block;
}

.poster-frame::before,
.impact-media::before {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 192, 123, 0.22), transparent 52%),
    radial-gradient(circle at 76% 55%, rgba(180, 83, 9, 0.12), transparent 54%),
    radial-gradient(circle at 70% 20%, rgba(15, 52, 96, 0.16), transparent 55%),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.02) 1px, transparent 1px, transparent 7px);
  pointer-events: none;
}

.poster-frame::after,
.impact-media::after {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    linear-gradient(180deg, rgba(245, 245, 244, 0.0), rgba(245, 245, 244, 0.18)),
    radial-gradient(circle at 40% 25%, rgba(239, 192, 123, 0.18), transparent 50%);
  pointer-events: none;
}

/* ── 12. IMAGE SLOT GRADIENT COMPOSITIONS ───────────────── */
[data-image-slot="hero-16x9"] {
  background:
    linear-gradient(90deg, rgba(245, 245, 244, 1) 0%, rgba(245, 245, 244, 0.92) 58%, rgba(15, 52, 96, 0.10) 58%, rgba(15, 52, 96, 0.22) 100%),
    radial-gradient(circle at 78% 52%, rgba(15, 52, 96, 0.18), transparent 55%);
}
[data-image-slot="hero-16x9"]::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 192, 123, 0.22), transparent 52%),
    radial-gradient(circle at 72% 55%, rgba(180, 83, 9, 0.12), transparent 54%),
    radial-gradient(circle at 76% 40%, rgba(15, 52, 96, 0.18), transparent 55%),
    linear-gradient(90deg, rgba(245, 245, 244, 1) 0%, rgba(245, 245, 244, 0.92) 58%, rgba(15, 52, 96, 0.10) 58%, rgba(15, 52, 96, 0.22) 100%);
}
[data-image-slot="hero-16x9"]::after {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    radial-gradient(circle at 78% 52%, rgba(239, 192, 123, 0.30), transparent 46%),
    linear-gradient(95deg, transparent 0%, rgba(180, 83, 9, 0.28) 48%, rgba(180, 83, 9, 0.12) 58%, transparent 78%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

[data-image-slot="living-benefits-16x11"] {
  background: linear-gradient(180deg, rgba(245, 245, 244, 1), rgba(245, 245, 244, 0.82));
}
[data-image-slot="living-benefits-16x11"]::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(239, 192, 123, 0.30), transparent 48%),
    linear-gradient(90deg, rgba(180, 83, 9, 0.22), rgba(180, 83, 9, 0.0) 24%),
    linear-gradient(180deg, rgba(15, 52, 96, 0.10), transparent 52%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.02), transparent 50%);
}
[data-image-slot="living-benefits-16x11"]::after {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    linear-gradient(90deg, rgba(180, 83, 9, 0.0) 0%, rgba(180, 83, 9, 0.0) 88%, rgba(180, 83, 9, 0.22) 88%, rgba(180, 83, 9, 0.0) 100%),
    linear-gradient(180deg, rgba(245, 245, 244, 0.0) 0%, rgba(15, 52, 96, 0.10) 100%);
  pointer-events: none;
}

[data-image-slot="iul-16x11"]::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 192, 123, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(15, 52, 96, 0.0) 0%, rgba(15, 52, 96, 0.12) 46%, rgba(15, 52, 96, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 52, 96, 0.16) 0%, rgba(15, 52, 96, 0.16) 26%, transparent 26%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.02) 1px, transparent 1px, transparent 8px);
}

[data-image-slot="term-16x11"]::before {
  background:
    radial-gradient(circle at 30% 25%, rgba(239, 192, 123, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(245, 245, 244, 0.0), rgba(15, 23, 42, 0.06)),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.02) 1px, transparent 1px, transparent 10px);
}

[data-image-slot="final-expense-16x11"]::before {
  background:
    radial-gradient(circle at 36% 18%, rgba(239, 192, 123, 0.30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(180, 83, 9, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(245, 245, 244, 0.0), rgba(15, 52, 96, 0.08)),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.018), rgba(15, 23, 42, 0.018) 1px, transparent 1px, transparent 9px);
}

/* ── 13. IMPACT CARDS ───────────────────────────────────── */
.impact-card {
  position:     relative;
  border-radius:var(--radius-lg);
  border:       1px solid rgba(245, 245, 244, 0.12);
  background:   linear-gradient(160deg, var(--sapphire), var(--ink));
  box-shadow:   var(--shadow-soft);
  padding:      24px 22px 22px;
  overflow:     hidden;
  transition:   box-shadow  var(--dur-base) var(--ease-out),
                transform   var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out);
  will-change:  transform;
  color:        var(--paper);
}
.impact-card:hover {
  box-shadow:   var(--shadow-lift);
  transform:    translateY(-3px);
  border-color: rgba(239, 192, 123, 0.3);
}

.impact-card::before {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    radial-gradient(circle at 18% 24%, rgba(239, 192, 123, 0.18), transparent 52%),
    radial-gradient(circle at 76% 60%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(90deg, rgba(180, 83, 9, 0.15), rgba(180, 83, 9, 0.0) 28%);
  opacity:  0.85;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.impact-card:hover::before { opacity: 1; }

.impact-kicker {
  position:       relative;
  z-index:        1;
  font-size:      12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight:    700;
  color:          rgba(239, 192, 123, 0.9);
  margin-top:     10px;
}
.impact-title {
  position:    relative;
  z-index:     1;
  margin-top:  8px;
  font-family: "Merriweather", ui-serif, Georgia, "Times New Roman", serif;
  font-size:   23px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.impact-body {
  position:   relative;
  z-index:    1;
  margin-top: 8px;
  font-size:  15px;
  line-height:1.65;
  color:      rgba(245, 245, 244, 0.85);
}

/* ── 14. IMPACT BAND (dark CTA strip) ───────────────────── */
.impact-band {
  position:     relative;
  border-radius:var(--radius-xl);
  border:       1px solid rgba(15, 23, 42, 0.16);
  overflow:     hidden;
  box-shadow:   0 20px 60px rgba(15, 23, 42, 0.24);
  color:        rgba(245, 245, 244, 0.92);
  background:
    radial-gradient(circle at 18% 28%, rgba(239, 192, 123, 0.28), transparent 56%),
    radial-gradient(circle at 80% 48%, rgba(180, 83, 9, 0.22), transparent 58%),
    linear-gradient(118deg, rgba(23, 62, 106, 0.94), rgba(20, 30, 44, 0.92));
}
.impact-band::after {
  content:  '';
  position: absolute;
  inset:    0;
  background:
    linear-gradient(95deg, transparent 0%, rgba(180, 83, 9, 0.18) 42%, rgba(180, 83, 9, 0.06) 58%, transparent 76%),
    repeating-linear-gradient(0deg, rgba(245, 245, 244, 0.03), rgba(245, 245, 244, 0.03) 1px, transparent 1px, transparent 10px);
  opacity:        0.65;
  pointer-events: none;
}
.impact-band-inner {
  position: relative;
  z-index:  1;
  padding:  42px 36px;
}
.impact-band-image {
  border-radius:   0;
  overflow:        visible;
  background:      none;
  border:          none;
  box-shadow:      none;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         0;
}
.impact-band-image::after {
  content: none;
}
.impact-divider-image {
  display:         block;
  width:           100%;
  max-width:       none;
  height:          auto;
  object-fit:      contain;
  image-rendering: auto;
  filter:          none;
}
@media (max-width: 640px) {
  .impact-band-inner { padding: 32px 20px; }
  .impact-divider-image {
    width: 100%;
  }
}

/* ── 15. EUCALYPTUS CHECKLIST ───────────────────────────── */
.check-list {
  list-style: none;
  padding:    0;
  margin:     0;
}
.check-list li {
  position:    relative;
  padding-left:26px;
  font-size:   15px;
  color:       rgba(15, 23, 42, 0.75);
  line-height: 1.55;
}
.check-list li + li { margin-top: 10px; }

/* Eucalyptus tick mark */
.check-list li::before {
  content:       '';
  position:      absolute;
  left:          0;
  top:           0.2em;
  width:         14px;
  height:        14px;
  border-radius: 50%;
  background:    rgba(77, 124, 15, 0.12);
  border:        1.5px solid rgba(77, 124, 15, 0.30);
}
.check-list li::after {
  content:      '';
  position:     absolute;
  left:         4px;
  top:          0.45em;
  width:        5px;
  height:       3px;
  border-left:  1.5px solid var(--eucalyptus);
  border-bottom:1.5px solid var(--eucalyptus);
  transform:    rotate(-45deg);
}

/* ── 15. CARD ARTICLE (Products) ────────────────────────── */
.card-article {
  border-radius:  var(--radius-lg);
  border:         1px solid rgba(15, 23, 42, 0.14);
  background:     linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 248, 0.90));
  padding:        0;
  overflow:       hidden;
  box-shadow:     var(--shadow-sm);
  display:        flex;
  flex-direction: column;
  transition:     box-shadow var(--dur-base) var(--ease-out),
                  transform var(--dur-base) var(--ease-out),
                  border-color var(--dur-base) var(--ease-out);
}
.card-article:hover {
  box-shadow:   var(--shadow-soft);
  transform:    translateY(-3px);
  border-color: rgba(15, 52, 96, 0.22);
}
.card-article h3 {
  padding: 0 20px;
  font-weight: 640;
  line-height: 1.18;
}
.card-article > p {
  padding: 0 20px 12px;
  flex: 1 1 auto;
  line-height: 1.58;
}
.card-article details {
  padding: 0 20px 20px;
  margin-top: auto;
}

/* -- 15.5 FEATURE + PLAN SECTIONS ------------------------------------------ */
.feature-card {
  display:        flex;
  gap:            14px;
  padding:        20px 22px;
  border-radius:  var(--radius-lg);
  border:         1px solid rgba(15, 23, 42, 0.12);
  border-left:    3px solid rgba(15, 52, 96, 0.20);
  background:     linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 250, 248, 0.88));
  box-shadow:     var(--shadow-sm);
  transition:     border-color var(--dur-fast) var(--ease-out),
                  box-shadow var(--dur-fast) var(--ease-out),
                  transform var(--dur-fast) var(--ease-out);
}
.feature-card:hover {
  border-left-color: rgba(180, 83, 9, 0.45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.feature-card h3 {
  margin:         0;
  font-size:      18px;
  font-weight:    700;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin:     8px 0 0;
  font-size:  14.5px;
  line-height:1.65;
  color:      rgba(15, 23, 42, 0.78);
}

/* Extra-ordinary standard: maximize readability. */
#standard,
[data-section="standard"] {
  color: rgba(15, 23, 42, 0.92);
}
#standard p,
[data-section="standard"] p {
  color: rgba(15, 23, 42, 0.84);
}
#standard .feature-card p,
[data-section="standard"] .feature-card p {
  color: rgba(15, 23, 42, 0.86);
}
#standard .feature-card h3,
[data-section="standard"] .feature-card h3 {
  color: rgba(15, 23, 42, 0.94);
}
.feature-icon {
  width:        42px;
  height:       42px;
  flex-shrink:  0;
  border-radius: 12px;
  display:      inline-flex;
  align-items:  center;
  justify-content: center;
  background:   rgba(15, 52, 96, 0.08);
  border:       1px solid rgba(15, 52, 96, 0.18);
  color:        var(--sapphire);
}
.feature-icon svg { width: 22px; height: 22px; }

/* Plans section: pull-forward the original dark-page impact. */
.plans-band {
  position: relative;
  color: rgba(245, 245, 244, 0.92);
  background:
    radial-gradient(circle at 18% 12%, rgba(239, 192, 123, 0.22), transparent 58%),
    radial-gradient(circle at 72% 78%, rgba(96, 165, 250, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(2, 6, 23, 1), rgba(15, 23, 42, 0.98));
  margin-top: 3rem;
}
.plans-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(245, 245, 244, 0.035), rgba(245, 245, 244, 0.035) 1px, transparent 1px, transparent 12px),
    linear-gradient(95deg, transparent 0%, rgba(180, 83, 9, 0.18) 44%, rgba(180, 83, 9, 0.06) 60%, transparent 78%);
  opacity: 0.75;
  pointer-events: none;
}
.plans-band > * {
  position: relative;
  z-index: 1;
}
.plans-band .plans-kicker {
  color: rgba(245, 245, 244, 0.78);
  opacity: 1;
}
.plans-band .plans-kicker::before {
  background: linear-gradient(90deg, rgba(239, 192, 123, 0.92), rgba(180, 83, 9, 0.72));
  box-shadow: 0 2px 10px rgba(180, 83, 9, 0.24);
}
.plans-help {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 245, 244, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 245, 244, 0.86);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.24);
}
.plans-help strong {
  display: block;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 244, 0.96);
  margin-bottom: 6px;
}
.plans-select-note {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 244, 0.20);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 244, 0.94);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  max-width: 100%;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.26);
}
.plans-select-note-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, rgba(77, 124, 15, 0.92), rgba(61, 99, 12, 0.96));
  border: 1px solid rgba(134, 239, 172, 0.55);
}
.plans-select-note-icon svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 640px) {
  .plans-select-note {
    border-radius: 14px;
    align-items: flex-start;
    font-size: 15px;
    padding: 10px 12px;
  }
}

.plan-card {
  border-radius:  var(--radius-xl);
  border:         1px solid rgba(15, 23, 42, 0.14);
  background:     linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 248, 0.88));
  padding:        26px 26px 24px;
  box-shadow:     var(--shadow-soft);
  position:       relative;
  transition:     transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-crisp);
  border-color: rgba(15, 52, 96, 0.22);
}
.plan-card.is-selected {
  border-color: rgba(15, 52, 96, 0.85);
  border-width: 2px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.28);
  background:
    radial-gradient(circle at 12% 10%, rgba(239, 192, 123, 0.24), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,248,246,0.94));
}
.plan-card.is-selected::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.9), rgba(15, 52, 96, 0.45));
}
.plan-card.is-selected::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 52, 96, 0.9);
  box-shadow: 0 0 0 4px rgba(15, 52, 96, 0.12);
}
.plan-selected-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(15, 52, 96, 0.16);
  color: rgba(15, 52, 96, 0.95);
  border: 1px solid rgba(15, 52, 96, 0.55);
  box-shadow: 0 8px 20px rgba(15, 52, 96, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.plan-card.is-selected .plan-selected-pill {
  opacity: 1;
  transform: translateY(0);
}

/* Dark plans band variants */
.plans-band .plan-card {
  border-color: rgba(245, 245, 244, 0.16);
  background:
    radial-gradient(circle at 14% 10%, rgba(96, 165, 250, 0.10), transparent 46%),
    radial-gradient(circle at 85% 35%, rgba(239, 192, 123, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.70));
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.44);
}
.plans-band .plan-card:hover {
  border-color: rgba(147, 197, 253, 0.24);
  box-shadow: 0 34px 100px rgba(2, 6, 23, 0.54);
  transform: translateY(-4px) scale(1.01);
}
.plans-band .plan-card.is-selected {
  border-color: rgba(147, 197, 253, 0.72);
  box-shadow:
    0 34px 120px rgba(2, 6, 23, 0.62),
    0 0 0 4px rgba(59, 130, 246, 0.12),
    0 0 0 1px rgba(147, 197, 253, 0.18) inset;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 192, 123, 0.18), transparent 52%),
    radial-gradient(circle at 78% 30%, rgba(96, 165, 250, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.76));
}
.plans-band .plan-card.is-selected::before {
  background: linear-gradient(180deg, rgba(239, 192, 123, 0.95), rgba(96, 165, 250, 0.58));
}
.plans-band .plan-card.is-selected::after {
  background: rgba(239, 192, 123, 0.95);
  box-shadow: 0 0 0 4px rgba(239, 192, 123, 0.12);
}
.plans-band .plan-selected-pill {
  background: rgba(239, 192, 123, 0.12);
  color: rgba(239, 192, 123, 0.96);
  border-color: rgba(239, 192, 123, 0.34);
  box-shadow: 0 12px 30px rgba(180, 83, 9, 0.20);
}
.plans-band .plan-kicker {
  color: rgba(147, 197, 253, 0.90);
  border-color: rgba(147, 197, 253, 0.22);
  background: rgba(37, 99, 235, 0.10);
}
.plans-band .plan-card-highlight {
  border-color: rgba(239, 192, 123, 0.26);
}
.plans-band .plan-card-highlight:hover {
  border-color: rgba(239, 192, 123, 0.34);
}
.plans-band .plan-head h3 {
  color: rgba(245, 245, 244, 0.96);
}
.plans-band .plan-subhead {
  color: rgba(147, 197, 253, 0.76);
}
.plans-band .plan-card .check-list li {
  color: rgba(245, 245, 244, 0.86);
}
.plans-band .plan-card .check-list li::before {
  filter: saturate(1.15);
}
.plans-band .plan-note {
  color: rgba(245, 245, 244, 0.64);
}
.plans-band .plan-card .plan-details-standardized {
  border-top-color: rgba(245, 245, 244, 0.10);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.18));
}
.plans-band .plan-card .plan-details-standardized::before {
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.70), rgba(239, 192, 123, 0.50));
  opacity: 0.85;
}
.plans-band .plan-callout {
  background: rgba(147, 197, 253, 0.08);
  border-left-color: rgba(147, 197, 253, 0.52);
}
.plans-band .plan-callout h4 {
  color: rgba(245, 245, 244, 0.94);
}
.plans-band .plan-callout h4 span {
  color: rgba(245, 245, 244, 0.70);
}
.plans-band .plan-callout p {
  color: rgba(245, 245, 244, 0.78);
}
.plans-band .plan-callout-grid {
  color: rgba(245, 245, 244, 0.78);
}

@media (max-width: 640px) {
  .plans-help { padding: 14px 14px; }
  .plans-band .plan-card {
    padding: 20px 20px 18px;
  }
  .plans-band .plan-card .plan-details-standardized {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -18px;
    padding: 16px 20px 18px;
  }
  .plans-band .plan-card .plan-details-standardized::before {
    left: 20px;
    right: 20px;
  }
}

.plan-head h3 {
  margin:     8px 0 0;
  font-family:"Merriweather", ui-serif, Georgia, "Times New Roman", serif;
  font-size:  24px;
  letter-spacing: -0.01em;
}
.plan-subhead {
  margin-top: 10px;
  font-size:  14px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color:      rgba(15, 52, 96, 0.70);
}
.plan-card .check-list {
  margin-top: 16px;
  flex-grow: 1;
}
.plan-note {
  margin-top: 16px;
  font-size:  13px;
  line-height:1.6;
  color:      rgba(15, 23, 42, 0.65);
}
.plan-callout {
  margin-top: 16px;
  padding:    14px 16px;
  border-radius: 12px;
  background: rgba(15, 52, 96, 0.05);
  border-left: 4px solid rgba(15, 52, 96, 0.45);
}
.plan-callout h4 {
  margin:    0;
  font-size: 13px;
  font-weight:700;
  color:     rgba(15, 23, 42, 0.85);
}
.plan-callout h4 span {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.60);
}
.plan-callout p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.70);
}

/* Section breakers */
.band-solid {
  position: relative;
}
.band-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(239, 192, 123, 0.20), transparent 55%),
    radial-gradient(circle at 78% 42%, rgba(15, 52, 96, 0.10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.01), rgba(15, 23, 42, 0.01) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
}
.band-solid > * {
  position: relative;
  z-index: 1;
}

.quote-band {
  background: linear-gradient(180deg, rgba(230, 235, 240, 0.92), rgba(245, 245, 244, 0.98));
}
.quote-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 248, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  position: relative;
  overflow: hidden;
}
.quote-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  pointer-events: none;
  background:
    radial-gradient(18px 12px at 0 0, rgba(15, 52, 96, 0.28), rgba(15, 52, 96, 0) 78%),
    radial-gradient(18px 12px at 100% 0, rgba(180, 83, 9, 0.26), rgba(180, 83, 9, 0) 78%),
    linear-gradient(90deg,
      rgba(15, 52, 96, 0) 0%,
      rgba(15, 52, 96, 0.78) 14%,
      rgba(15, 52, 96, 0.58) 50%,
      rgba(180, 83, 9, 0.44) 86%,
      rgba(180, 83, 9, 0) 100%);
  opacity: 0.96;
}

/* What's next list */
.whats-next {
  counter-reset: whats-next;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.whats-next li {
  counter-increment: whats-next;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  line-height: 1.55;
}
.whats-next li::before {
  content: counter(whats-next);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.92), rgba(15, 52, 96, 0.74));
  box-shadow: 0 10px 22px rgba(15, 52, 96, 0.16);
  border: 1px solid rgba(15, 52, 96, 0.22);
}
.plan-card-highlight {
  border-color: rgba(15, 52, 96, 0.28);
  box-shadow:   var(--shadow-crisp);
}
.plan-head h3 {
  margin:     8px 0 0;
  font-family:"Merriweather", ui-serif, Georgia, "Times New Roman", serif;
  font-size:  22px;
  letter-spacing: -0.01em;
}
.plan-subhead {
  margin-top: 10px;
  font-size:  14px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
  color:      rgba(15, 52, 96, 0.70);
}
.plan-note {
  margin-top: 12px;
  font-size:  13px;
  line-height:1.6;
  color:      rgba(15, 23, 42, 0.60);
}
.plan-card .plan-details-standardized {
  margin-top: auto;
  margin-left: -26px;
  margin-right: -26px;
  margin-bottom: -24px;
  padding: 18px 26px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.05), rgba(15, 52, 96, 0.03));
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  position: relative;
}
.plan-card .plan-details-standardized::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 52, 96, 0.75), rgba(180, 83, 9, 0.35));
  opacity: 0.65;
}
.plan-card .plan-details-standardized .plan-note {
  margin-top: 10px;
}
.plan-card .plan-details-standardized .plan-note:first-child {
  margin-top: 0;
}
.plan-card .plan-details-standardized .plan-callout {
  margin-top: 12px;
}
.plan-callout {
  margin-top: 14px;
  padding:    12px 14px;
  border-radius: 12px;
  background: rgba(15, 52, 96, 0.06);
  border-left: 3px solid rgba(15, 52, 96, 0.45);
}
.plan-callout h4 {
  margin:    0;
  font-size: 13px;
  font-weight:700;
  color:     rgba(15, 23, 42, 0.85);
}
.plan-callout h4 span {
  font-weight: 500;
  color: rgba(15, 23, 42, 0.60);
}
.plan-callout p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.70);
}
.plan-callout-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.70);
}
@media (max-width: 640px) {
  .plan-callout-grid { grid-template-columns: 1fr; }
}

/* Plan selection (form-attached) */
.plan-select {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 245, 244, 0.14);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.98));
  padding: 16px;
  margin-bottom: 16px;
  color: rgba(245, 245, 244, 0.92);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.22);
}
.plan-select[data-has-selection="true"] {
  border-color: rgba(147, 197, 253, 0.26);
  box-shadow:
    0 26px 80px rgba(2, 6, 23, 0.30),
    0 0 0 4px rgba(59, 130, 246, 0.10);
}
.plan-select[data-has-selection="true"] .plan-select-badge {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.28);
}
.plan-select-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-select-step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.92);
}
.plan-select-title {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 244, 0.96);
}
.plan-select-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: rgba(245, 245, 244, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.28);
}
.plan-select-selected {
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.plan-select-selected.is-active {
  margin-top: 12px;
  max-height: 360px;
  overflow: auto;
  opacity: 1;
  transform: translateY(0);
}
.plan-select-selected-inner {
  border-radius: 14px;
  border: 1px solid rgba(245, 245, 244, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(37, 99, 235, 0.65);
  padding: 12px 12px 10px;
}
.plan-select-selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-select-selected-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 244, 0.82);
}
.plan-select-selected-clear {
  appearance: none;
  border: 1px solid rgba(245, 245, 244, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 244, 0.86);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.plan-select-selected-clear:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(245, 245, 244, 0.26);
  transform: translateY(-1px);
}
.plan-select-selected-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.plan-select-selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 245, 244, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 10px 10px 12px;
}
.plan-select-selected-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.plan-select-selected-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(34, 197, 94, 0.95);
  color: rgba(2, 6, 23, 0.92);
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.22);
}
.plan-select-selected-check svg {
  width: 14px;
  height: 14px;
}
.plan-select-selected-text {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(245, 245, 244, 0.94);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-select-selected-remove {
  appearance: none;
  border: 1px solid rgba(245, 245, 244, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 244, 0.88);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.plan-select-selected-remove:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(245, 245, 244, 0.26);
  transform: translateY(-1px);
}
.plan-select-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.plan-select-chip {
  appearance: none;
  border: 1px solid rgba(245, 245, 244, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(245, 245, 244, 0.90);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.plan-select-chip:hover {
  border-color: rgba(147, 197, 253, 0.28);
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
}
.plan-select-chip.is-selected {
  border-color: rgba(147, 197, 253, 0.40);
  background: rgba(37, 99, 235, 0.20);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}
.plan-select-help {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(245, 245, 244, 0.72);
}
@media (max-width: 640px) {
  .plan-select-grid { grid-template-columns: 1fr; }
}

/* Simplified plan selection (selected plans only). */
.plan-select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(15, 23, 42, 0.86);
  padding: 10px 12px;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}
.plan-select[hidden] {
  display: none !important;
}
.plan-select-selected {
  margin-top: 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  transition: none;
}
.plan-select-selected:not(.is-active) {
  display: none;
}
.plan-select-selected-list {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.plan-select-selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 8px 6px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(15, 23, 42, 0.90);
  border: 1px solid rgba(15, 52, 96, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 250, 0.92));
}
.plan-select-selected-pill-label {
  min-width: 0;
}
.plan-select-selected-pill-remove {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.82);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.plan-select-selected-pill-remove:hover {
  border-color: rgba(15, 52, 96, 0.28);
  color: rgba(15, 23, 42, 0.96);
}

@keyframes dropdown-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── 16. FAQ — DETAILS / SUMMARY ────────────────────────── */
details.faq-item {
  border-radius:var(--radius-md);
  border:       1px solid rgba(15, 23, 42, 0.12);
  background:   linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,248,246,0.88));
  box-shadow:   var(--shadow-xs);
  overflow:     hidden;
  transition:   box-shadow   var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out);
}
details.faq-item[open] {
  box-shadow:   var(--shadow-soft);
  border-color: rgba(15, 52, 96, 0.20);
}
details.faq-item > summary {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             12px;
  padding:         16px 18px;
  font-size:       14px;
  font-weight:     600;
  cursor:          pointer;
  list-style:      none;
  user-select:     none;
  transition:      color var(--dur-fast) var(--ease-out);
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::marker { display: none; }

/* Animated chevron */
details.faq-item > summary::after {
  content:      '';
  flex-shrink:  0;
  width:        20px;
  height:       20px;
  border:       1.5px solid rgba(15, 23, 42, 0.20);
  border-radius:50%;
  background:
    center / 9px 9px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2.5 4l2.5 2.5L7.5 4' stroke='%230f172a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition:   transform  var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out),
                background-color var(--dur-fast) var(--ease-out);
}
details.faq-item[open] > summary::after {
  transform:    rotate(180deg);
  border-color: rgba(15, 23, 42, 0.30);
  background-color: rgba(15, 23, 42, 0.04);
}
details.faq-item > summary:hover { color: var(--sapphire); }
details.faq-item > summary:hover::after {
  border-color: rgba(15, 52, 96, 0.36);
}

.faq-body {
  padding:    0 18px 18px;
  font-size:  15px;
  line-height:1.72;
  color:      rgba(15, 23, 42, 0.70);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: -1px;
  padding-top:14px;
}
details.faq-item[open] .faq-body {
  animation: dropdown-reveal 240ms var(--ease-out) both;
}

/* Product inner details */
details.product-detail {
  border-radius: 12px;
  border:       1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.76);
  overflow:     hidden;
  transition:   box-shadow var(--dur-base) var(--ease-out),
                border-color var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out);
  margin-top:   16px;
}
details.product-detail[open] {
  box-shadow: var(--shadow-xs);
  border-color: rgba(15, 52, 96, 0.18);
  background: #ffffff;
}
details.product-detail > summary {
  min-height: 48px;
  padding:    11px 14px;
  font-size:  14px;
  font-weight: 760;
  letter-spacing: 0.01em;
  color:      rgba(255, 255, 255, 0.96);
  background: #101828;
  cursor:     pointer;
  list-style: none;
  display:    flex;
  align-items:center;
  justify-content:space-between;
  gap:        10px;
  border-radius: 12px;
  transition: color var(--dur-fast) var(--ease-out);
}
details.product-detail > summary::-webkit-details-marker { display: none; }
details.product-detail > summary:hover {
  background: #0f3460;
  color: #fff;
}
details.product-detail > summary:focus-visible {
  outline: 2px solid rgba(15, 52, 96, 0.28);
  outline-offset: 2px;
}
details.product-detail > summary::after {
  content:    '';
  flex-shrink:0;
  width:      22px;
  height:     22px;
  border-radius: 999px;
  border:     1px solid rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.14);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2.5 4l2.5 2.5L7.5 4' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
details.product-detail[open] > summary::after {
  transform: rotate(180deg);
  border-color: rgba(255, 255, 255, 0.38);
  background-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.24);
}
.product-detail-body {
  display:    grid;
  grid-template-rows: 0fr;
  padding:    0 16px;
  opacity:    0;
  font-size:  14px;
  line-height: 1.68;
  color:      rgba(15, 23, 42, 0.82);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  transition:
    grid-template-rows 380ms var(--ease-out),
    opacity 240ms var(--ease-out),
    padding-top 320ms var(--ease-out),
    padding-bottom 320ms var(--ease-out),
    border-color 220ms var(--ease-out);
}
.product-detail-body-inner {
  min-height: 0;
  overflow: hidden;
}
details.product-detail[open] .product-detail-body {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 15px;
}
@media (prefers-reduced-motion: reduce) {
  .product-detail-body,
  details.product-detail > summary::after {
    transition: none !important;
  }
}

/* ——— 16.5 MOBILE DRAWER NAV ——— */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base) var(--ease-out);
  z-index: 80;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 320px);
  background: rgba(245, 245, 244, 0.98);
  border-left: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: -20px 0 60px rgba(15, 23, 42, 0.18);
  transform: translateX(105%);
  transition: transform 560ms var(--ease-out);
  z-index: 90;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer-inner {
  padding: 20px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer-close {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.mobile-drawer-close:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.2);
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.mobile-nav-item {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transform: translateX(18px);
  opacity: 0;
  transition:
    transform 560ms var(--ease-out),
    opacity 560ms var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.mobile-nav-item:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.18);
}
.mobile-nav-cta {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
}
.mobile-nav-cta:hover {
  background: var(--sapphire);
}
.mobile-drawer.is-open .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
}
.mobile-drawer.is-open .mobile-nav-item:nth-child(1) { transition-delay: 80ms; }
.mobile-drawer.is-open .mobile-nav-item:nth-child(2) { transition-delay: 140ms; }
.mobile-drawer.is-open .mobile-nav-item:nth-child(3) { transition-delay: 200ms; }
.mobile-drawer.is-open .mobile-nav-item:nth-child(4) { transition-delay: 260ms; }
.mobile-drawer.is-open .mobile-nav-item:nth-child(5) { transition-delay: 320ms; }
.mobile-drawer.is-open .mobile-nav-item:nth-child(6) { transition-delay: 380ms; }

@media (min-width: 1024px) {
  .mobile-header,
  .mobile-header-logo {
    position: static;
    transform: none;
  }
}
.mobile-header {
  position: relative;
}
.mobile-header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mobile-header-spacer {
  width: 48px;
  height: 1px;
}

@media (max-width: 1023px) {
  .mobile-header-logo {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    line-height: 0;
  }
  .mobile-header-logo img {
    display: block;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.14));
  }
}

/* ── 17. FORM ───────────────────────────────────────────── */
.form-label {
  display:      block;
  font-size:    15px;
  font-weight:  600;
  color:        rgba(15, 23, 42, 0.82);
  margin-bottom:6px;
}
.quote-panel .form-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.72);
}
.form-input,
.form-select,
.form-textarea {
  display:        block;
  width:          100%;
  box-sizing:     border-box;
  padding:        11px 14px;
  border-radius:  var(--radius-sm);
  border:         1.5px solid rgba(15, 23, 42, 0.13);
  background:     linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 244, 0.92));
  font-size:      16px;
  font-family:    inherit;
  color:          var(--ink);
  outline:        none;
  transition:     border-color var(--dur-fast) var(--ease-out),
                  box-shadow   var(--dur-fast) var(--ease-out);
  -webkit-appearance:none;
  appearance:     none;
  box-shadow:     inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(15, 23, 42, 0.22);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sapphire);
  box-shadow:
    0 0 0 3px rgba(15, 52, 96, 0.11),
    0 14px 34px rgba(15, 23, 42, 0.10);
}
.form-textarea {
  min-height: 112px;
  resize:     vertical;
}
.form-select {
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 7l3 3 3-3' stroke='%230f172a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 12px center;
  background-size:     16px;
  padding-right:       36px;
  cursor:              pointer;
}

/* ── 18. TRUST BADGE ────────────────────────────────────── */
.trust-badge {
  display:       inline-flex;
  align-items:   center;
  gap:           7px;
  padding:       8px 16px;
  border-radius: 999px;
  border:        1px solid rgba(15, 23, 42, 0.12);
  background:    rgba(255,255,255,0.82);
  font-size:     12px;
  font-weight:   600;
  backdrop-filter: blur(6px);
  box-shadow:    var(--shadow-xs);
}
.trust-badge .dot {
  display:       inline-block;
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    linear-gradient(135deg, var(--copper), var(--copper-light));
  flex-shrink:   0;
  box-shadow:    0 2px 6px rgba(180, 83, 9, 0.3);
}

/* Coverage pill tags */
.coverage-tag {
  display:       inline-flex;
  align-items:   center;
  padding:       5px 13px;
  border-radius: 999px;
  border:        1px solid rgba(15, 23, 42, 0.10);
  background:    rgba(255,255,255,0.64);
  font-size:     11.5px;
  font-weight:   500;
  color:         rgba(15, 23, 42, 0.70);
  transition:    background   var(--dur-fast) var(--ease-out),
                 border-color var(--dur-fast) var(--ease-out);
}
.coverage-tag:hover {
  background:   rgba(255,255,255,0.92);
  border-color: rgba(15, 23, 42, 0.18);
}

/* ── 19. AGENT AVATAR ───────────────────────────────────── */
.agent-avatar {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           46px;
  height:          46px;
  border-radius:   50%;
  background:      linear-gradient(135deg, rgba(239,192,123,0.38), rgba(180,83,9,0.20));
  border:          1.5px solid rgba(180, 83, 9, 0.24);
  font-size:       17px;
  font-weight:     700;
  color:           var(--copper);
  flex-shrink:     0;
  font-family:     "Merriweather", ui-serif, serif;
  letter-spacing:  -0.02em;
}
.agent-avatar-contact {
  width: 56px;
  height: 56px;
  border-width: 2px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}
.contact-licensed {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(15, 23, 42, 0.78);
  font-weight: 600;
}
.contact-licensed-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
  color: var(--copper);
}
.contact-licensed-icon svg {
  width: 100%;
  height: 100%;
}

/* ── 20. PLAN KICKER BADGE ──────────────────────────────── */
.plan-kicker {
  display:        inline-block;
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--sapphire);
  padding:        5px 12px;
  border-radius:  999px;
  border:         1px solid rgba(15, 52, 96, 0.14);
  background:     rgba(15, 52, 96, 0.05);
}

/* ── 21. SECTION KICKER ─────────────────────────────────── */
.section-kicker {
  display:        inline-flex;
  align-items:    center;
  gap:            7px;
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--sapphire);
  opacity:        0.90;
}
.section-kicker::before {
  content:      '';
  display:      inline-block;
  width:        20px;
  height:       3px;
  border-radius:999px;
  background:   linear-gradient(90deg, var(--copper), var(--copper-light));
  flex-shrink:  0;
  box-shadow:   0 2px 6px rgba(180, 83, 9, 0.25);
}

/* ── 22. HERO STAT MINI-CARDS ───────────────────────────── */
.hero-stat-card {
  border-radius:   var(--radius-md);
  border:          1px solid rgba(15, 23, 42, 0.10);
  background:      rgba(255,255,255,0.64);
  padding:         14px 16px;
  backdrop-filter: blur(6px);
  transition:      box-shadow var(--dur-base) var(--ease-out),
                   transform  var(--dur-base) var(--ease-out);
}
.hero-stat-card:hover {
  box-shadow: var(--shadow-sm);
  transform:  translateY(-2px);
}

/* Mobile hero gallery scaffold (interactive behavior is enabled on mobile only). */
.hero-mobile-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-mobile-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(0) scale(0.92);
  transform-origin: center center;
  transition: transform 300ms cubic-bezier(0.2, 0.85, 0.25, 1), opacity 260ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}
.hero-mobile-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.hero-mobile-swipe-hint,
.hero-mobile-dots {
  display: none;
}

/* Simple Slideshow Component */
.simple-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.simple-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.simple-slideshow .slide.active {
  opacity: 1;
}

.simple-slideshow .slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.simple-slideshow .slideshow-nav:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(15, 52, 96, 0.95);
  border-color: rgba(15, 52, 96, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translateY(-50%) scale(1.08);
}

.simple-slideshow .slideshow-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.simple-slideshow .slideshow-prev {
  left: 12px;
}

.simple-slideshow .slideshow-next {
  right: 12px;
}

.simple-slideshow .slideshow-nav svg {
  width: 20px;
  height: 20px;
}

.simple-slideshow .slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.simple-slideshow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 200ms ease;
}

.simple-slideshow .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.simple-slideshow .dot.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Hero navigation arrows for desktop/tablet (legacy) */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}
.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(15, 52, 96, 0.95);
  border-color: rgba(15, 52, 96, 0.22);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transform: translateY(-50%) scale(1.08);
}
.hero-nav-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.hero-nav-prev {
  left: 12px;
}
.hero-nav-next {
  right: 12px;
}
.hero-nav-arrow svg {
  width: 20px;
  height: 20px;
}

/* ── 23. FADE-UP ENTRANCE ANIMATION ────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up          { animation: fade-up 0.6s var(--ease-out) both; }
.animate-delay-1          { animation-delay: 0.08s; }
.animate-delay-2          { animation-delay: 0.18s; }
.animate-delay-3          { animation-delay: 0.30s; }
.animate-delay-4          { animation-delay: 0.42s; }
.animate-delay-5          { animation-delay: 0.54s; }

/* Pull-forward from the legacy dark page: consistent section entrance. */
.animated-section {
  will-change: transform, opacity;
}
.animated-section.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
}
.animated-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animated-section.reveal-pending.is-visible {
  animation: fade-up 0.7s var(--ease-out) both;
}
@media (prefers-reduced-motion: reduce) {
  .animated-section,
  .animated-section.reveal-pending,
  .animated-section.is-visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Footer legal drawer */
.legal-drawer {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.legal-drawer > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.74);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-drawer > summary::-webkit-details-marker { display: none; }
.legal-drawer > summary::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: center / 9px 9px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2.5 4l2.5 2.5L7.5 4' stroke='%230f172a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.legal-drawer[open] > summary::after {
  transform: rotate(180deg);
  border-color: rgba(15, 52, 96, 0.24);
  background-color: rgba(15, 52, 96, 0.07);
}
.legal-drawer-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}
.legal-drawer[open] .legal-drawer-content {
  grid-template-rows: 1fr;
}
.legal-drawer-inner {
  overflow: hidden;
  padding: 0 14px 13px;
}

/* Email reveal (simple human check) */
.email-reveal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.email-reveal-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
}
.email-reveal-link:hover {
  border-bottom-color: rgba(180, 83, 9, 0.65);
}
.email-reveal-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(15, 23, 42, 0.22);
}
.email-reveal-btn:hover {
  border-bottom-color: rgba(180, 83, 9, 0.65);
}
.email-reveal-challenge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}
.email-reveal-question {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.78);
  white-space: nowrap;
}
.email-reveal-input {
  width: 64px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.88);
}
.email-reveal-submit {
  appearance: none;
  border: 1px solid rgba(15, 52, 96, 0.22);
  background: rgba(15, 52, 96, 0.10);
  color: rgba(15, 52, 96, 0.92);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.email-reveal-submit:hover {
  background: rgba(15, 52, 96, 0.14);
}
.email-reveal-message {
  font-size: 12px;
  font-weight: 600;
  color: rgba(180, 83, 9, 0.92);
}

.agent-bar .email-reveal-link,
.agent-bar .email-reveal-btn {
  border-bottom-color: rgba(245, 245, 244, 0.22);
}
.agent-bar .email-reveal-challenge {
  border-color: rgba(245, 245, 244, 0.18);
  background: rgba(15, 23, 42, 0.72);
}
.agent-bar .email-reveal-question,
.agent-bar .email-reveal-message {
  color: rgba(245, 245, 244, 0.86);
}
.agent-bar .email-reveal-input {
  border-color: rgba(245, 245, 244, 0.18);
  background: rgba(2, 6, 23, 0.52);
  color: rgba(255, 255, 255, 0.94);
}
.agent-bar .email-reveal-submit {
  border-color: rgba(239, 192, 123, 0.28);
  background: rgba(239, 192, 123, 0.12);
  color: rgba(239, 192, 123, 0.96);
}

