/* ──────────────────────────────────────────────────────────────────────────
   landing-3d.css — visuals shared across the public marketing pages.

   Loaded AFTER warmup-theme.css so it can compose with the existing design
   tokens (--shell-* variables, Warm Editorial palette). Owns the Three.js
   canvas layout, scroll-reveal classes, the parallax-tilt card styling,
   pricing-table grid and the page-specific marketing layouts.

   The 3D feel is achieved via:
     · a full-bleed WebGL canvas behind the hero copy (#hero-3d)
     · perspective + transform-style: preserve-3d on every showcase card
     · CSS @keyframes for ambient drift on icons + nav glyphs
     · IntersectionObserver-driven [.is-revealed] reveal classes
   ────────────────────────────────────────────────────────────────────────── */

/* ────────────────────────────────────────────────────────────
   1. Three.js hero canvas + perspective wrappers
   ──────────────────────────────────────────────────────────── */

.hero-3d-stage {
    position: relative;
    min-height: min(720px, 92vh);
    isolation: isolate;
    overflow: hidden;
    padding: 96px 32px 120px;
    perspective: 1400px;
    background:
        radial-gradient(1100px 540px at 50% 30%, rgba(255, 200, 170, 0.22), transparent 70%),
        radial-gradient(900px 600px at 80% 80%, rgba(255, 140, 100, 0.16), transparent 75%),
        radial-gradient(800px 500px at 10% 60%, rgba(110, 198, 255, 0.10), transparent 70%);
}

[data-warmup-theme="dark"] .hero-3d-stage {
    background:
        radial-gradient(1100px 540px at 50% 30%, rgba(255, 130, 90, 0.18), transparent 70%),
        radial-gradient(900px 600px at 80% 80%, rgba(255, 90, 50, 0.12), transparent 75%),
        radial-gradient(800px 500px at 10% 60%, rgba(50, 130, 200, 0.10), transparent 70%);
}

#hero-3d {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Faded edges so the canvas blends into the page rather than ending hard */
    -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 90%);
            mask-image: radial-gradient(ellipse at center, #000 55%, transparent 90%);
    opacity: 0.95;
}

.hero-3d-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    transform-style: preserve-3d;
}

.hero-3d-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(26, 45, 61, 0.08);
    font-size: 13px;
    font-weight: 500;
    color: var(--shell-text);
    box-shadow: 0 18px 40px -22px rgba(26, 45, 61, 0.4);
    animation: pill-float 6s ease-in-out infinite;
}

[data-warmup-theme="dark"] .hero-3d-pill {
    background: rgba(20, 32, 44, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
}

@keyframes pill-float {
    0%, 100% { transform: translateY(0) translateZ(20px); }
    50%      { transform: translateY(-6px) translateZ(20px); }
}

.hero-3d-headline {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: clamp(44px, 8vw, 96px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin: 24px 0 18px;
    color: var(--shell-text);
    font-weight: 500;
    text-wrap: balance;
}

.hero-3d-headline em {
    font-style: italic;
    background: linear-gradient(120deg, #E96846 0%, #f6a07a 55%, #ffd07a 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-3d-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 36px;
    color: var(--shell-muted);
    text-wrap: balance;
}

.hero-3d-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-3d-foot {
    font-size: 12px;
    color: var(--shell-muted);
    letter-spacing: 0.04em;
    margin: 0;
}

/* Animated buttons reused across hero sections. Subtle 3D press on hover. */
.btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1.2),
                box-shadow 220ms ease,
                background-color 220ms ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-3d-primary {
    background: linear-gradient(135deg, #E96846 0%, #f4825e 100%);
    color: #fff;
    box-shadow:
        0 20px 36px -16px rgba(233, 104, 70, 0.7),
        inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.btn-3d-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 30px 48px -16px rgba(233, 104, 70, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-3d-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--shell-text);
    border: 1px solid rgba(26, 45, 61, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-warmup-theme="dark"] .btn-3d-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.btn-3d-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(26, 45, 61, 0.22);
}

[data-warmup-theme="dark"] .btn-3d-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ────────────────────────────────────────────────────────────
   2. Shared landing chrome — nav + footer
   ──────────────────────────────────────────────────────────── */

.landing-nav-3d {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    background: rgba(250, 246, 239, 0.72);
    border-bottom: 1px solid rgba(26, 45, 61, 0.06);
}

[data-warmup-theme="dark"] .landing-nav-3d {
    background: rgba(14, 22, 34, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.landing-nav-3d a { text-decoration: none; }

.landing-nav-logo-3d {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 17px;
    color: var(--shell-text);
}

.landing-nav-logo-3d .mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #1A2D3D 0%, #2c4860 50%, #E96846 130%);
    box-shadow: 0 8px 22px -8px rgba(233, 104, 70, 0.65);
    transform-style: preserve-3d;
    animation: mark-float 5s ease-in-out infinite;
}

@keyframes mark-float {
    0%, 100% { transform: rotateY(0deg); }
    50%      { transform: rotateY(15deg); }
}

.landing-nav-links-3d {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    color: var(--shell-muted);
}

.landing-nav-links-3d a {
    color: inherit;
    transition: color 160ms ease;
    position: relative;
}

.landing-nav-links-3d a:hover { color: var(--shell-text); }

.landing-nav-links-3d a.is-active {
    color: var(--shell-text);
    font-weight: 500;
}

.landing-nav-links-3d a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #E96846, #f4825e);
}

.landing-nav-cta-3d {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E96846 0%, #f4825e 100%);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 12px 24px -10px rgba(233, 104, 70, 0.6);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.landing-nav-cta-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -12px rgba(233, 104, 70, 0.7);
}

/* Footer */

.landing-foot-3d {
    padding: 80px 32px 40px;
    background:
        linear-gradient(180deg, transparent, rgba(26, 45, 61, 0.04)),
        radial-gradient(900px 400px at 50% 100%, rgba(233, 104, 70, 0.10), transparent 75%);
    border-top: 1px solid rgba(26, 45, 61, 0.06);
    color: var(--shell-muted);
    font-size: 13px;
}

[data-warmup-theme="dark"] .landing-foot-3d {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02)),
        radial-gradient(900px 400px at 50% 100%, rgba(233, 104, 70, 0.18), transparent 75%);
    border-top-color: rgba(255, 255, 255, 0.06);
}

.landing-foot-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
}

.landing-foot-grid h4 {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--shell-text);
    margin: 0 0 12px 0;
}

.landing-foot-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-foot-grid a {
    color: var(--shell-muted);
    text-decoration: none;
    transition: color 160ms ease;
}

.landing-foot-grid a:hover { color: var(--shell-text); }

.landing-foot-bottom {
    max-width: 1240px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 45, 61, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 900px) {
    .landing-foot-grid { grid-template-columns: 1fr 1fr; }
}

/* ────────────────────────────────────────────────────────────
   3. Scroll-reveal classes (powered by IntersectionObserver)
   ──────────────────────────────────────────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(36px) translateZ(0);
    transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

[data-reveal="slide-left"]  { transform: translateX(-48px); }
[data-reveal="slide-left"].is-revealed  { transform: translateX(0); }
[data-reveal="slide-right"] { transform: translateX(48px); }
[data-reveal="slide-right"].is-revealed { transform: translateX(0); }
[data-reveal="zoom"]        { transform: scale(0.92); }
[data-reveal="zoom"].is-revealed        { transform: scale(1); }

/* ────────────────────────────────────────────────────────────
   4. Tilt-on-hover 3D cards (data-tilt)
   ──────────────────────────────────────────────────────────── */

[data-tilt] {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transition: transform 250ms cubic-bezier(0.2, 0.9, 0.3, 1.2),
                box-shadow 250ms ease;
    transform-style: preserve-3d;
}

[data-tilt]:hover {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(12px);
}

/* ────────────────────────────────────────────────────────────
   5. Feature showcase cards
   ──────────────────────────────────────────────────────────── */

.section-3d {
    padding: 120px 32px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-3d-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-3d-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--shell-primary, #E96846);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-3d-head h2 {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: var(--shell-text);
    font-weight: 500;
}

.section-3d-head p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--shell-muted);
    margin: 0;
}

.feature-grid-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) { .feature-grid-3d { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .feature-grid-3d { grid-template-columns: 1fr; } }

.feature-card-3d {
    position: relative;
    padding: 32px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 45, 61, 0.06);
    box-shadow:
        0 30px 60px -30px rgba(26, 45, 61, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

[data-warmup-theme="dark"] .feature-card-3d {
    background: rgba(20, 32, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 30px 60px -30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(280px 180px at 20% -10%, rgba(233, 104, 70, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 320ms ease;
}

.feature-card-3d:hover::after { opacity: 1; }

.feature-card-3d-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(233, 104, 70, 0.22), rgba(244, 130, 94, 0.08));
    color: #E96846;
    transform: translateZ(40px);
}

.feature-card-3d-icon .material-icons { font-size: 28px; }

.feature-card-3d h3 {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 8px;
    color: var(--shell-text);
    letter-spacing: -0.01em;
}

.feature-card-3d p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--shell-muted);
    margin: 0;
}

/* ────────────────────────────────────────────────────────────
   6. Stats strip
   ──────────────────────────────────────────────────────────── */

.stats-3d {
    position: relative;
    padding: 60px 32px;
    background:
        linear-gradient(180deg, transparent, rgba(26, 45, 61, 0.03)),
        radial-gradient(700px 360px at 50% 50%, rgba(233, 104, 70, 0.10), transparent 70%);
}

.stats-3d-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

@media (max-width: 800px) { .stats-3d-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.stats-3d-grid > div {
    position: relative;
    padding: 28px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(26, 45, 61, 0.08);
    box-shadow:
        0 24px 50px -28px rgba(26, 45, 61, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 240ms cubic-bezier(0.2, 0.9, 0.3, 1.2),
                box-shadow 240ms ease;
    overflow: hidden;
}

[data-warmup-theme="dark"] .stats-3d-grid > div {
    background: rgba(20, 32, 44, 0.66);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 50px -28px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stats-3d-grid > div::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    pointer-events: none;
    background: radial-gradient(220px 140px at 50% -20%, rgba(233, 104, 70, 0.22), transparent 70%);
    opacity: 0.7;
}

.stats-3d-grid > div:hover {
    transform: translateY(-4px);
    box-shadow:
        0 36px 64px -28px rgba(233, 104, 70, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-3d-value {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 600;
    color: var(--shell-text);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.035em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-warmup-theme="dark"] .stat-3d-value {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.stat-3d-value em {
    font-style: italic;
    background: linear-gradient(120deg, #E96846 0%, #f6a07a 50%, #ffc785 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 18px rgba(233, 104, 70, 0.4));
}

.stat-3d-label {
    font-size: 12px;
    color: var(--shell-text);
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

[data-warmup-theme="dark"] .stat-3d-label {
    opacity: 0.85;
}

/* ────────────────────────────────────────────────────────────
   7. Pricing
   ──────────────────────────────────────────────────────────── */

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(26, 45, 61, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto 48px;
}

[data-warmup-theme="dark"] .pricing-toggle {
    background: rgba(20, 32, 44, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-toggle button {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--shell-muted);
    font: inherit;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 200ms ease, color 200ms ease;
}

.pricing-toggle button.is-active {
    background: var(--shell-text);
    color: #FAF6EF;
}

.pricing-toggle .save-pill {
    font-size: 11px;
    background: rgba(233, 104, 70, 0.18);
    color: #B5392C;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

[data-warmup-theme="dark"] .pricing-toggle .save-pill { color: #ffd0b8; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 45, 61, 0.08);
    box-shadow: 0 30px 60px -30px rgba(26, 45, 61, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform-style: preserve-3d;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

[data-warmup-theme="dark"] .pricing-card {
    background: rgba(20, 32, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 80px -30px rgba(26, 45, 61, 0.28);
}

.pricing-card.is-highlight {
    background: linear-gradient(180deg, rgba(255, 246, 232, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(233, 104, 70, 0.45);
    box-shadow:
        0 50px 90px -30px rgba(233, 104, 70, 0.35),
        0 0 0 1px rgba(233, 104, 70, 0.16);
    transform: translateY(-12px);
}

[data-warmup-theme="dark"] .pricing-card.is-highlight {
    background: linear-gradient(180deg, rgba(46, 33, 24, 0.95) 0%, rgba(20, 32, 44, 0.85) 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E96846, #f4825e);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 14px 28px -10px rgba(233, 104, 70, 0.6);
}

.pricing-name {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--shell-text);
}

.pricing-tagline {
    font-size: 13px;
    color: var(--shell-muted);
    margin: 0 0 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.pricing-price .amount {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: 56px;
    font-weight: 500;
    color: var(--shell-text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--shell-muted);
}

.pricing-billing-note {
    font-size: 12px;
    color: var(--shell-muted);
    margin: 0 0 24px;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    margin-bottom: 28px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(26, 45, 61, 0.14);
    background: rgba(255, 255, 255, 0.6);
    color: var(--shell-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 180ms ease, transform 180ms ease;
}

.pricing-card.is-highlight .pricing-cta {
    background: linear-gradient(135deg, #E96846, #f4825e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 30px -12px rgba(233, 104, 70, 0.6);
}

.pricing-cta:hover { transform: translateY(-2px); }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--shell-text);
}

.pricing-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pricing-features li .material-icons {
    color: #E96846;
    font-size: 20px;
    flex-shrink: 0;
}

.pricing-features li.is-muted {
    color: var(--shell-muted);
}

.pricing-features li.is-muted .material-icons { color: var(--shell-muted); }

.pricing-inherit-note {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--shell-muted);
    margin: 0 0 12px;
    padding-top: 16px;
    border-top: 1px dashed rgba(26, 45, 61, 0.12);
}

/* Pricing comparison table */

.pricing-compare {
    margin: 80px auto 0;
    max-width: 1080px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(26, 45, 61, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

[data-warmup-theme="dark"] .pricing-compare {
    background: rgba(20, 32, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-compare table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pricing-compare th,
.pricing-compare td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(26, 45, 61, 0.06);
}

.pricing-compare th {
    background: rgba(26, 45, 61, 0.04);
    font-weight: 600;
    color: var(--shell-text);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.pricing-compare td .material-icons {
    color: #E96846;
    font-size: 20px;
}

.pricing-compare td.cell-no .material-icons { color: rgba(26, 45, 61, 0.25); }

/* ────────────────────────────────────────────────────────────
   8. Integrations grid
   ──────────────────────────────────────────────────────────── */

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    max-width: 1240px;
    margin: 48px auto 0;
}

.integration-tile {
    position: relative;
    padding: 28px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 45, 61, 0.06);
    text-align: center;
    transition: transform 240ms cubic-bezier(0.2, 0.9, 0.3, 1.2),
                box-shadow 240ms ease;
}

[data-warmup-theme="dark"] .integration-tile {
    background: rgba(20, 32, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

.integration-tile:hover {
    transform: translateY(-6px) rotateX(6deg) rotateY(-3deg);
    box-shadow: 0 30px 56px -30px rgba(26, 45, 61, 0.3);
}

.integration-tile-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #1A2D3D, #2c4860);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.integration-tile-name {
    font-weight: 600;
    color: var(--shell-text);
    font-size: 15px;
    margin-bottom: 4px;
}

.integration-tile-desc {
    font-size: 12px;
    color: var(--shell-muted);
    line-height: 1.5;
}

.integration-tile-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(233, 104, 70, 0.16);
    color: #B5392C;
    font-weight: 600;
}

[data-warmup-theme="dark"] .integration-tile-badge { color: #ffd0b8; }

/* ────────────────────────────────────────────────────────────
   9. FAQ
   ──────────────────────────────────────────────────────────── */

.faq-list {
    max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(26, 45, 61, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 200ms ease;
}

[data-warmup-theme="dark"] .faq-item {
    background: rgba(20, 32, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.06);
}

.faq-item[open] {
    box-shadow: 0 24px 48px -28px rgba(26, 45, 61, 0.18);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    color: var(--shell-text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: monospace;
    font-size: 22px;
    color: var(--shell-muted);
    transition: transform 220ms ease;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item-body {
    padding: 0 26px 22px;
    color: var(--shell-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   10. Final CTA band
   ──────────────────────────────────────────────────────────── */

.cta-band {
    position: relative;
    margin: 80px auto;
    max-width: 1100px;
    padding: 80px 48px;
    border-radius: 32px;
    background:
        radial-gradient(800px 400px at 50% 50%, rgba(233, 104, 70, 0.22), transparent 70%),
        linear-gradient(135deg, #1A2D3D 0%, #2c4860 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.cta-band::before {
    top: -60px;
    left: -80px;
    background: rgba(233, 104, 70, 0.55);
    animation: blob-drift 14s ease-in-out infinite;
}

.cta-band::after {
    bottom: -80px;
    right: -100px;
    background: rgba(110, 198, 255, 0.35);
    animation: blob-drift 18s ease-in-out -6s infinite reverse;
}

@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.1); }
}

.cta-band h2 {
    font-family: var(--font-display, 'Fraunces', Georgia, serif);
    font-size: clamp(34px, 4.4vw, 56px);
    margin: 0 0 14px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 28px;
}

.cta-band .btn-3d-primary {
    box-shadow: 0 30px 56px -16px rgba(233, 104, 70, 0.7);
}
