/* ============================================================
   home.css — Marketing landing page styles for MapOutcomes
   ============================================================ */

/* ---- Reset section defaults (global section styles in header.css interfere) ----
   Use section.home-X specificity (0,1,1) to beat the global `section` rule (0,0,1).
   We explicitly set every background here rather than resetting to transparent,
   so each section's colour is authoritative. ---- */
section.home-hero,
section.home-section {
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
    animation: none;
    /* Top: consistent title offset from section edge. Bottom: compact so the scroll-hint arrow sits close to last content. */
    padding: clamp(60px, 8vh, 100px) 0 clamp(48px, 6vh, 72px);
}

/* Repurpose the global section::before (compass SVG) into a full-cover subtle grid overlay */
section.home-hero::before,
section.home-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255,255,255,0.02) 44px, rgba(255,255,255,0.02) 45px),
        repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(255,255,255,0.02) 44px, rgba(255,255,255,0.02) 45px);
    background-size: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* Light sections — use dark grid lines instead */
section.home-problem::before,
section.home-features::before,
section.home-how::before {
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(0,0,0,0.02) 44px, rgba(0,0,0,0.02) 45px),
        repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(0,0,0,0.02) 44px, rgba(0,0,0,0.02) 45px);
}

/* Dark sections — use light grid lines */
section.home-solution::before,
section.home-screenshots::before,
section.home-cta::before {
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255,255,255,0.03) 44px, rgba(255,255,255,0.03) 45px),
        repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(255,255,255,0.03) 44px, rgba(255,255,255,0.03) 45px);
}

/* Section backgrounds — explicit at (0,1,1) specificity */
/* Hero manages its own spacing via .home-hero-content padding — reset section-level padding */
section.home-hero        { position: relative; background: linear-gradient(135deg, #0A7A8C 0%, #2D5F3F 100%); padding: 0; }
section.home-problem     { position: relative; background: #F4F1E8; }
section.home-solution    { position: relative; background: #2C3539; }
section.home-features    { position: relative; background: #ffffff; }
section.home-how         { position: relative; background: #F4F1E8; }
section.home-screenshots { position: relative; background: #1a2a30; }
section.home-cta         { position: relative; background: linear-gradient(135deg, #0A7A8C 0%, #2D5F3F 100%); }

/* Override global h2 top margin inside landing sections */
.home-section h2,
.home-hero h2 {
    margin-top: 0;
}

/* ============================================================
   S1 — HERO
   ============================================================ */

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A7A8C 0%, #2D5F3F 100%);
}

#tensor-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(5, 15, 20, 0.20) 0%,
        rgba(5, 15, 20, 0.00) 45%,
        rgba(5, 15, 20, 0.40) 100%
    );
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: clamp(20px, 2vh, 40px) 24px 80px;
    max-width: 860px;
    width: 100%;
}

.hero-compass-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.hero-compass-mark svg {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.30));
    opacity: 0.90;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.8vw, 63px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.5px;
    margin: 0 0 26px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.65);
    text-align: center;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 400;
    opacity: 0.88;
    line-height: 1.7;
    margin: 0 auto 48px;
    max-width: 640px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero-primary {
    background: #C9A661;
    color: #fff;
    padding: 16px 44px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 20px rgba(201, 166, 97, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-hero-primary:hover {
    background: #b8954e;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201, 166, 97, 0.55);
    color: #fff;
    text-decoration: none;
}

.btn-hero-ghost {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.60);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.2px;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.hero-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    backdrop-filter: blur(4px);
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2.4s ease-in-out infinite;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scroll-hint:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* Variant for light-background sections */
.scroll-hint--on-light {
    color: rgba(10, 122, 140, 0.6);
}
.scroll-hint--on-light .scroll-arrow {
    border-right-color: rgba(10, 122, 140, 0.6);
    border-bottom-color: rgba(10, 122, 140, 0.6);
}
.scroll-hint--on-light:hover {
    color: rgba(10, 122, 140, 1);
    text-decoration: none;
}
.scroll-hint--on-light:hover .scroll-arrow {
    border-right-color: rgba(10, 122, 140, 1);
    border-bottom-color: rgba(10, 122, 140, 1);
}

.scroll-arrow {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255, 255, 255, 0.65);
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
    50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.home-section {
    /* Use the *visible* viewport height after the fixed navbar so that when an
       anchor link scrolls here (scroll-margin-top: 71px), the section fills
       exactly what the user sees — and the bottom arrow stays in view. */
    min-height: calc(100vh - 71px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scroll-margin-top: 71px;
}

/* CTA has very little content — center it vertically */
.home-cta {
    justify-content: center;
}

.home-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 2vw, 70px);  /* Extra space below section header to visually separate from content and give room for scroll hint arrow at bottom */
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #0A7A8C;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -0.3px;
    color: #2C3539;
    margin: 0 0 18px;
}

.section-sub {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 400;
    color: #5A6C75;
    line-height: 1.72;
    max-width: 620px;
    margin: 0 auto;
}

/* Dark section overrides */
.home-solution .section-eyebrow  { color: #C9A661; }
.home-solution .section-title    { color: #fff; }
.home-solution .section-sub      { color: rgba(255,255,255,0.60); }

.home-screenshots .section-title { color: #fff; }
.home-screenshots .section-sub   { color: rgba(255,255,255,0.55); }
.home-screenshots .section-eyebrow { color: rgba(201,166,97,0.9); }

.home-cta .section-eyebrow       { color: rgba(201,166,97,0.95); }
.home-cta .section-title         { color: #fff; }
.home-cta .section-sub           { color: rgba(255,255,255,0.78); }

/* ============================================================
   S2 — PROBLEM
   ============================================================ */

.home-problem {
    background: #F4F1E8;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.pain-card {
    background: #fff;
    border-radius: 14px;
    border-left: 4px solid #0A7A8C;
    padding: 44px 36px 40px;
    box-shadow: 0 4px 18px rgba(44, 53, 57, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 53, 57, 0.12);
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 122, 140, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pain-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0A7A8C;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pain-title {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: #2C3539;
    margin: 0 0 10px;
}

.pain-desc {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: #5A6C75;
    line-height: 1.70;
    margin: 0;
}

/* ============================================================
   S3 — SOLUTION
   ============================================================ */

.home-solution {
    background: #2C3539;
    text-align: center;
}

.axis-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}

.axis-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 5px;
    gap: 4px;
}

.axis-tab {
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    transition: background 0.22s ease, color 0.22s ease;
    font-family: inherit;
    white-space: nowrap;
}

.axis-tab.active {
    background: #0A7A8C;
    color: #fff;
    box-shadow: 0 2px 12px rgba(10,122,140,0.4);
}

.axis-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.85);
}

.hub-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.hub-diagram-wrap {
    flex-shrink: 0;
    position: relative;
}

.hub-view {
    display: none;
}

.hub-view.active {
    display: block;
    animation: hubFadeIn 0.4s ease forwards;
}

@keyframes hubFadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

/* Pulse ring animation on active hub center */
.hub-view.active .hub-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: hubPulse 2.4s ease-out infinite;
}

@keyframes hubPulse {
    0%   { transform: scale(1);   opacity: 0.40; }
    100% { transform: scale(1.7); opacity: 0; }
}

.hub-desc-panel {
    text-align: left;
    max-width: 340px;
    flex-shrink: 0;
}

.hub-view-desc {
    display: none;
}

.hub-view-desc.active {
    display: block;
    animation: hubFadeIn 0.4s ease forwards;
}

.hub-desc-panel h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
}

.hub-desc-panel p {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.74;
    margin: 0 0 24px;
}

.hub-entity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-entity-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.entity-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   S4 — FEATURES
   ============================================================ */

.home-features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    border: 1px solid #E8EBED;
    border-top: 3px solid #0A7A8C;
    border-radius: 14px;
    padding: 44px 36px 40px;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(44, 53, 57, 0.10);
    border-top-color: #C9A661;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(10, 122, 140, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 16px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(201, 166, 97, 0.10);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0A7A8C;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s ease;
}

.feature-card:hover .feature-icon svg {
    stroke: #C9A661;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: #2C3539;
    margin: 0;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: #5A6C75;
    line-height: 1.70;
    margin: 0;
}

/* ============================================================
   S5 — HOW IT WORKS
   ============================================================ */

.home-how {
    background: #F4F1E8;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-connector {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #0A7A8C 0, #0A7A8C 8px,
        transparent 8px, transparent 18px
    );
    z-index: 0;
    pointer-events: none;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A7A8C, #2D5F3F);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 6px 22px rgba(10, 122, 140, 0.32);
    border: 3px solid #F4F1E8;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(10, 122, 140, 0.42);
}

.step-title {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: #2C3539;
    margin: 0 0 10px;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: #5A6C75;
    line-height: 1.68;
    margin: 0;
}

/* ============================================================
   S6 — SCREENSHOTS
   ============================================================ */

.home-screenshots {
    background: #1a2a30;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.screenshot-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 52px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.screenshot-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.screenshot-frame {
    aspect-ratio: 16 / 9;
    background: linear-gradient(140deg, #0A7A8C 0%, #1a4a30 60%, #2D5F3F 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
}

.screenshot-frame svg {
    opacity: 0.45;
    position: relative;
    z-index: 1;
}

.screenshot-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.screenshot-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.40);
    font-style: italic;
    text-align: center;
    position: relative;
    z-index: 1;
}

.screenshot-caption {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.caption-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0A7A8C;
    flex-shrink: 0;
}

/* ============================================================
   S7 — CTA
   ============================================================ */

.home-cta {
    background: linear-gradient(135deg, #0A7A8C 0%, #2D5F3F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.cta-compass-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.06;
    pointer-events: none;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-trust {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-connector {
        display: none;
    }
    .hub-stage {
        flex-direction: column;
        gap: 40px;
    }
    .hub-desc-panel {
        text-align: center;
        max-width: 100%;
    }
    .hub-entity-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hub-entity-list li {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

@media (max-width: 640px) {
    .steps-row {
        grid-template-columns: 1fr;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .axis-tabs {
        flex-direction: column;
        width: 100%;
    }
    .axis-tab {
        text-align: center;
    }
    .hub-diagram-wrap svg {
        width: 280px !important;
        height: 280px !important;
    }
    .cta-compass-bg {
        display: none;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-hero-primary,
    .btn-hero-ghost {
        max-width: 320px;
    }
}

/* ============================================================
   Demo Playground CTA block (inside screenshots section)
   ============================================================ */
.demo-cta-block {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.demo-cta-lead {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.2px;
    margin: 0;
}

.btn-demo-playground {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C9A661;
    color: #ffffff;
    padding: 16px 44px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 166, 97, 0.40);
    transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.btn-demo-playground:hover {
    background: #b8954e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(201, 166, 97, 0.55);
    text-decoration: none;
}

.btn-demo-icon {
    display: inline-flex;
    align-items: center;
    opacity: 0.90;
    flex-shrink: 0;
}

.demo-cta-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.2px;
    margin: 0;
}

@media (max-width: 480px) {
    .btn-demo-playground {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
