/* ============================================
   iMovi - Página: Index (Home)
   CSS específico de la landing page
   ============================================ */

/* -----------------------------------
   HERO CONTENT
----------------------------------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 6px;
  background: rgba(232,97,42,.12);
  border: 1px solid rgba(232,97,42,.3);
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .9s ease both;
}

.badge-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--ember-light);
  letter-spacing: .5px;
}

.h-cta-main {
  padding: 14px 32px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 0 40px rgba(232,97,42,.4);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.h-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 48px rgba(232,97,42,.6);
}

.h-cta-sec {
  padding: 14px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
  transition: all .2s;
  cursor: pointer;
}

.h-cta-sec:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  animation: fadeUp .9s .5s ease both;
  transition: opacity .4s;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollPulse 2s infinite;
}

/* -----------------------------------
   ZOOM OUT REVEAL (Hero principal)
----------------------------------- */
.zoom-wrapper {
  position: relative;
  height: 300vh;
  background: var(--ink);
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 32px 0 64px;
  background: linear-gradient(180deg, rgba(10,9,8,1) 0%, rgba(10,9,8,.96) 100%);
}

.trust-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top left, rgba(232,97,42,.16), transparent 28%),
    rgba(255,255,255,.03);
  box-shadow: 0 26px 80px rgba(0,0,0,.2);
}

.trust-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(232,97,42,.12);
  border: 1px solid rgba(232,97,42,.26);
  color: #FFD9CA;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 5px rgba(232,97,42,.15);
}

.trust-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: .98;
  letter-spacing: -.05em;
  color: #fff;
}

.trust-intro p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  min-height: 100%;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}

.trust-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.66);
}

.trust-card a {
  color: #fff;
  text-decoration-color: rgba(232,97,42,.6);
  text-underline-offset: 3px;
}

.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-bg {
  position: absolute;
  inset: 0;
  background: var(--ember);
  opacity: 0;
  z-index: 0;
}

.zoom-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.zoom-device {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background: var(--ink);
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius, box-shadow;
}

.device-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(20,18,16,.95);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.device-chrome.show {
  opacity: 1;
  transform: translateY(0);
}

.d-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.d-url {
  flex: 1;
  max-width: 260px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.device-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 56px;
}

.device-glow {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 650px;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,97,42,.2) 0%, rgba(232,97,42,.05) 45%, transparent 70%);
  pointer-events: none;
}

.device-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.device-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(10,9,8,.85) 100%);
  pointer-events: none;
}

.device-h1 {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
  animation: fadeUp .9s .1s ease both;
}

.device-h1 .l1 {
  display: block;
  color: rgba(255,255,255,.2);
}

.device-h1 .l2 {
  display: block;
  color: rgba(255,255,255,.5);
}

.device-h1 .l3 {
  display: block;
  color: #fff;
}

.device-h1 .l3 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .92em;
  letter-spacing: -2px;
}

.device-sub {
  font-size: 17px;
  color: rgba(255,255,255,.48);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  animation: fadeUp .9s .2s ease both;
}

.device-sub strong {
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.device-btns {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  animation: fadeUp .9s .3s ease both;
}

.dev-btn-main {
  padding: 14px 32px;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 0 0 40px rgba(232,97,42,.4);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.dev-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 48px rgba(232,97,42,.6);
}

.dev-btn-sec {
  padding: 14px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
  transition: all .2s;
  cursor: pointer;
}

.dev-btn-sec:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.device-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-weight: 600;
  animation: fadeUp .9s .4s ease both;
}

.proof-avs {
  display: flex;
}

.proof-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -9px;
  object-fit: cover;
  flex-shrink: 0;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.1);
}

.proof-stars {
  color: #F59E0B;
  letter-spacing: 1px;
}

/* -----------------------------------
   SECTION: STICKY NARRATIVE
----------------------------------- */
.narrative-wrapper {
  position: relative;
  height: 400vh;
  background: var(--cream);
}

.narrative-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.narr-left {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.narr-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 80px;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.narr-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.narr-dir-fwd .narr-panel.active {
  animation: narrEnterUp .6s cubic-bezier(.22,.61,.36,1) both;
}

.narr-dir-bwd .narr-panel.active {
  animation: narrEnterDown .6s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes narrEnterUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes narrEnterDown {
  from { opacity: 0; transform: translateY(-28px); }
  to { opacity: 1; transform: translateY(0); }
}

.narr-step {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted2);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.narr-step::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
  display: block;
}

.narr-h {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.narr-h em {
  display: block;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .91em;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-top: .18em;
}

.narr-p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

.narr-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ember);
  background-color: var(--ember-bg);
  padding: 5px 12px;
  border-radius: 100px;
}

.narr-right {
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.narr-visual {
  position: absolute;
  inset: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.narr-visual.active {
  opacity: 1;
  pointer-events: auto;
}

.narr-dir-fwd .narr-visual.active {
  animation: narrEnterUp .6s cubic-bezier(.22,.61,.36,1) .07s both;
}

.narr-dir-bwd .narr-visual.active {
  animation: narrEnterDown .6s cubic-bezier(.22,.61,.36,1) .07s both;
}

/* Visual 1 - Before photo */
.vis-before {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.vb-img {
  height: 260px;
  background: linear-gradient(135deg, #b8b0a4 0%, #a09890 40%, #908880 100%);
  position: relative;
}

.vb-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}

.vb-info {
  background: #fff;
  padding: 16px 20px;
}

.vb-price {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}

.vb-addr {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
}

.vb-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: #F3F4F6;
  color: #9CA3AF;
}

/* Visual 2 - Processing */
.vis-processing {
  width: 100%;
  max-width: 440px;
}

.vp-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.vp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vp-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.vp-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--ember);
  background-color: var(--ember-bg);
  padding: 3px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vp-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.vp-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.vp-img-b {
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, #b8b0a4, #a09890);
  position: relative;
  overflow: hidden;
}

.vp-img-a {
  height: 120px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4c8b4, #e8dcc8);
}

.vp-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, #7ec8e3, #aadcee);
}

.vp-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: #c8b090;
}

.vp-wall {
  position: absolute;
  top: 45%;
  bottom: 35%;
  left: 0;
  right: 0;
  background: #e8dcc8;
}

.vp-win {
  position: absolute;
  top: 48%;
  left: 12%;
  width: 26%;
  height: 34%;
  background: #87ceeb;
  border: 2px solid #aadcee;
  border-radius: 2px;
}

.vp-img-label {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.lbl-b {
  background: rgba(0,0,0,.5);
  color: #fff;
}

.lbl-a {
  background: var(--ember);
  color: #fff;
}

.vp-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.vp-step-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.step-done {
  background-color: var(--green-bg);
  color: var(--green);
}

.step-doing {
  background-color: var(--ember-bg);
  color: var(--ember);
}

.step-wait {
  background: #F3F4F6;
  color: #9CA3AF;
}

.vp-step-label {
  color: var(--ink);
}

.vp-step-label.dim {
  color: var(--muted2);
}

.vp-bar {
  height: 3px;
  background: #F3F4F6;
  border-radius: 100px;
  margin-top: 4px;
  overflow: hidden;
}

.vp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--ember-light));
  border-radius: 100px;
  animation: barFill 2s ease-in-out infinite alternate;
}

@keyframes barFill {
  from { width: 30%; }
  to { width: 85%; }
}

/* Visual 3 - After */
.vis-after {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(232,97,42,.15), 0 8px 32px rgba(0,0,0,.08);
}

.va-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.va-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #5bb8d4, #87ceeb);
}

.va-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(180deg, #d4c090, #c8b080);
}

.va-wall {
  position: absolute;
  top: 50%;
  bottom: 38%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #f0e8d8, #e8dcc8);
}

.va-window {
  position: absolute;
  top: 52%;
  left: 10%;
  width: 30%;
  height: 34%;
  background: linear-gradient(180deg, #5bb8d4, #87ceeb);
  border: 3px solid rgba(255,255,255,.6);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(91,184,212,.3);
}

.va-door {
  position: absolute;
  bottom: 38%;
  right: 12%;
  width: 18%;
  height: 34%;
  background: #c8a878;
  border-radius: 3px 3px 0 0;
}

.va-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ember);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.va-info {
  background: #fff;
  padding: 16px 20px;
}

.va-price {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
}

.va-addr {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 3px;
}

.va-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.va-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: var(--ember-bg);
  color: var(--ember);
}

/* Visual 4 - Export grid */
.vis-export {
  width: 100%;
  max-width: 440px;
}

.ve-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.ve-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ve-badge {
  font-size: 10px;
  font-weight: 700;
  background-color: var(--green-bg);
  color: var(--green);
  padding: 3px 8px;
  border-radius: 100px;
}

.ve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  grid-auto-flow: dense;
}

.ve-item {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6px 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: border-color .2s, background-color .2s;
  align-self: start;
}

.ve-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(17,24,39,.28) 58%, rgba(17,24,39,.46) 100%);
  z-index: 0;
}

.ve-item > * {
  position: relative;
  z-index: 1;
}

.ve-item.ratio-16x9 {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.ve-item.ratio-191x1 {
  aspect-ratio: 1.91/1;
  grid-column: span 2;
}

.ve-item.ratio-4x3 {
  aspect-ratio: 4/3;
}

.ve-item.ratio-1x1 {
  aspect-ratio: 1/1;
}

.ve-item.ratio-9x16 {
  aspect-ratio: 9/16;
  grid-row: span 2;
}

.ve-item:hover {
  border-color: var(--ember);
  background-color: transparent;
}

.ve-item.ready {
  border-color: #86EFAC;
  background-color: transparent;
}

.ve-check {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}

.ve-item:hover .ve-check {
  background: var(--ember);
}

.ve-name {
  font-size: 7px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ve-item:hover .ve-name,
.ve-item:hover .ve-ratio {
  color: var(--ember);
}

.ve-label {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 4px 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.ve-label .ve-name {
  font-size: 7px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  text-align: left;
}

.ve-label .ve-ratio {
  font-size: 6px;
  font-weight: 600;
  color: var(--green);
  opacity: .9;
  line-height: 1;
  text-align: left;
}

.ve-ratio {
  font-size: 6.5px;
  font-weight: 600;
  color: var(--green);
  opacity: .75;
  line-height: 1;
  text-align: center;
}

/* Progress dots */
.narr-progress {
  position: absolute;
  bottom: 36px;
  left: 80px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
  pointer-events: none;
}

.narr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  transition: width .3s, background .3s, border-radius .3s;
}

.narr-dot.active {
  width: 24px;
  background: var(--ember);
  border-radius: 100px;
}

/* -----------------------------------
   SECTION: STATS
----------------------------------- */
.ticker {
  position: relative;
  background: var(--ink);
  padding: 0 44px 0;
  overflow: hidden;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(10,9,8,0) 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink) 0%, rgba(10,9,8,0) 100%);
}

.ticker-shell {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%),
    radial-gradient(circle at top, rgba(232,97,42,.08), transparent 58%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  align-items: stretch;
  padding-inline: 18px;
  animation: tickRun 36s linear infinite;
}

.tick-pill {
  min-width: 240px;
  display: grid;
  gap: 5px;
  padding: 11px 16px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%),
    rgba(255,255,255,.015);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  white-space: nowrap;
}

.tick-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(232,97,42,.92);
}

.tick-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffb08e 0%, var(--ember) 68%, #b9471f 100%);
  box-shadow: 0 0 0 4px rgba(232,97,42,.12);
  flex-shrink: 0;
}

.tick-copy {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: rgba(255,255,255,.9);
}

.tick-copy em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  color: #fff;
}

.stats-section {
  background: var(--ink);
  padding: 100px 44px 110px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(232,97,42,.1) 0%, transparent 65%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-top {
  text-align: center;
  margin-bottom: 64px;
}

.stats-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 14px;
}

.stats-h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.18;
}

.stats-h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .93em;
  letter-spacing: -.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}

.stat-box {
  background: var(--ink);
  padding: 48px 40px;
  transition: background .2s;
}

.stat-box:hover {
  background: #111;
}

.stat-n {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.stat-l {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin-top: 8px;
  line-height: 1.6;
}

/* -----------------------------------
   SECTION: FEATURES BENTO
----------------------------------- */
.features-section {
  background: var(--cream);
  padding: 110px 44px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 52px;
}

.f-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
}

.f-h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 4px;
}

.f-h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .93em;
  letter-spacing: -.5px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  overflow: hidden;
  position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,97,42,.3);
  box-shadow: 0 12px 40px rgba(232,97,42,.08);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.dark {
  background: var(--ink);
  border-color: rgba(255,255,255,.06);
}

.bento-card.ember {
  background: var(--ember);
  border-color: transparent;
}

.bento-card.is-light {
  color: var(--ink);
}

.bento-card.is-light .b-h3 {
  color: var(--ink);
}

.bento-card.is-light .b-p {
  color: var(--muted);
}

.bento-card.is-light .b-chip {
  color: var(--ink);
  background: #fff;
  border-color: var(--border);
}

.bento-card.is-light .b-stat-l {
  color: var(--muted);
}

.b-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.b-tag-ember {
  color: var(--ember);
  background-color: var(--ember-bg);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
}

.b-tag-white {
  color: rgba(255,255,255,.5);
}

.b-tag-cream {
  color: rgba(255,255,255,.7);
}

.b-tag-row {
  margin-bottom: 14px;
}

.b-tag-row .b-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.b-h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.b-h3.dark {
  color: #fff;
}

.b-h3.ember {
  color: #fff;
}

.b-p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.b-p.dark {
  color: rgba(255,255,255,.35);
}

.b-p.cream {
  color: rgba(255,255,255,.7);
}

.b-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.b-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  background: var(--surface2, #F2EDE5);
  color: var(--muted);
  border: 1px solid var(--border);
}

.bento-card.dark .b-chip {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.4);
  border-color: rgba(255,255,255,.08);
}

.bento-card.ember .b-chip {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.b-stat {
  margin-top: 28px;
}

.b-stat-n {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 4px;
}

.bento-card.dark .b-stat-n {
  color: #fff;
}

.bento-card.ember .b-stat-n {
  color: #fff;
}

.b-stat-l {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 4px;
}

.bento-card.dark .b-stat-l {
  color: rgba(255,255,255,.3);
}

.bento-card.ember .b-stat-l {
  color: rgba(255,255,255,.6);
}

.b-icon-large {
  color: var(--ink);
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  background: rgba(10,9,8,.05);
  border: 1.5px solid rgba(10,9,8,.1);
}

.bento-card.dark .b-icon-large {
  color: #fff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
}

.bento-card.ember .b-icon-large {
  color: #fff;
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
}

/* -----------------------------------
   SECTION: TESTIMONIALS
----------------------------------- */
.testimonials {
  background: var(--surface);
  padding: 110px 44px;
}

.testi-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.t-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
}

.t-h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.18;
  margin-bottom: 52px;
  color: var(--ink);
}

.t-h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .93em;
  letter-spacing: -.5px;
}

.t-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.t-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: transform .2s;
  background: var(--cream);
}

.t-card:hover {
  transform: translateY(-3px);
}

.t-card.hero-t {
  background: var(--ink);
  border-color: transparent;
}

.t-stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

.t-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
}

.t-card.hero-t .t-quote {
  color: rgba(242,237,229,.8);
}

.t-quote strong {
  color: var(--ember);
  font-style: normal;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
}

.t-link::after {
  content: '→';
  font-size: 13px;
}

.t-link:hover {
  color: #C84E1E;
}

.t-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.t-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.t-card.hero-t .t-name {
  color: #fff;
}

.t-role {
  font-size: 11px;
  color: var(--muted2);
}

/* -----------------------------------
   SECTION: BEFORE/AFTER SLIDER
----------------------------------- */
.slider-section {
  background: var(--ink);
  padding: 120px 44px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.slider-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.slider-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
  display: block;
}

.slider-h2 {
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 20px;
}

.slider-h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .93em;
  letter-spacing: -.5px;
}

.slider-p {
  font-size: 15px;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 44px;
}

.slider-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sl-stat-n {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: -1px;
  line-height: 1;
}

.sl-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  line-height: 1.5;
  margin-top: 4px;
}

.sl-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}

/* Slider widget */
.slider-right {
  position: relative;
}

.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  user-select: none;
  touch-action: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  pointer-events: none;
}

.ba-label-before {
  left: 16px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
}

.ba-label-after {
  right: 16px;
  background: var(--ember);
  color: #fff;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-line {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.9);
}

.ba-handle {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 34px;
  border-radius: 10px;
  background: var(--ember);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(232,97,42,.55), 0 0 0 3px rgba(232,97,42,.25);
  pointer-events: all;
  cursor: grab;
  transition: transform .15s, box-shadow .15s;
}

.ba-handle:active {
  cursor: grabbing;
  transform: scale(1.08);
}

.ba-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: 2px;
  font-weight: 600;
}

/* -----------------------------------
   SECTION: ROI CALCULATOR
----------------------------------- */
.roi-section {
  background: var(--cream);
  padding: 120px 44px;
}

.roi-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.roi-header {
  text-align: center;
  margin-bottom: 56px;
}

.roi-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}

.roi-kicker::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ember);
}

.roi-kicker::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ember);
}

.roi-h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}

.roi-h2 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .93em;
  letter-spacing: -.5px;
}

.roi-p {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.roi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
  overflow: hidden;
}

.roi-inputs {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--border);
}

.roi-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roi-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.roi-label svg {
  color: var(--ember);
  flex-shrink: 0;
}

.roi-val {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: -.5px;
  min-width: 52px;
  text-align: right;
}

.roi-slider-wrap {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.roi-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--sand);
  border-radius: 100px;
  outline: none;
  position: relative;
  z-index: 1;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ember);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(232,97,42,.4);
  cursor: pointer;
  transition: transform .15s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ember);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(232,97,42,.4);
  cursor: pointer;
}

.roi-slider-fill {
  position: absolute;
  left: 0;
  height: 4px;
  background: var(--ember);
  border-radius: 100px;
  pointer-events: none;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}

.roi-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted2);
  font-weight: 600;
}

.roi-results {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink);
}

.roi-result-top {
  margin-bottom: 28px;
}

.roi-result-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}

.roi-result-label svg {
  color: #F87171;
}

.roi-big-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.roi-big-sub {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
}

.roi-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
}

.roi-row.highlight {
  background: rgba(232,97,42,.1);
  border: 1px solid rgba(232,97,42,.2);
}

.roi-row-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.roi-row.highlight .roi-row-label {
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.roi-row-val {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.65);
}

.roi-green {
  color: #4ADE80;
}

.roi-ember {
  color: var(--ember);
  font-size: 18px;
}

.roi-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 11px;
  border: none;
  background: var(--ember);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(232,97,42,.45);
  transition: all .15s;
  cursor: pointer;
}

.roi-cta:hover {
  background: var(--ember-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,97,42,.5);
}

.roi-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  line-height: 1.5;
  margin-top: 14px;
}

/* -----------------------------------
   SECTION: PRICING
----------------------------------- */
.pricing {
  background: var(--cream);
  padding: 110px 44px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.p-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
}

.p-h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.p-h2 em {
  display: block;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  color: var(--ember);
  font-size: .91em;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-top: .18em;
}

.p-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 48px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.pc.pop {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--ember);
}

.pc.pop:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 3px var(--ember), 0 16px 48px rgba(0,0,0,.2);
}

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(232, 97, 42, .24);
}

.pc-badge img {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.pc-tier {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted2);
  margin-bottom: 4px;
}

.pc.pop .pc-tier {
  color: rgba(255,255,255,.35);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pc-curr {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}

.pc-n {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--ink);
  line-height: 1;
}

.pc.pop .pc-n {
  color: #fff;
}

.pc.pop .pc-curr {
  color: rgba(255,255,255,.35);
}

.pc-per {
  font-size: 13px;
  color: var(--muted);
}

.pc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.pc.pop .pc-desc {
  color: rgba(255,255,255,.35);
}

.pc-div {
  height: 1px;
  background: var(--border);
}

.pc.pop .pc-div {
  background: rgba(255,255,255,.08);
}

.pc-feats {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-feat {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  line-height: 1.5;
}

.pc.pop .pc-feat {
  color: rgba(242,237,229,.7);
}

.pc-feat.dim {
  color: var(--muted2);
  text-decoration: line-through;
}

.pc-ck {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background-color: var(--green-bg);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.pc.pop .pc-ck {
  background: rgba(232,97,42,.2);
  color: var(--ember);
}

.pc-x {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #F3F4F6;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.pc-btn {
  padding: 13px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  border: none;
  transition: all .15s;
  cursor: pointer;
}

.pc-ghost {
  background: #F3F4F6;
  color: var(--ink);
}

.pc-ghost:hover {
  background: var(--sand);
}

.pc-ember {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,97,42,.35);
}

.pc-ember:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,97,42,.5);
}

/* Pricing toggle */
.p-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ptog-opt {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}

.ptog-opt.active {
  color: var(--ink);
}

.ptog-switch {
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: var(--ink);
  border: 1px solid var(--sand);
  position: relative;
  flex-shrink: 0;
  transition: background .25s;
  cursor: pointer;
}

.ptog-switch.on {
  background: var(--ember);
  border-color: var(--ember);
}

.ptog-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform .25s, background .25s;
}

.ptog-switch.on .ptog-knob {
  transform: translateX(20px);
  background: #fff;
}

.ptog-save {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  background-color: var(--green-bg);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 4px;
}

/* -----------------------------------
   SECTION: FINAL CTA
----------------------------------- */
.final {
  background: var(--ember);
  padding: 130px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(255,255,255,.025) 24px, rgba(255,255,255,.025) 48px);
}

.final-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

.final-h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -4px;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
}

.final-h2 em {
  display: block;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: .91em;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-top: .15em;
  color: var(--ink);
  text-shadow: 0 2px 16px rgba(255,255,255,.24);
}

.final-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 48px;
  line-height: 1.7;
}

.final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 44px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  box-shadow: 6px 6px 0 rgba(0,0,0,.25);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.final-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0,0,0,.25);
}

.final-note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 20px;
  letter-spacing: .5px;
}

.final-flags {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.final-flag {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
}

/* -----------------------------------
   RESPONSIVE INDEX
----------------------------------- */
@media (max-width: 900px) {
  .trust-strip {
    padding: 24px 0 48px;
  }

  .trust-shell {
    width: min(100% - 24px, 1180px);
    padding: 22px;
    border-radius: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .ticker {
    padding: 0 20px 0;
  }

  .ticker::before,
  .ticker::after {
    width: 28px;
  }

  .tick-pill {
    min-width: 214px;
    padding: 10px 14px 11px;
  }

  .tick-copy {
    font-size: 15px;
  }

  .narrative-sticky {
    grid-template-columns: 1fr;
  }

  .narr-right {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.wide {
    grid-column: span 1;
  }

  .t-grid,
  .p-grid {
    grid-template-columns: 1fr;
  }

  .slider-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .slider-section {
    padding: 80px 20px;
  }

  .roi-card {
    grid-template-columns: 1fr;
  }

  .roi-inputs {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .roi-section {
    padding: 80px 20px;
  }

  .zoom-wrapper {
    height: auto;
  }

  .zoom-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .zoom-device {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .device-btns {
    flex-direction: column;
    align-items: center;
  }

  .device-proof {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ticker {
    padding: 0 16px 0;
  }

  .tick-pill {
    min-width: 196px;
    padding: 9px 12px 10px;
    border-radius: 14px;
  }

  .tick-kicker {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .tick-copy {
    font-size: 14px;
  }

  .device-h1 {
    letter-spacing: -1px;
  }

  .device-sub {
    font-size: 15px;
  }

  .narr-panel {
    padding: 0 24px;
  }

  .narr-h {
    font-size: clamp(28px, 8vw, 40px);
  }

  .final-h2 {
    letter-spacing: -2px;
  }

  .pc {
    padding: 28px 24px;
  }

  .pc-n {
    font-size: 48px;
  }
}
