/* ========================================
   INDIE PROFESSIONAL - STYLE SHEET
   Theme: Professional, Trustworthy, Clean
   ======================================== */

:root {
    /* Colors */
    --primary-color: #0A2540;
    /* Deep Navy */
    --accent-color: #FF4D00;
    /* International Orange */
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FC;
    /* Very light blue-grey */
    --border-light: #E0E6ED;

    /* Spacing */
    --container-max: 1100px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    /* Setup for potential future font change */

    /* Type tokens (Indie.Box) */
    --t-display-1: clamp(3.3rem, 7.9vw, 7rem);
    --t-display-2: clamp(2.35rem, 5.4vw, 4.4rem);
    --t-title: clamp(1.7rem, 3.4vw, 2.5rem);
    --t-subhead: clamp(1.1rem, 2.1vw, 1.6rem);
    --t-body-lg: 1.1rem;
    --t-body: 1rem;
    --t-body-sm: 0.9rem;
    --t-small: 0.85rem;
    --t-ui: 0.95rem;

    /* Background tokens */
    --bg-dark: #0b1118;
    --bg-dark-metal: radial-gradient(1200px 700px at 20% 30%, rgba(91, 153, 182, 0.18), transparent 60%), #0b1118;
    --bg-neutral: #f0f2f5;

    /* Gradient tokens */
    --gradient-prism: linear-gradient(95deg, #c2410c 0%, #f97316 35%, #fb923c 68%, #fdba74 100%);
    --gradient-hero-dark: linear-gradient(95deg, #f2f5f7 0%, #c7d4dc 35%, #7b93a7 70%, #415b6f 100%);
    --gradient-hero-light: linear-gradient(95deg, #0e2436 0%, #243b4f 40%, #3c576b 70%, #516c81 100%);
    --gradient-signature: var(--gradient-prism);

    /* Story spacing */
    --story-gap: clamp(2.5rem, 6vh, 4.5rem);
    --story-box-width: 1040px;
    --story-text-inset: clamp(3rem, 6vw, 5.5rem);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate="fade-up"] {
    opacity: 0;
    /* Will be triggered by JS */
}

[data-animate="fade-up"].visible {
    animation: fadeUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

[data-animate="fade-up"][data-stagger="1"].visible {
    animation-delay: 0.08s;
}

[data-animate="fade-up"][data-stagger="2"].visible {
    animation-delay: 0.16s;
}

[data-animate="fade-up"][data-stagger="3"].visible {
    animation-delay: 0.24s;
}

/* Parallax Utilities */
.parallax-container {
    position: relative;
    overflow: hidden;
    /* Maintain aspect ratio or height */
}

.parallax-bg {
    position: absolute;
    top: -20%;
    /* Start higher up so we have room to move down */
    left: 0;
    width: 100%;
    height: 140%;
    /* Taller for parallax movement */
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0);
    /* Hardware accel */
    will-change: transform;
}

ul {
    list-style: none;
}

/* ========================================
   COMPONENTS
   ======================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--t-ui);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.button--pill {
    border-radius: 999px;
}


.button--sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    min-height: 32px;
}

.button--md {
    padding: 0.8rem 1.5rem;
    min-height: 40px;
}

.button--lg {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
}

.button--solid {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 77, 0, 0.2);
}

.button--solid:hover {
    background-color: #e64600;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 77, 0, 0.3);
}

.button--plain-light {
    background-color: rgba(10, 37, 64, 0.08);
    color: var(--primary-color);
    border-color: transparent;
}

.button--plain-light:hover {
    background-color: rgba(10, 37, 64, 0.14);
}

.button--plain-dark {
    background-color: rgba(255, 255, 255, 0.14);
    color: rgba(247, 250, 252, 0.95);
    border-color: transparent;
}

.button--plain-dark:hover {
    background-color: rgba(255, 255, 255, 0.22);
}


@media (max-width: 768px) {
    .nav-actions {
        margin-left: 0;
    }
    .button--lg {
        min-height: 44px;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}

.section {
    padding: var(--spacing-lg) 0;
}

.final-cta {
    background: var(--gradient-prism);
}

.final-cta .section-heading {
    color: #ffffff;
}

.section-heading {
    text-align: center;
    font-size: var(--t-title);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.info-section {
    background: var(--bg-dark-metal);
}

.info-section--light {
    background: var(--bg-light);
}

.info-section--light .info-card {
    background: var(--bg-neutral);
    border: 1px solid rgba(11, 34, 52, 0.08);
    box-shadow: 0 18px 40px rgba(11, 34, 52, 0.12);
}

.info-section--light .info-title {
    color: #0b2234;
}

@supports (-webkit-text-fill-color: transparent) {
    .info-section--light .info-title {
        background: var(--gradient-hero-light);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.info-section--light .info-text {
    color: rgba(11, 34, 52, 0.72);
}

.info-section--light .info-text--lead {
    color: rgba(11, 34, 52, 0.9);
}

.info-section--light .text-link {
    color: rgba(11, 34, 52, 0.8);
    border-bottom: 1px solid rgba(11, 34, 52, 0.3);
}

.info-section--light .text-link:hover {
    color: rgba(11, 34, 52, 1);
    border-color: rgba(11, 34, 52, 0.6);
}

.info-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    border-radius: 28px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1.2rem;
}

.info-title {
    font-size: var(--t-display-2);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #f3f7fb;
    margin: 0;
}

.info-title--display-2 {
    font-size: var(--t-display-2);
}

@supports (-webkit-text-fill-color: transparent) {
    .info-title {
        background: var(--gradient-hero-dark);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.info-text {
    font-size: var(--t-body);
    line-height: 1.7;
    color: rgba(236, 242, 248, 0.78);
    margin: 0;
    max-width: 760px;
}

.info-text--lead {
    font-size: var(--t-body-lg);
    color: rgba(248, 250, 252, 0.88);
}

.info-section .text-link {
    width: fit-content;
    font-size: var(--t-ui);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(246, 250, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(246, 250, 255, 0.3);
    padding-bottom: 0.2rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.info-section .text-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.compare-headline {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.compare-title {
    font-size: var(--t-display-2);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.compare-subline {
    font-size: var(--t-body-lg);
    color: rgba(11, 34, 52, 0.68);
    max-width: 720px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
    align-items: stretch;
}

.comparison-item {
    position: relative;
    display: flex;
    height: 100%;
    isolation: isolate;
}

.comparison-item--highlight {
    z-index: 2;
    transform: translateY(-8px);
}

.comparison-item--highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: var(--gradient-prism);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-item--highlight::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 34px;
    background: var(--gradient-prism);
    filter: blur(24px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

.comparison-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 34, 52, 0.08);
    box-shadow: 0 18px 40px rgba(11, 34, 52, 0.08);
    width: 100%;
}

.comparison-item--highlight .comparison-card {
    border-color: rgba(11, 34, 52, 0.08);
    box-shadow: 0 22px 46px rgba(11, 34, 52, 0.12);
}

.comparison-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 1.35rem;
}

.comparison-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(11, 34, 52, 0.5);
    white-space: nowrap;
}

.comparison-label--best {
    color: rgba(10, 37, 64, 0.85);
}

.symbol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.symbol-list li {
    position: relative;
    padding-left: 1.7rem;
    font-size: var(--t-body);
    color: rgba(11, 34, 52, 0.72);
}

.comparison-card--negative .symbol-list li::before,
.comparison-card--positive .symbol-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    background: rgba(11, 34, 52, 0.16);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 78% 78%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 78% 78%;
}

.comparison-card--positive .symbol-list li::before {
    background: rgba(10, 37, 64, 0.75);
    box-shadow: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.3L6.4 10.7L12 5.3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.3L6.4 10.7L12 5.3' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.comparison-card--negative .symbol-list li::before {
    background: rgba(11, 34, 52, 0.2);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8H12' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8H12' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

 


.center-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: var(--t-body-lg);
    color: rgba(11, 34, 52, 0.75);
}

.center-note--prism {
    font-size: var(--t-subhead);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: transparent;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-bar {
    background-color: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-bar--floating {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.nav-bar--floating.nav-bar--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(10, 37, 64, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(10, 37, 64, 0.3);
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: #E64600;
}

.nav-buy {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
    box-shadow: 0 6px 16px rgba(255, 77, 0, 0.25);
}

.nav-buy:hover {
    background-color: #e64600;
    transform: translateY(-1px);
}

/* ========================================
   SPECIFICATION
   ======================================== */

.spec-card {
    max-width: 880px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 24px 60px rgba(11, 34, 52, 0.08);
    padding: clamp(2rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.spec-section .container {
    max-width: none;
    padding: 0;
}

.spec-card--full {
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.spec-card--full .spec-visual {
    min-height: clamp(320px, 40vw, 540px);
    height: 100%;
    background: #ffffff;
}

.spec-card--full .spec-visual-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spec-card--full .spec-content {
    padding: clamp(2.5rem, 6vw, 4.5rem);
}

.spec-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.spec-visual-image {
    width: 130%;
    height: 130%;
    object-fit: contain;
    filter: contrast(1.08) saturate(1.05);
}

.spec-content {
    display: grid;
    gap: 0.9rem;
}

.spec-kicker {
    font-size: var(--t-small);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(11, 34, 52, 0.55);
}

.spec-title {
    font-size: var(--t-display-2);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.spec-price {
    font-size: var(--t-subhead);
    color: rgba(11, 34, 52, 0.7);
}

.spec-tagline {
    font-size: var(--t-body-lg);
    color: var(--text-light);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: var(--t-body);
    color: var(--text-light);
}

.spec-list span {
    color: rgba(11, 34, 52, 0.6);
}

.spec-list strong {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.spec-checks {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: grid;
    gap: 0.5rem;
    font-size: var(--t-body);
    color: var(--text-light);
}

.spec-checks li {
    position: relative;
    padding-left: 1.4rem;
}

.spec-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(11, 34, 52, 0.55);
    box-shadow: 0 0 0 4px rgba(11, 34, 52, 0.08);
}

@media (max-width: 980px) {
    .spec-card {
        grid-template-columns: 1fr;
    }

    .spec-card--full .spec-content {
        padding: clamp(2rem, 7vw, 3rem);
    }

    .spec-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .spec-list strong {
        text-align: left;
    }
}

/* ========================================
   HERO OVERLAY
   ======================================== */

.hero-overlay {
    position: relative;
    height: 90vh;
    /* Taller hero */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg-image {
    /* Now using .parallax-bg styles generally, but keeping specific hero tweaks if needed */
    position: absolute;
    top: -20%;
    /* Center the overflow */
    left: 0;
    width: 100%;
    height: 140%;
    /* Parallax overflow */
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.35);
    /* Slightly darker for better contrast */
    transform-origin: center center;
}

.hero-content-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    /* Constrained */
    padding: 3.5rem;
    background: transparent;
    /* No fill as requested */
    /* Premium glass effect */
    border-radius: 24px;
    /* Deep, soft shadow */
    border: 3px solid white;
    /* Distinct white border */
    margin: 0 1rem;
    /* Ensure some spacing on mobile */
}

.hero-title {
    font-size: var(--t-display-1);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
    /* Ensure white text */
}

.hero-subtitle {
    font-size: var(--t-subhead);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    /* Revert to light text */
}

.white-text {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.white-border {
    border-color: white !important;
    color: white !important;
}

.white-border:hover {
    background-color: white !important;
    color: var(--primary-color) !important;
}

.clickable-heading:hover {
    color: var(--accent-color);
    cursor: pointer;
}

/* ========================================
   BENEFITS GRID
   ======================================== */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.capability-card {
    display: flex;
    flex-direction: column;
}

.capability-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.capability-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.capability-media__img--agent {
    transform: scale(1.06);
    transform-origin: center;
}

.capability-media--placeholder {
    background: var(--bg-neutral);
}

.capability-story .container {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 8vw, 6.5rem);
}

.feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: center;
}

.feature-panel--reverse .feature-visual {
    order: 2;
}

.feature-panel--reverse .feature-copy {
    order: 1;
}

.feature-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-neutral);
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 24px 60px rgba(11, 34, 52, 0.12);
}

.feature-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.feature-visual__img--agent {
    transform: scale(1.05);
    transform-origin: center;
}

.feature-visual--placeholder {
    background:
        linear-gradient(135deg, rgba(11, 34, 52, 0.06), rgba(11, 34, 52, 0.02)),
        var(--bg-neutral);
}

.feature-copy {
    max-width: 520px;
}

.feature-kicker {
    font-size: var(--t-small);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(11, 34, 52, 0.55);
    margin-bottom: 0.9rem;
}

.feature-title {
    font-size: var(--t-title);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-lead {
    font-size: var(--t-body-lg);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.feature-points li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text-light);
    font-size: var(--t-body);
}

.feature-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(11, 34, 52, 0.55);
}

@media (max-width: 980px) {
    .feature-panel {
        grid-template-columns: 1fr;
    }

    .feature-panel--reverse .feature-visual,
    .feature-panel--reverse .feature-copy {
        order: initial;
    }

    .feature-copy {
        max-width: 100%;
    }
}

/* ========================================
   VISUAL SHOWCASE SECTION
   ======================================== */
.showcase-section {
    position: relative;
    padding: 0;
    /* Full bleed or controlled padding */
    background-color: #05101A;
    /* Very dark navy to match image */
    overflow: hidden;
    color: white;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 50vh;
    /* Large impactful area */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* Ensure container is above other stacking contexts if needed */
}

.showcase-image {
    position: absolute;
    top: -60%;
    left: 0;
    width: 100%;
    height: 220%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 0;
    /* Visual distinction for the second image */
    filter: contrast(1.1) saturate(0.8) sepia(0.2);
}

.showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

.showcase-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ========================================
   USE CASES
   ======================================== */

.use-cases {
    background-color: var(--bg-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.use-case-item {
    background: white;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.use-case-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.use-case-item p {
    color: var(--text-light);
}

/* ========================================
   SPECS
   ======================================== */

.specs-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.spec-row.header {
    background-color: var(--bg-light);
    font-weight: 700;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-color);
}

.spec-value {
    color: var(--text-dark);
}

/* ========================================
   PRICING
   ======================================== */

.pricing {
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.pricing-header h3 {
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.vat-note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.feature-list {
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.shipping-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ========================================
   CHECKOUT
   ======================================== */

.checkout-page {
    background: #ffffff;
}

.checkout-hero {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: clamp(4rem, 10vw, 6rem) 0 3.5rem;
}

.checkout-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
}

.checkout-hero-copy {
    max-width: 640px;
}

.checkout-kicker {
    font-size: var(--t-small);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(10, 37, 64, 0.6);
}

.checkout-title {
    font-size: var(--t-display-2);
    line-height: 1.05;
    margin: 0.75rem 0 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

@supports (-webkit-text-fill-color: transparent) {
    .checkout-title {
        background: var(--gradient-hero-light);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.checkout-price-subline {
    font-size: var(--t-subhead);
    font-weight: 600;
    color: rgba(10, 37, 64, 0.75);
    margin: 0 0 1rem;
}

.checkout-price-subline--sm {
    font-size: var(--t-body);
    font-weight: 600;
}

.checkout-subtitle {
    font-size: var(--t-subhead);
    line-height: 1.6;
    color: rgba(10, 37, 64, 0.82);
    margin-bottom: 1.75rem;
}

.checkout-subtitle--sm {
    font-size: var(--t-body-lg);
    margin-bottom: 1.1rem;
}

.checkout-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.checkout-hero-note {
    font-size: var(--t-body-sm);
    color: rgba(10, 37, 64, 0.7);
    margin: 0;
}

.checkout-hero-note--strong {
    font-weight: 600;
    color: rgba(10, 37, 64, 0.82);
}

.checkout-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.checkout-hero-image {
    width: min(100%, 680px);
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 35px rgba(10, 37, 64, 0.25));
}

.checkout-section {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
}

.checkout-specs {
    background: #ffffff;
}

.checkout-specs-list {
    display: grid;
    gap: 0.75rem;
}

.checkout-spec-label {
    font-size: var(--t-body-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(10, 37, 64, 0.55);
}

.checkout-spec-value {
    font-size: var(--t-body);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.checkout-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.checkout-spec-row:last-child {
    border-bottom: none;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.checkout-card {
    background: #ffffff;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 22px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 18px 36px rgba(10, 37, 64, 0.08);
    display: grid;
    gap: 0.85rem;
}

.checkout-card--muted {
    background: var(--bg-neutral);
}

.checkout-tag {
    font-size: var(--t-small);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(10, 37, 64, 0.6);
}

.checkout-card h2 {
    font-size: var(--t-title);
    color: var(--primary-color);
}

.checkout-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.checkout-card p {
    font-size: var(--t-body);
    color: var(--text-light);
    line-height: 1.65;
}

.checkout-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.checkout-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: var(--t-body);
    color: var(--text-dark);
}

.checkout-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.checkout-note {
    font-size: var(--t-body-sm);
    color: rgba(10, 37, 64, 0.7);
}

.checkout-section-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

.checkout-section-title {
    font-size: var(--t-title);
    color: var(--primary-color);
    margin: 0.4rem 0 0.6rem;
}

.checkout-section-subtitle {
    font-size: var(--t-body-lg);
    color: var(--text-light);
    margin: 0;
}

.checkout-form-section {
    background: #ffffff;
}

.checkout-footnote {
    max-width: var(--container-max);
    margin: 0 auto 3rem;
    padding: 0 var(--spacing-sm);
    font-size: var(--t-body-sm);
    color: rgba(10, 37, 64, 0.65);
}

.checkout-soft-list {
    display: grid;
    gap: 1.1rem;
}

.checkout-soft-item {
    display: grid;
    grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.checkout-soft-item:last-child {
    border-bottom: none;
}

.checkout-soft-name {
    font-size: var(--t-body);
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-soft-desc {
    font-size: var(--t-body);
    color: var(--text-light);
    line-height: 1.6;
}

.checkout-cta {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: clamp(3rem, 8vw, 4.5rem) 0;
}

.checkout-cta-title {
    font-size: var(--t-display-2);
    line-height: 1.05;
    margin: 0 0 0.35rem;
    color: var(--primary-color);
}

.checkout-cta-subtitle {
    font-size: var(--t-subhead);
    margin: 0;
    color: rgba(10, 37, 64, 0.75);
}

.checkout-cta-frame {
    padding: clamp(2rem, 5vw, 3rem);
}

/* Glow frame (prism, orange only) */
.glow-frame {
    position: relative;
    overflow: visible;
    --glow-radius: 28px;
    border-radius: var(--glow-radius);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border: 2px solid transparent;
    background-color: #ffffff;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        var(--gradient-prism);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 22px 50px rgba(255, 77, 0, 0.14),
        0 10px 26px rgba(10, 37, 64, 0.08);
}

.glow-frame--outer::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--glow-radius) + 12px);
    background: var(--gradient-prism);
    filter: blur(24px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

.checkout-form-card {
    background: #ffffff;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 26px;
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.checkout-form {
    display: grid;
    gap: 2rem;
}

.form-section {
    display: grid;
    gap: 1.1rem;
}

.form-section-title {
    font-size: var(--t-body-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
}

.form-row--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: var(--t-body-sm);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(10, 37, 64, 0.18);
    font-size: var(--t-body);
    font-family: var(--font-main);
    background: #ffffff;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--t-body);
    color: var(--text-dark);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--accent-color);
    flex: 0 0 auto;
}

.form-checkbox span {
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-checkbox a:hover {
    color: var(--accent-color);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.field-required {
    color: var(--accent-color);
    margin-left: 0.2rem;
}

.form-details {
    border-radius: 18px;
    border: 1px dashed rgba(10, 37, 64, 0.2);
    padding: 1.1rem 1.35rem;
    background: var(--bg-light);
}

.form-details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    font-size: var(--t-body);
}

.form-details[open] {
    background: #ffffff;
    border-style: solid;
}

.form-details .form-grid {
    margin-top: 1rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.form-note {
    font-size: var(--t-body-sm);
    color: var(--text-light);
    max-width: 420px;
}

.form-footnote {
    font-size: var(--t-body-sm);
    color: rgba(10, 37, 64, 0.65);
    margin-top: -0.6rem;
}

@media (max-width: 768px) {
    .checkout-hero {
        padding-top: 5rem;
    }

    .checkout-hero-inner {
        grid-template-columns: 1fr;
    }

    .checkout-hero-media {
        order: -1;
    }

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

    .checkout-spec-row,
    .checkout-soft-item {
        grid-template-columns: 1fr;
    }

    .checkout-section-head {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-page--with-nav {
    padding-top: clamp(5.5rem, 10vw, 7rem);
}

.legal-header {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    padding: 0 var(--spacing-sm);
}

.legal-header .text-link {
    width: fit-content;
    font-size: var(--t-ui);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(11, 34, 52, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 34, 52, 0.3);
    padding-bottom: 0.2rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-block;
}

.legal-header .text-link:hover {
    color: rgba(11, 34, 52, 1);
    border-color: rgba(11, 34, 52, 0.6);
}

.legal-title {
    font-size: var(--t-display-2);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

.legal-subtitle {
    margin-top: 0.85rem;
    font-size: var(--t-body);
    color: var(--text-light);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: grid;
    gap: 2rem;
}

.legal-section {
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border: 1px solid rgba(10, 37, 64, 0.08);
    box-shadow: 0 18px 36px rgba(10, 37, 64, 0.06);
}

.legal-section h2 {
    font-size: var(--t-title);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-section p {
    font-size: var(--t-body);
    color: var(--text-light);
    line-height: 1.65;
}

.legal-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-light);
}

.legal-list li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-meta {
    font-size: var(--t-body-sm);
    color: rgba(11, 34, 52, 0.6);
}

.legal-note {
    margin-top: 1.2rem;
    margin-bottom: 2.25rem;
    font-size: var(--t-body);
    color: rgba(11, 34, 52, 0.78);
    line-height: 1.65;
}

.legal-back {
    max-width: 860px;
    margin: 2rem auto 0;
    padding: 0 var(--spacing-sm);
}

.legal-back-link {
    width: fit-content;
    font-size: var(--t-ui);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(11, 34, 52, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 34, 52, 0.3);
    padding-bottom: 0.2rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-block;
}

.legal-back-link:hover {
    color: rgba(11, 34, 52, 1);
    border-color: rgba(11, 34, 52, 0.6);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    margin-left: 2rem;
}

.legal-links a:hover {
    color: white;
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(10, 37, 64, 0.12);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
    }

    .nav-container {
        justify-content: space-between;
        position: relative;
    }

    .nav-links a {
        padding: 0.6rem 0.5rem;
    }

    .nav-bar.nav-open .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .spec-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .legal-links a {
        margin: 0 1rem;
    }
}
/* ========================================
   HERO TWEAKS
   Keep text above the device in image2.png
   ======================================== */

.hero-overlay {
    align-items: flex-start;
    padding-top: clamp(1.5rem, 5vh, 3rem);
    height: 100vh;
    min-height: 100vh;
}

.hero-bg-image {
    /* Move the device lower so the hero text doesn't cover it */
    object-position: center 52%;
    filter: brightness(0.85) contrast(1.05) saturate(1.05);
}

.hero-content-overlay {
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 980px;
    position: relative;
}

.hero-stage {
    position: absolute;
    inset: 0;
    z-index: 10;
    place-items: center;
    background: radial-gradient(1100px 620px at 50% 45%, rgba(255, 77, 0, 0.08), rgba(0, 0, 0, 0) 60%), #05070c;
    opacity: 1;
    transition: opacity 1200ms ease;
    display: grid;
}

.hero-stage-brand {
    font-size: clamp(4.25rem, 10vw, 8.5rem);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: white;
    text-shadow:
        0 0 18px rgba(255, 77, 0, 0.35),
        0 0 60px rgba(255, 77, 0, 0.18),
        0 24px 80px rgba(0, 0, 0, 0.85);
}

.hero-fly {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    will-change: transform, opacity, filter;
    transform-origin: center center;
}

.hero-fly-cloud {
    font-size: clamp(2.6rem, 5.6vw, 4.35rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: var(--accent-color);
    white-space: nowrap;
    text-align: center;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
    text-shadow:
        0 0 18px rgba(255, 77, 0, 0.35),
        0 0 60px rgba(255, 77, 0, 0.18),
        0 24px 80px rgba(0, 0, 0, 0.85);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-stage {
    display: grid;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-bg-image {
    opacity: 0;
    transition: opacity 1400ms ease;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-content-overlay {
    opacity: 0;
    transform: translateY(10px);
    transition: transform 850ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 650ms ease;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-bg .hero-bg-image {
    opacity: 1;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-content .hero-content-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-stageout .hero-stage {
    opacity: 0;
    pointer-events: none;
}

.hero-headline {
    transform: translateY(0);
    margin-top: clamp(2rem, 5vh, 3rem);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-line {
    display: block;
    opacity: 0;
    transform: translateY(18px);
    transition: transform 650ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 450ms ease;
    will-change: transform, opacity;
}

.hero-title {
    font-size: clamp(2.6rem, 5.6vw, 4.35rem);
    margin-bottom: 0.95rem;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    margin-bottom: 1.85rem;
}

.hero-line {
    display: block;
}

.hero-highlight {
    color: var(--accent-color);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions-pill {
    position: absolute;
    right: clamp(1rem, 4vw, 3rem);
    bottom: clamp(1rem, 5vh, 3rem);
    justify-content: flex-end;
    z-index: 3;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-actions-pill {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 1200ms ease 500ms, transform 1200ms ease 500ms;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-stageout .hero-actions-pill {
    opacity: 1;
    transform: translateY(0);
}

.hero-actions-top-anim {
    opacity: 0;
    transition: opacity 420ms ease;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-actions-top-anim {
    opacity: 0;
    will-change: opacity;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cta .hero-actions-top-anim {
    opacity: 1;
}
.price-pill,
.hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px;
    border-radius: 999px;
    background: rgba(24, 24, 26, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.price-text,
.hero-price-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 0.9rem 0 1.05rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.price-cta,
.hero-buy {
    border-radius: 999px;
    padding: 0.45rem 1.35rem;
    font-size: 0.95rem;
    min-height: 36px;
    line-height: 1;
    box-shadow: none;
    background-clip: padding-box;
}

.hero-subtitle-anim {
    transform-origin: center top;
    transition: transform 750ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 420ms ease;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"] .hero-subtitle-anim {
    opacity: 0;
    transform: translateY(4px);
    will-change: transform, opacity;
}


@media (max-width: 768px) {
    .hero-actions-pill {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(1rem + env(safe-area-inset-bottom));
        margin-top: 0;
        padding: 0 1rem;
        justify-content: center;
    }

    .price-pill,
    .hero-price-pill {
        width: auto;
        max-width: 90vw;
    }

    .price-cta,
    .hero-buy {
        min-height: 44px;
        padding: 0.55rem 1.2rem;
        font-size: 1rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    .hero-stage,
    .hero-overlay[data-hero-seq="cinematic"] .hero-bg-image,
    .hero-overlay[data-hero-seq="cinematic"] .hero-content-overlay,
    .hero-overlay[data-hero-seq="cinematic"] .hero-line,
    .hero-subtitle-anim,
    .hero-fly {
        transition: none !important;
    }
}

/* ========================================
   Story Panels (Scroll)
   ======================================== */

.story-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.story-content-inner {
    max-width: 920px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.story-text {
    font-size: clamp(1.75rem, 3.1vw, 3.25rem);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    text-wrap: balance;
}

.story-subline {
    margin-top: 0.85rem;
    font-size: var(--t-body-sm);
    line-height: 1.5;
    color: rgba(11, 34, 52, 0.6);
}

.story-panel {
    position: relative;
    overflow: hidden;
}

.story-panel-sticky {
    position: static;
    height: auto;
    display: block;
}

.story-panel--intro {
    height: auto;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.story-panel--intro .story-panel-sticky {
    padding: clamp(4rem, 12vh, 8rem) 0 var(--story-gap);
}

.story-panel--intro .story-content {
    width: 100%;
}

.story-panel--intro .story-content-inner {
    padding: clamp(2.5rem, 6vh, 4.5rem) var(--story-text-inset);
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.08);
    max-width: var(--story-box-width);
}

.story-panel--focus {
    height: auto;
    background: #081a2b;
}

.story-panel-wrap {
    position: static;
    height: auto;
    margin-top: 0;
    background: #081a2b;
}

.story-panel-wrap--light {
    background: var(--bg-light);
}

.story-panel--light {
    background: var(--bg-light);
}

.story-surface {
    position: relative;
    width: 100%;
    height: auto;
    background: #081a2b;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    will-change: transform;
}

.story-panel--light .story-surface {
    background: var(--bg-light);
    border-top-color: rgba(10, 37, 64, 0.08);
}

.story-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 12% 70%, rgba(255, 77, 0, 0.22), rgba(255, 77, 0, 0) 62%),
        radial-gradient(1100px 700px at 80% 20%, rgba(10, 37, 64, 0.35), rgba(10, 37, 64, 0) 60%),
        linear-gradient(180deg, #081a2b, #081a2b);
    opacity: 1;
    pointer-events: none;
}

.story-panel--light .story-surface::before {
    display: none;
}

.story-panel--focus .story-content {
    width: 100%;
    position: relative;
    height: auto;
}

.story-panel--focus .story-content-inner {
    padding-top: var(--story-gap);
    padding-bottom: var(--story-gap);
    max-width: var(--story-box-width);
    padding-left: var(--story-text-inset);
    padding-right: var(--story-text-inset);
}

.story-headline {
    transform: none;
    opacity: 1;
}

.story-kicker {
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: var(--t-small);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1rem;
}

.story-panel--light .story-kicker {
    color: rgba(11, 34, 52, 0.7);
}

.story-display {
    font-size: var(--t-display-2);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--primary-color);
    max-width: 980px;
    text-wrap: balance;
}


.gradient-text {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 77, 0, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.story-text-inline {
    margin-top: clamp(1.75rem, 5vh, 3rem);
    transform: none;
}

.story-text-inline-copy {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.story-panel--focus .story-text {
    color: rgba(255, 255, 255, 0.92);
}

.story-panel--light .story-text {
    color: rgba(11, 34, 52, 0.82);
}

.gradient-signature {
    background-image: var(--gradient-signature);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@supports (-webkit-text-fill-color: transparent) {
    .info-title.gradient-signature {
        background-image: var(--gradient-prism);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.gradient-light {
    background-image: var(--gradient-hero-light);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .story-text {
        font-size: 1.65rem;
        line-height: 1.16;
        letter-spacing: -0.02em;
    }

    .story-text-inline-copy {
        font-size: 1.25rem;
        line-height: 1.25;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-panel--intro .story-text,
    .story-surface,
    .story-surface::before {
        transition: none;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ========================================
   Box Stack
   ======================================== */

.box-stack {
    background:
        linear-gradient(180deg, #081a2b 0%, rgba(11, 17, 24, 0) 16%),
        var(--bg-dark-metal);
    padding: var(--story-gap) 0 clamp(3.5rem, 7vw, 6.5rem);
}

.box-stack-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.box {
    max-width: var(--story-box-width);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) var(--story-text-inset);
    background: var(--bg-dark);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.box + .box {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.box:nth-child(2) {
    background: var(--bg-dark-metal);
    border-color: rgba(255, 255, 255, 0.12);
}

.box-head {
    margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.box-kicker {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: var(--t-small);
    text-transform: uppercase;
}

.box-display {
    color: #f3f7fb;
    text-transform: none;
    font-size: var(--t-display-2);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.035em;
}

@supports (-webkit-text-fill-color: transparent) {
    .box-display {
        background: var(--gradient-hero-dark);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.box-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(236, 242, 248, 0.82);
    max-width: 820px;
    margin: 0;
}

.box-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.75rem;
    align-items: center;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: rgba(236, 242, 248, 0.7);
}

.box-tag {
    display: inline-flex;
    align-items: center;
    font-size: var(--t-small);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gradient-prism);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 6px 18px rgba(255, 77, 0, 0.25);
}

.box-cta {
    margin-left: auto;
}

.box-cta.button--plain-dark {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .box {
        padding: clamp(2rem, 6vw, 2.75rem);
        border-radius: 22px;
    }

    .box-body {
        font-size: 1rem;
        line-height: 1.6;
    }

    .box-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .box-cta {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding-top: 3rem;
        padding-bottom: clamp(4.5rem, 16vh, 7rem);
        height: 100vh;
        min-height: 100vh;
    }

    .hero-bg-image {
        top: 0;
        height: 100%;
        object-position: center 50%;
    }

    .hero-content-overlay {
        padding: 0 1.25rem;
    }

    .hero-stage-brand {
        font-size: 3.75rem;
    }

    .hero-title {
        font-size: 2.15rem;
    }
}

/* Cinematic sequence states */
.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-line1 .hero-line-1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-line2 .hero-line-2 {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}


/* Cloud appears where Indiebox was (center stage), then FLIPs to the final line-2 position */
.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud .hero-fly {
    opacity: 1;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud .hero-fly-cloud {
    transform: scale(2);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud-active .hero-line-2 {
    opacity: 0 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud-move .hero-fly-cloud {
    transform: scale(1);
    transition: transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud-move .hero-fly {
    --cloud-dx: 0px;
    --cloud-dy: 0px;
    transform:
        translate(calc(-50% + var(--cloud-dx)), calc(-50% + var(--cloud-dy)));
    transition: transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 420ms ease;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cloud-done .hero-fly-cloud {
    opacity: 0;
    transition: none;
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-subtitle-in .hero-subtitle-anim {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-subtitle-settle .hero-subtitle-anim {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay.hero-seq-on[data-hero-seq="cinematic"].hero-seq-cta .hero-actions-top-anim {
    opacity: 1;
}
