/* ==========================================================================
   RELATIONSHIP REALITY CHECK — EDITORIAL DESIGN SYSTEM
   Warm Ivory / Burgundy / Editorial Magazine Aesthetic
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-canvas: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-tint: #F5F0EB;
  --bg-warm-card: #FDFCFA;
  --bg-accent-blush: #F9EFEF;

  --burgundy: #721B2A;
  --burgundy-dark: #56111D;
  --burgundy-light: #8B2639;
  --burgundy-subtle: rgba(114, 27, 42, 0.06);
  --burgundy-border: rgba(114, 27, 42, 0.15);

  --text-main: #1F191B;
  --text-body: #473E43;
  --text-muted: #7E7278;
  --text-light: #A3969C;

  --line-subtle: #EBE4DD;
  --line-strong: #DCD3CB;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;

  --shadow-sm: 0 4px 12px rgba(31, 25, 27, 0.04);
  --shadow-md: 0 10px 30px rgba(31, 25, 27, 0.07);
  --shadow-lg: 0 20px 50px rgba(114, 27, 42, 0.1);
  --shadow-floating: 0 14px 34px rgba(31, 25, 27, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Layout Containers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-tight {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.25;
}

em, .editorial-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy);
}

.font-script {
  font-family: var(--font-script);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Header & Navigation */
header {
  padding: 24px 0 16px;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.brand-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
}

.nav-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Funnel Step Indicator */
.step-indicator-bar {
  text-align: center;
  margin-bottom: 24px;
}

.step-label-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-accent-blush);
  border: 1px solid var(--burgundy-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* Buttons & CTAs */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 32px;
  background-color: var(--burgundy);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(114, 27, 42, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(114, 27, 42, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary span.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.btn-primary:hover span.arrow {
  transform: translateX(4px);
}

.btn-subtext {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 3px;
  letter-spacing: 0;
}

.btn-secondary-link {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 14px;
  padding: 6px;
  transition: color 0.2s ease;
}

.btn-secondary-link:hover {
  color: var(--text-main);
}

/* Micro Trust Under CTA */
.micro-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
  flex-wrap: wrap;
}

.micro-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Floating Elements & Notes */
.floating-note {
  position: absolute;
  background: #FFFBF0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-floating);
  border: 1px solid rgba(220, 205, 175, 0.6);
  font-family: var(--font-script);
  font-size: 19px;
  line-height: 1.35;
  color: #3B2E25;
  z-index: 10;
  pointer-events: none;
  transform: rotate(-2deg);
}

.floating-note.tilt-right {
  transform: rotate(3deg);
}

.floating-seal {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(114, 27, 42, 0.35);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  z-index: 12;
}

.floating-badge-pill {
  position: absolute;
  padding: 6px 14px;
  background: var(--text-main);
  color: #FFF;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
  z-index: 12;
}

/* Hero Section Editorial */
.hero-editorial {
  padding: 40px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-subtle);
  object-fit: cover;
}

/* Process Timeline (01 Notice, 02 Track...) */
.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 40px 0 60px;
}

.process-step {
  border-left: 2px solid var(--line-subtle);
  padding-left: 14px;
}

.process-step:first-child {
  border-left-color: var(--burgundy);
}

.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--burgundy);
  letter-spacing: 0.05em;
}

.step-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin: 2px 0;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Notice Patterns Section (Interactive Checklist) */
.patterns-section {
  padding: 50px 0;
}

.patterns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.checklist-box {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg-canvas);
  border: 1px solid transparent;
}

.check-item:hover {
  background: var(--bg-accent-blush);
  border-color: var(--burgundy-border);
}

.check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
  cursor: pointer;
}

.check-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
}

.patterns-quote {
  font-size: 15px;
  font-weight: 700;
  color: var(--burgundy);
  margin-top: 18px;
  display: block;
}

/* Interactive Feedback Banner */
.interactive-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--bg-accent-blush);
  border-left: 3px solid var(--burgundy);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-main);
  display: none;
}

/* Main Offer Card */
.offer-editorial-card {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  margin: 50px 0;
  position: relative;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 24px;
}

.price-strike {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.price-main {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--burgundy);
}

.bullet-list {
  list-style: none;
  margin-bottom: 28px;
}

.bullet-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--text-body);
}

.bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 800;
  font-size: 14px;
}

/* What You Get Numbered Breakdown (01, 02, 03, 04, 05) */
.inside-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0 60px;
}

.inside-item {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.inside-item:hover {
  transform: translateY(-3px);
  border-color: var(--burgundy-border);
}

.inside-num {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.inside-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.inside-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  padding: 50px 0;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-icon {
  font-size: 20px;
  color: var(--burgundy);
  transition: transform 0.25s ease;
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-body);
  display: none;
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Access Page Layout */
.access-page-wrap {
  padding: 30px 0 80px;
}

.access-main-card {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin: 0 auto 30px;
}

/* Access Page Receipt & Summary */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.receipt-card {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.receipt-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-subtle);
}

.receipt-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.receipt-item-thumb {
  width: 44px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line-subtle);
}

.receipt-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.receipt-item-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--burgundy);
}

.receipt-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 80px;
  border-top: 1px solid var(--line-subtle);
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .hero-grid,
  .patterns-grid,
  .offer-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 36px;
  }

  .process-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .floating-note {
    position: static;
    transform: none !important;
    margin-top: 14px;
    display: inline-block;
  }

  .offer-editorial-card,
  .access-main-card {
    padding: 28px 20px;
  }
}

@media (max-width: 580px) {
  .process-bar {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 30px;
  }

  .price-main {
    font-size: 38px;
  }

  .btn-primary {
    padding: 16px 20px;
    font-size: 15px;
  }
}

/* App-first conversion landing page */
.app-landing { background: #fffaf8; color: var(--text-main); }
.app-nav { max-width: 1180px; margin: 0 auto; padding: 22px 28px; display:flex; justify-content:space-between; align-items:center; }
.app-nav .brand-title { text-decoration:none; }
.app-nav .nav-badge { font-size:10px; letter-spacing:.12em; color:var(--burgundy); font-weight:800; }
.app-hero { min-height: 650px; display:grid; grid-template-columns: 1.02fr .98fr; gap:40px; align-items:center; padding-top:42px; padding-bottom:70px; }
.app-hero-copy h1 { font-size:clamp(48px,6vw,82px); line-height:.98; letter-spacing:-.04em; margin:18px 0 24px; }
.app-hero-copy h1 em, .app-pressure h2 em, .app-offer h2 em { color:var(--burgundy); }
.app-lead { max-width:590px; font-size:18px; line-height:1.7; color:var(--text-body); }
.app-cta-row { margin-top:30px; }
.app-cta { max-width:390px; box-shadow:0 14px 30px rgba(114,27,42,.22); }
.app-trust { display:flex; gap:18px; flex-wrap:wrap; margin-top:18px; font-size:12px; font-weight:800; color:var(--burgundy); }
.app-hero-visual { position:relative; text-align:center; }
.app-hero-visual img { width:min(100%,560px); max-height:620px; object-fit:contain; filter:drop-shadow(0 30px 35px rgba(65,29,35,.2)); }
.floating-proof { position:absolute; right:0; bottom:16%; background:#fff; padding:15px 18px; border-left:4px solid var(--burgundy); border-radius:10px; box-shadow:var(--shadow-md); text-align:left; max-width:170px; }
.floating-proof strong { display:block; font-family:var(--font-serif); color:var(--burgundy); font-size:19px; }
.floating-proof span { display:block; font-size:11px; color:var(--text-muted); margin-top:3px; }
.app-pressure { background:var(--burgundy); color:#fff; padding:72px 0; }
.pressure-inner { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.section-kicker { font-size:11px; letter-spacing:.16em; font-weight:800; color:var(--rose); }
.app-pressure h2, .app-offer h2 { font-size:clamp(34px,4vw,58px); line-height:1.05; margin:15px 0 0; }
.app-pressure h2 em { color:#f7c9ce; }
.pressure-inner p { font-size:17px; line-height:1.8; color:#f9e8e9; }
.app-section { padding:100px 28px; }
.section-heading { max-width:700px; margin-bottom:42px; }
.section-heading h2 { font-size:clamp(34px,4vw,54px); line-height:1.05; margin:14px 0; }
.section-heading p { color:var(--text-body); font-size:17px; }
.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature-grid article { background:#fff; border:1px solid #f0dfe0; border-radius:16px; padding:24px; box-shadow:0 8px 24px rgba(83,39,45,.06); }
.feature-num { font-family:var(--font-serif); color:var(--burgundy); font-size:26px; font-weight:700; }
.feature-grid h3 { font-size:18px; margin:20px 0 10px; }
.feature-grid p { color:var(--text-body); font-size:13.5px; line-height:1.7; }
.features-image { display:block; width:min(100%,900px); margin:55px auto 0; filter:drop-shadow(0 22px 30px rgba(65,29,35,.15)); }
.app-steps { background:#24191d; color:#fff; padding:90px 0; }
.section-heading.light h2 { color:#fff; }
.section-heading.light p { color:#e7d7d9; }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.steps-grid > div { border-top:1px solid rgba(255,255,255,.25); padding-top:22px; }
.steps-grid b { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:#f4cbd0; color:var(--burgundy); font-family:var(--font-serif); font-size:20px; }
.steps-grid h3 { font-family:var(--font-serif); font-size:27px; margin:20px 0 8px; }
.steps-grid p { color:#e7d7d9; line-height:1.7; }
.app-offer { display:grid; grid-template-columns:1fr 380px; gap:70px; align-items:center; padding-top:100px; padding-bottom:100px; }
.offer-copy p { color:var(--text-body); font-size:17px; line-height:1.7; max-width:520px; }
.offer-copy ul { list-style:none; padding:0; margin-top:26px; display:grid; gap:12px; font-weight:700; }
.offer-copy li:before { content:'✓'; color:var(--burgundy); margin-right:10px; }
.offer-box { background:#fff; border:2px solid var(--burgundy); border-radius:20px; padding:34px; text-align:center; box-shadow:0 20px 50px rgba(114,27,42,.15); }
.offer-label { font-size:11px; letter-spacing:.15em; font-weight:800; color:var(--burgundy); }
.offer-old { margin-top:18px; color:var(--text-muted); text-decoration:line-through; }
.offer-price { font-family:var(--font-serif); color:var(--burgundy); font-size:64px; font-weight:700; line-height:1; margin:5px 0; }
.offer-note, .offer-box small { display:block; color:var(--text-muted); font-size:12px; }
.offer-box .btn-primary { width:100%; margin:24px 0 10px; }
.app-faq { padding-bottom:100px; }
.faq-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.faq-grid > div { border-top:2px solid var(--burgundy); padding-top:18px; }
.faq-grid h3 { font-family:var(--font-serif); font-size:22px; }
.faq-grid p { color:var(--text-body); line-height:1.7; font-size:14px; }
.app-landing footer { padding:34px 28px; background:#f4e8e8; border:0; }
.app-landing .disclaimer { max-width:800px; margin:10px auto 0; font-size:11px; }
@media (max-width: 900px) { .app-hero,.pressure-inner,.app-offer { grid-template-columns:1fr; } .app-hero { padding-top:30px; } .app-hero-copy { order:1; } .app-hero-visual { order:2; } .feature-grid { grid-template-columns:1fr 1fr; } .steps-grid,.faq-grid { grid-template-columns:1fr; } .floating-proof { right:4%; } }
@media (max-width: 580px) { .app-nav { padding:18px; } .app-nav .nav-badge { display:none; } .app-hero,.app-section,.app-offer { padding-left:20px; padding-right:20px; } .app-hero-copy h1 { font-size:46px; } .app-lead { font-size:16px; } .feature-grid { grid-template-columns:1fr; } .app-hero-visual img { max-height:460px; } .floating-proof { bottom:4%; } }

/* Post-purchase upgrade pages */
.upgrade-page { --upgrade:#8f243b; --upgrade-soft:#f8e6e8; --upgrade-dark:#27161d; background:linear-gradient(145deg,#fffaf8 0%,var(--upgrade-soft) 100%); min-height:100vh; color:var(--text-main); }
.upgrade-page.upgrade-two { --upgrade:#6d3d92; --upgrade-soft:#eee7f7; --upgrade-dark:#24172e; }
.upgrade-page.upgrade-three { --upgrade:#b05d2c; --upgrade-soft:#fff0e5; --upgrade-dark:#2e1b16; }
.upgrade-page.upgrade-four { --upgrade:#1e6d69; --upgrade-soft:#e2f1ef; --upgrade-dark:#142b2b; }
.upgrade-shell { max-width:980px; margin:auto; padding:24px 22px 70px; }
.upgrade-top { display:flex; justify-content:space-between; align-items:center; font-size:11px; letter-spacing:.11em; font-weight:800; color:var(--upgrade); }
.upgrade-progress { margin:24px 0 48px; height:5px; border-radius:5px; background:rgba(0,0,0,.1); overflow:hidden; }
.upgrade-progress span { display:block; height:100%; width:25%; background:var(--upgrade); }
.upgrade-page.upgrade-two .upgrade-progress span { width:50%; }.upgrade-page.upgrade-three .upgrade-progress span { width:75%; }.upgrade-page.upgrade-four .upgrade-progress span { width:100%; }
.upgrade-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:52px; align-items:center; }
.approved-pill { display:inline-block; color:var(--upgrade); font-size:11px; font-weight:900; letter-spacing:.15em; }
.upgrade-copy h1 { font-size:clamp(38px,5vw,64px); line-height:1.02; margin:17px 0; letter-spacing:-.04em; }.upgrade-copy h1 em { color:var(--upgrade); }
.upgrade-copy .lead { font-size:18px; line-height:1.7; color:var(--text-body); }.upgrade-list { list-style:none; padding:0; display:grid; gap:12px; margin:27px 0; }.upgrade-list li:before { content:'✓'; color:var(--upgrade); font-weight:900; margin-right:10px; }
.upgrade-card { background:#fff; border:2px solid var(--upgrade); border-radius:22px; padding:30px; box-shadow:0 24px 60px rgba(45,24,31,.14); }.upgrade-card img { width:100%; max-height:300px; object-fit:contain; margin-bottom:14px; }.upgrade-card h2 { color:var(--upgrade); font-family:var(--font-serif); font-size:27px; margin:10px 0; }.upgrade-card p { color:var(--text-body); font-size:14px; line-height:1.6; }.upgrade-price { font-family:var(--font-serif); font-size:62px; color:var(--upgrade); font-weight:700; line-height:1; }.upgrade-price small { font-family:var(--font-sans); color:var(--text-muted); font-size:13px; font-weight:600; }.upgrade-card .btn-primary { background:var(--upgrade); width:100%; margin-top:20px; }.upgrade-decline { display:block; text-align:center; margin-top:16px; color:var(--text-muted); font-size:12px; text-decoration:underline; cursor:pointer; }.upgrade-note { text-align:center; color:var(--text-muted); font-size:11px; margin-top:13px; }
.upgrade-foot { text-align:center; border-top:1px solid rgba(0,0,0,.1); margin-top:65px; padding-top:22px; color:var(--text-muted); font-size:11px; line-height:1.6; }
@media (max-width:760px) { .upgrade-shell { padding:18px 18px 48px; }.upgrade-top { font-size:9px; }.upgrade-progress { margin:18px 0 30px; }.upgrade-layout { grid-template-columns:1fr; gap:24px; }.upgrade-card { order:2; }.upgrade-copy .lead { font-size:16px; }.upgrade-copy h1 { font-size:44px; }.upgrade-card img { max-height:240px; } }

/* ==========================================================================
   DECLINE BUTTON & CONTINUITY / PROGRESS SYSTEM
   ========================================================================== */

.btn-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 24px;
  background-color: #FFFFFF;
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  user-select: none;
}

.btn-decline:hover {
  background-color: var(--bg-tint);
  border-color: var(--text-muted);
  color: var(--text-main);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31, 25, 27, 0.08);
}

.btn-decline:active {
  transform: translateY(0);
  background-color: #EBE4DC;
}

.btn-decline:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.btn-decline span.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.btn-decline:hover span.arrow {
  transform: translateX(4px);
}

/* Purchase Continuity Banner */
.purchase-continuity-banner {
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 10px;
}

.continuity-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-main);
}

.status-check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.continuity-notice {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--bg-accent-blush);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--burgundy-border);
}

/* Funnel Progress Indicator */
.funnel-progress-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #FFFFFF;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.step-chip.completed {
  background: #FAF8F5;
  color: var(--text-body);
  border-color: var(--line-strong);
}

.step-chip.completed .step-chip-dot {
  color: #2E7D32;
  font-weight: 800;
}

.step-chip.active {
  background: var(--bg-accent-blush);
  border-color: var(--burgundy-border);
  color: var(--burgundy);
  font-weight: 700;
}

.step-chip.active .step-chip-dot {
  background: var(--burgundy);
  color: #FFFFFF;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
}

.step-chip-arrow {
  color: var(--text-light);
  font-size: 11px;
}
