html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    /* ── Core Palette (aligned with reference index.html) ── */
    --navy:        #0D1B2A;
    --navy-mid:    #122033;
    --navy-card:   #172840;
    --navy-light:  #1E3050;
    --primary-bg:  #0D1B2A;
    --secondary-bg: #122033;
    --gold:        #C9A84C;
    --accent-gold: #C9A84C;
    --accent-gold-hover: #A8882E;
    --accent-rose: #b76e79;
    --gold-dim:    #8A6F2E;
    --gold-glow:   rgba(201,168,76,0.18);
    --gold-trace:  rgba(201,168,76,0.08);
    --cream:       #F5F0E8;
    --cream-dim:   #B8A990;
    --text-color:  #B8A990;
    --heading-color: #F5F0E8;
    --red-chaos:   #C0392B;

    /* ── Radii ── */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;

    /* ── Typography ── */
    --font-serif:     'Cormorant Garamond', serif;
    --font-heading:   'Cormorant Garamond', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body:      'Inter', sans-serif;

    /* ── Luxury Variables ── */
    --gold-gradient: linear-gradient(135deg, #4a3b18 0%, #8c6e26 15%, #C9A84C 30%, #f3d476 45%, #ffef9e 50%, #f3d476 55%, #C9A84C 70%, #8c6e26 85%, #4a3b18 100%);
    --dark-bg-gradient: linear-gradient(180deg, var(--navy) 0%, #0A1520 100%);
    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
    background: var(--navy);
    color: var(--cream-dim);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

section {
    padding: 96px 0;
}

h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 60px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
}

/* Luxury Underline for Headings */
h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* Center underline for centered headings */
.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}


.bg-luxury {
    background-color: var(--secondary-bg);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    transition: all var(--transition-slow);
    font-weight: bold;
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    transition: all var(--transition-slow);
    font-weight: bold;
    border-radius: 6px;
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Navbar */
.navbar {
    background-color: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 1rem 0;
    transition: all var(--transition-slow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.navbar-brand img {
    height: 50px;
}

/* Brand Text with Metallic Gold Shine */
.text-shine {
    background: linear-gradient(90deg,
            #8c6e26 0%,
            #C9A84C 20%,
            #f3d476 35%,
            #ffef9e 50%,
            #f3d476 65%,
            #C9A84C 80%,
            #8c6e26 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: metallic-shine 3s linear infinite;
}

.brand-text {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg,
            #8c6e26 0%,
            #C9A84C 20%,
            #f3d476 35%,
            #ffef9e 50%,
            #f3d476 65%,
            #C9A84C 80%,
            #8c6e26 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: metallic-shine 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes metallic-shine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Navbar Toggler (Hamburger) */
.navbar-toggler {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    color: var(--heading-color) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-left: 20px;
    transition: color var(--transition-slow);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background-color: var(--navy);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(183, 110, 121, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.btn-xl {
    padding: 16px 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

.hero-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

/* Card Styling for "Why is Invysia" */
.luxury-card {
    background-color: var(--navy-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.5px solid rgba(201, 168, 76, 0.3);
    padding: 30px;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    height: 100%;
    border-radius: 4px;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Showcase Section */
.showcase-iframe {
    width: 100%;
    height: 500px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Founder Section */
.founder-img {
    border: 3px solid var(--accent-gold);
    padding: 5px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #000;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-slow);
}

footer a:hover {
    color: var(--accent-gold);
}

footer h5 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }

    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    h2 {
        text-align: center;
    }

    .text-center-mobile {
        text-align: center;
    }

    .brand-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-left: 8px;
    }
}

.mobile-frame-container {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    border: 10px solid #333;
    border-radius: 30px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
.animate-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Utilities */
/* Override text-muted for dark theme visibility */
.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}

.hover-gold:hover {
    color: var(--accent-gold) !important;
}

.hover-white:hover {
    color: #fff !important;
}

.space-y-2>li+li {
    margin-top: 0.5rem;
}

.space-y-3>li+li {
    margin-top: 1rem;
}

.absolute-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.15), transparent 60%);
    pointer-events: none;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Demo Gallery */
.demo-card {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    /* Non-interactive preview */
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
    border-color: var(--accent-gold);
}

.demo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 20px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 40%;
}

.demo-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.demo-link {
    pointer-events: auto;
    z-index: 10;
}

/* Sparkles */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Global Particle Background — Canvas-based, HD */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    opacity: 0;
    animation: twinkle 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes twinkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 14px 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    background: rgba(22, 33, 62, 0.65);
    backdrop-filter: blur(6px);
}

.trust-strip span {
    font-size: 0.95rem;
    color: var(--heading-color);
    white-space: nowrap;
}

.nav-link.active {
    color: var(--accent-gold) !important;
}

/* Signup Mobile Input Group Layout */
@media (max-width: 576px) {
  .mobile-input-group {
    flex-direction: column;
  }
  .mobile-input-group > select.form-select,
  .mobile-input-group > input.form-control,
  .mobile-input-group > button.btn-verify {
    max-width: 100% !important;
    width: 100%;
    border-radius: 4px !important;
    margin-bottom: 8px;
    border-color: rgba(255, 255, 255, 0.15) !important;
  }
  .mobile-input-group > button.btn-verify {
    margin-bottom: 0;
    padding: 12px;
  }
}

/* Device Scaling and Containers */
.device-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: auto;
}

.scale-device {
    transform: scale(0.65);
    transform-origin: top center;
    margin-bottom: -285px; /* Offset for 0.65 scale (812 * 0.35) */
}

@media (max-width: 1200px) {
    .scale-device {
        transform: scale(0.5);
        margin-bottom: -400px;
    }
}

@media (max-width: 768px) {
    .scale-device {
        transform: scale(0.65);
        margin-bottom: -285px;
    }
    .device-container {
        margin-bottom: 40px;
    }
}

.smaller {
    font-size: 0.8rem;
}

.smaller.text-muted {
    opacity: 0.8;
}

.mockup-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(160deg, rgba(18,18,26,0.98), rgba(28,28,40,0.95));
    border: 1px dashed rgba(212, 175, 55, 0.45);
}

.subscribe-email-input {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.subscribe-email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767.98px) {
  .cards-grid-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .cards-grid-carousel > [class*='col-'] {
    min-width: 82%;
    scroll-snap-align: start;
  }
}

/* Custom Nav Dropdown */
.custom-nav-dropdown {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: 1rem;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.custom-nav-dropdown .dropdown-item {
    color: var(--heading-color) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.custom-nav-dropdown .dropdown-item:hover,
.custom-nav-dropdown .dropdown-item:focus {
    color: var(--accent-gold) !important;
    background-color: rgba(212, 175, 55, 0.05);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .custom-nav-dropdown {
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .custom-nav-dropdown {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
    }
    .custom-nav-dropdown .dropdown-item {
        padding: 0.5rem 1.5rem;
    }
}

/* =============================================
   HERO — SPLIT LAYOUT (NEW DESIGN)
   ============================================= */

/* Override hero to accommodate split layout */
.hero-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Split row: full-height centering */
.hero-split-row {
  min-height: calc(100vh - 200px);
  padding: 60px 0 40px;
}

/* ---------- LEFT COLUMN ---------- */
@media (min-width: 992px) {
  .hero-left {
    padding-right: 2rem;
  }
}

/* Pill Badge */
.hero-pill {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-gold);
  backdrop-filter: blur(6px);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
  animation: pulse-gold 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(212,175,55,0.8); }
  50%       { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 16px rgba(212,175,55,1); }
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--heading-color);
  margin-bottom: 0;
}

.hero-headline em {
  font-style: italic;
  font-weight: 600;
  color: var(--heading-color);
}

/* Emoji / Format Tags Row */
.hero-emoji-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-emoji-row span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-subheading);
  letter-spacing: 0.03em;
}

/* Hero Body Text */
.hero-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

/* Trust Line */
.hero-trust-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-subheading);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* URL Bar */
.hero-url-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 9px 16px;
  max-width: 340px;
}

.url-text {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.url-live-badge {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 4px;
  padding: 2px 8px;
  flex-shrink: 0;
}

/* ---------- RIGHT COLUMN — Phone Scene ---------- */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Ambient glow behind the phone */
.phone-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(212, 175, 55, 0.18) 0%,
    rgba(212, 175, 55, 0.06) 45%,
    transparent 72%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* Device wrapper — centres the Marvel device */
.hero-device-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Scale the Marvel iPhone down to fit */
.hero-iphone {
  transform: scale(0.58);
  transform-origin: center center;
}

/* ---------- FEATURE LABELS ---------- */
.feature-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 20, 38, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-subheading);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: label-float 6s ease-in-out infinite;
}

.feature-label--tl { animation-delay: 0s;    top: 8%;     left: 0%; }
.feature-label--tr { animation-delay: 1.5s;  top: 28%;    right: 2%; }
.feature-label--bl { animation-delay: 3s;    bottom: 28%; left: 0%; }
.feature-label--br { animation-delay: 4.5s;  bottom: 8%;  right: 2%; }

@keyframes label-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* Colored dots inside labels */
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-dot--gold   { background: #d4af37; box-shadow: 0 0 6px rgba(212,175,55,0.9); }
.feature-dot--purple { background: #a78bfa; box-shadow: 0 0 6px rgba(167,139,250,0.9); }
.feature-dot--blue   { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,0.9); }
.feature-dot--green  { background: #34d399; box-shadow: 0 0 6px rgba(52,211,153,0.9); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .hero-split-row {
    min-height: unset;
    padding: 20px 0 40px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-emoji-row {
    justify-content: center;
  }
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-url-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust-line {
    text-align: center;
  }
  .hero-phone-scene {
    height: 520px;
    max-width: 400px;
    margin-top: 20px;
  }
  .hero-iphone {
    transform: scale(0.5);
  }
  .feature-label--tl { top: 4%;     left: 0%; }
  .feature-label--tr { top: 22%;    right: 0%; }
  .feature-label--bl { bottom: 22%; left: 0%; }
  .feature-label--br { bottom: 4%;  right: 0%; }
}

@media (max-width: 575.98px) {
  .hero-phone-scene {
    height: 420px;
  }
  .hero-iphone {
    transform: scale(0.42);
  }
  .feature-label {
    font-size: 0.65rem;
    padding: 6px 12px;
  }
  .feature-label--tl { top: 2%;     left: 0%; }
  .feature-label--tr { top: 18%;    right: 0%; }
  .feature-label--bl { bottom: 18%; left: 0%; }
  .feature-label--br { bottom: 2%;  right: 0%; }
}

/* =============================================
   PHONE SCREEN CONTENT — Live Real-Estate Flyer
   ============================================= */

/* Container — fills the Marvel device screen */
.psc {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #0a0e1a;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.psc::-webkit-scrollbar { display: none; }

/* ---------- Video Player Area ---------- */
.psc-video-wrap {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.psc-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bottom gradient over video poster */
.psc-video-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, transparent 100%);
  pointer-events: none;
}

/* Play Button */
.psc-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.psc-play-btn span {
  font-size: 18px;
  color: #fff;
  margin-left: 3px;
}

/* 3D Tour badge */
.psc-video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 3;
}

/* Progress Bar */
.psc-progress-bar {
  position: absolute;
  bottom: 8px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.psc-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.psc-progress-fill {
  width: 32%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: psc-scrub 8s linear infinite;
}
@keyframes psc-scrub {
  0%   { width: 32%; }
  100% { width: 68%; }
}
.psc-time {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- Content Body ---------- */
.psc-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Urgency Tag */
.psc-urgency-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #f87171;
  margin-bottom: 14px;
}
.psc-urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239,68,68,0.8);
  animation: psc-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes psc-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

/* Countdown Timer */
.psc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.psc-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px 6px;
  min-width: 52px;
}
.psc-cd-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.psc-cd-lbl {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.psc-cd-colon {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-top: -8px;
}

/* Property Info */
.psc-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
}
.psc-title::after { display: none !important; }

.psc-location {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
  line-height: 1.4;
}

.psc-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.psc-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}
.psc-price-old {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.psc-discount {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px;
  padding: 2px 6px;
}

/* CTA Buttons */
.psc-btn-primary {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #f3d476 50%, #d4af37 100%);
  background-size: 200% auto;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transition: transform 0.2s;
}
.psc-btn-primary:hover { transform: scale(1.02); }

.psc-btn-secondary {
  width: 100%;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Progress Bar */
.psc-progress-bar {
  position: absolute;
  bottom: 8px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.psc-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.psc-progress-fill {
  width: 32%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: psc-scrub 8s linear infinite;
}
@keyframes psc-scrub {
  0%   { width: 32%; }
  100% { width: 68%; }
}
.psc-time {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- Content Body ---------- */
.psc-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Urgency Tag */
.psc-urgency-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #f87171;
  margin-bottom: 14px;
}
.psc-urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239,68,68,0.8);
  animation: psc-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes psc-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

/* Countdown Timer */
.psc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.psc-cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px 6px;
  min-width: 52px;
}
.psc-cd-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.psc-cd-lbl {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.psc-cd-colon {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-top: -8px;
}

/* Property Info */
.psc-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.3 !important;
}
.psc-title::after { display: none !important; }

.psc-location {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
  line-height: 1.4;
}

.psc-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.psc-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}
.psc-price-old {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.psc-discount {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 4px;
  padding: 2px 6px;
}

/* CTA Buttons */
.psc-btn-primary {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #f3d476 50%, #d4af37 100%);
  background-size: 200% auto;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transition: transform 0.2s;
}
.psc-btn-primary:hover { transform: scale(1.02); }

.psc-btn-secondary {
  width: 100%;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.psc-btn-secondary:hover { border-color: rgba(255,255,255,0.4); }

/* =============================================
   PROBLEM SECTION (Infographic Format)
   ============================================= */

#problem { 
  background: linear-gradient(180deg, #0A1520 0%, var(--navy) 100%);
}

.problem-intro { max-width: 680px; margin: 0 auto; text-align: center; margin-bottom: 72px; }

/* Infographic: chaos vs clarity */
.format-compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start;
  margin-top: 64px;
}
.format-col {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  text-align: left;
}
.format-col.chaos {
  border: 1px solid rgba(192,57,43,0.3);
}
.format-col.clarity {
  border: 1px solid rgba(201,168,76,0.3);
}
.format-col.chaos::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red-chaos);
}
.format-col.clarity::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.col-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 24px; padding: 5px 12px; border-radius: 100px;
  display: inline-block;
}
.col-label.bad { background: rgba(192,57,43,0.15); color: #e74c3c; }
.col-label.good { background: rgba(201,168,76,0.12); color: var(--gold); }

/* File chaos visual */
.file-pile { margin: 20px 0; }
.file-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-family: monospace;
  margin-bottom: 8px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.15);
  color: #ccc;
}
.file-item .ficon { font-size: 1rem; }
.file-item.strike { opacity: 0.4; text-decoration: line-through; }
.file-item.active { background: rgba(192,57,43,0.15); border-color: rgba(192,57,43,0.4); color: #e99; }

/* App-hop flow */
.app-hop { margin-top: 24px; }
.app-hop-title { font-size: 0.75rem; color: #888; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.app-hop-flow { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.app-chip {
  padding: 6px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #aaa;
}
.app-arrow { color: #555; font-size: 0.8rem; }
.pain-stat {
  margin-top: 24px; padding: 14px 16px;
  background: rgba(192,57,43,0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red-chaos);
  font-size: 0.82rem; color: #e99;
  font-style: italic;
}

/* Clarity column bullet points */
.link-caps {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 24px;
}
.cap-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--cream-dim);
  line-height: 1.5;
}
.cap-icon { font-size: 1.2rem; flex-shrink: 0; width: 28px; text-align: center; }

/* VS divider */
.vs-divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 80px;
}
.vs-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--gold);
}
.vs-line { width: 1px; height: 60px; background: rgba(201,168,76,0.15); }

@media (max-width: 900px) {
  .format-compare { grid-template-columns: 1fr; gap: 16px; }
  .vs-divider { flex-direction: row; padding-top: 0; gap: 8px; }
  .vs-line { width: 40px; height: 1px; }
}

/* =============================================
   HYPER-PERSONALISATION SECTION (NEW DESIGN)
   ============================================= */
#personalisation {
  background: var(--navy);
}

#personalisation .person-intro { 
  max-width: 600px; 
  margin: 0 auto 64px; 
  text-align: center; 
}

#personalisation .person-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}

#personalisation .person-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

#personalisation .person-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 16px 60px rgba(0,0,0,0.4); 
}

#personalisation .person-card-img-placeholder {
  width: 100%; 
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light) 0%, #0f2c4a 100%);
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative; 
  overflow: hidden;
}

#personalisation .person-card-img-placeholder::before {
  content: '';
  position: absolute; 
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.12), transparent 60%);
}

#personalisation .mock-card-inner { 
  text-align: center; 
  z-index: 1; 
  padding: 20px; 
}

#personalisation .mock-recipient-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; 
  color: var(--gold); 
  margin-bottom: 4px;
}

#personalisation .mock-event-label { 
  font-size: 0.72rem; 
  color: var(--cream-dim); 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
}

#personalisation .mock-deco-line { 
  width: 40px; 
  height: 1px; 
  background: var(--gold); 
  margin: 10px auto; 
  opacity: 0.5; 
}

#personalisation .mock-details { 
  font-size: 0.75rem; 
  color: var(--cream-dim); 
}

#personalisation .person-card-body { 
  padding: 20px 24px; 
}

#personalisation .person-url { 
  font-size: 0.72rem; 
  font-family: monospace; 
  color: var(--gold); 
  margin-bottom: 10px; 
  opacity: 0.8; 
}

#personalisation .person-url strong {
  color: var(--white);
  font-weight: 600;
}

#personalisation .person-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}

#personalisation .person-tag {
  font-size: 0.68rem; 
  font-weight: 500; 
  letter-spacing: 0.06em;
  padding: 4px 10px; 
  border-radius: 100px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
}

#personalisation .person-scale-note {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
}

#personalisation .scale-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; 
  font-weight: 300; 
  color: var(--gold); 
  line-height: 1;
}

#personalisation .scale-label { 
  font-size: 0.8rem; 
  color: var(--cream-dim); 
  margin-top: 6px; 
}

@media (max-width: 900px) {
  #personalisation .person-grid { 
    grid-template-columns: 1fr; 
  }
}

/* =============================================
   CONSISTENT SECTION BACKGROUNDS
   Pattern: solid → gradient → solid → gradient
   Gradient sections have opaque BGs to occlude
   the fixed canvas particles for visual contrast.
   Solid-navy sections let the particles show.
   ============================================= */

/* Hero — solid navy, own radial glow overlay, particles visible */
.hero-section {
  background-color: var(--navy);
}

/* Problem — opaque dark gradient (occludes particles) */
/* already defined above: #problem { background: linear-gradient(...) } */

/* Personalisation — solid navy (particles visible) */
/* already defined above: #personalisation { background: var(--navy) } */

/* Quality — opaque dark gradient (occludes particles) */
#quality {
  background: linear-gradient(180deg, var(--navy) 0%, #0A1520 100%);
}

/* Trust / Alternatives — solid navy (particles visible) */
#trust {
  background: var(--navy);
}

/* =============================================
   EYEBROW UTILITY
   ============================================= */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   SECTION TITLE CONSISTENCY
   ============================================= */
.section-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: var(--cream) !important;
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream-dim);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* =============================================
   RESPONSIVE COMPARISON TABLE
   ============================================= */
@media (max-width: 900px) {
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    /* Add a subtle drop shadow to indicate it's sticky */
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.2);
  }
  
  .comparison-table thead th:first-child {
    background-color: #1E3050;
    z-index: 3;
  }
  
  .comparison-table tbody tr:nth-child(odd) td:first-child {
    background-color: var(--navy);
  }
  
  .comparison-table tbody tr:nth-child(even) td:first-child {
    background-color: #122033; /* Matches the 2% white overlay */
  }
}
