        /* home.css - inherits :root vars from styles.css */
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { 
            scroll-behavior: smooth;
            font-size: 16px;
            background: #0a0a0a; /* Match hero for no flash */
        }
        
        html, body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-body);
            background: var(--ivory);
            color: var(--ink);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
            min-height: 100dvh;
        }

        /* ═══════════════════════════════════════════════════════════════
           INTRICATE SAIL GEOMETRIC PATTERN - SVG MASTERPIECE
           Triangular sails, compass roses, longitude lines
        ═══════════════════════════════════════════════════════════════ */
        .pattern-layer {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        
        .pattern-svg {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            opacity: 0.04;
            will-change: transform;
        }
        
        .pattern-overlay {
            display: none;
        }
        
        .pattern-overlay.visible {
            display: none;
        }
        
        /* Noise texture overlay - removed */
        .noise {
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0;
            pointer-events: none;
            z-index: 2;
            transition: opacity 0.3s ease;
        }
        
        .noise.visible {
            opacity: 0.025;
        }

        /* ═══════════════════════════════════════════════════════════════
           NAVIGATION - Understated Luxury
        ═══════════════════════════════════════════════════════════════ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.6s var(--ease-out-expo);
            mix-blend-mode: normal;
        }
        
        /* Nav starts transparent on dark hero */
        nav:not(.scrolled) {
            background: transparent;
        }
        
        nav:not(.scrolled) .logo {
            opacity: 1;
        }
        
        nav:not(.scrolled) .logo .logo-dark {
            display: none;
        }
        
        nav:not(.scrolled) .logo .logo-light {
            display: block;
        }
        
        nav:not(.scrolled) .nav-links a {
            color: rgba(255,255,255,0.85);
        }
        
        nav:not(.scrolled) .nav-dropdown-trigger {
            color: rgba(255,255,255,0.85);
        }
        
        nav:not(.scrolled) .nav-dropdown:hover .nav-dropdown-trigger {
            color: #ffffff;
        }
        
        nav:not(.scrolled) .nav-links a:hover {
            color: #ffffff;
        }
        
        nav:not(.scrolled) .nav-links a:not(.btn-nav)::after {
            background: #ffffff;
        }
        
        nav:not(.scrolled) .btn-nav {
            background: transparent;
            border-color: rgba(255,255,255,0.5);
            color: #ffffff !important;
        }
        
        nav:not(.scrolled) .btn-nav:hover {
            background: #ffffff;
            color: #0a0a0a !important;
        }
        
        nav.scrolled {
            background: rgba(255, 254, 248, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0,0,0,0.06);
        }
        
        nav.scrolled .logo .logo-dark {
            display: block;
        }
        
        nav.scrolled .logo .logo-light {
            display: none;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 36px;
            width: auto;
        }
        
        .logo::after {
            display: none;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-links a {
            font-family: var(--font-ui);
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--slate);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }
        
        .nav-links a:not(.btn-nav)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--ink);
            transition: width 0.4s var(--ease-out-expo);
        }
        
        .nav-links a:not(.btn-nav):hover {
            color: var(--ink);
        }
        
        .nav-links a:not(.btn-nav):hover::after {
            width: 100%;
        }
        
        /* Navigation Dropdowns */
        .nav-dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .nav-dropdown-trigger {
            cursor: pointer;
            font-family: var(--font-ui);
            font-size: 0.72rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--slate);
        }
        
        .nav-dropdown-trigger::after {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            margin-left: 6px;
            transition: transform 0.3s ease;
        }
        
        .nav-dropdown:hover .nav-dropdown-trigger::after {
            transform: rotate(-135deg) translateY(-2px);
        }
        
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 180px;
            background: rgba(255, 254, 248, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 12px 0;
            z-index: 1001;
        }
        
        nav:not(.scrolled) .nav-dropdown-menu {
            background: rgba(10, 10, 10, 0.95);
        }
        
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .nav-dropdown-menu a {
            display: block !important;
            padding: 10px 24px;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            white-space: nowrap;
        }
        
        .nav-dropdown-menu a::after {
            display: none !important;
        }
        
        nav:not(.scrolled) .nav-dropdown-menu a {
            color: rgba(255,255,255,0.85);
        }
        
        nav:not(.scrolled) .nav-dropdown-menu a:hover {
            color: #ffffff;
            background: rgba(255,255,255,0.08);
        }
        
        nav.scrolled .nav-dropdown-menu a:hover {
            color: var(--ink);
            background: var(--cream);
        }
        
        .dropdown-divider {
            height: 1px;
            margin: 8px 16px;
            background: rgba(0,0,0,0.08);
        }
        
        nav:not(.scrolled) .dropdown-divider {
            background: rgba(255,255,255,0.15);
        }
        
        /* Mobile hamburger */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }
        
        .nav-toggle span {
            width: 22px;
            height: 2px;
            background: var(--ink);
            transition: all 0.3s ease;
        }
        
        nav:not(.scrolled) .nav-toggle span {
            background: #ffffff;
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        .btn-nav {
            background: var(--ink);
            color: var(--ivory) !important;
            padding: 10px 24px;
            font-family: var(--font-ui);
            font-weight: 500;
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 1px solid var(--ink);
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .btn-nav:hover {
            background: var(--ivory);
            color: var(--ink) !important;
        }

        /* ═══════════════════════════════════════════════════════════════
           HERO - Clean dark section with background image
        ═══════════════════════════════════════════════════════════════ */
        .hero {
            height: 100vh;
            height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 48px;
            position: relative;
            z-index: 10;
            overflow: visible;
        }
        
        /* Background image layer */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }
        
        .hero-bg img,
        .hero-bg video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1);
            animation: heroZoom 150s linear forwards;
        }
        
        @keyframes heroZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }
        
        /* Dark overlay for text readability */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: rgba(0, 0, 0, 0.5);
            pointer-events: none;
        }
        
        .hero::before {
            display: none;
        }
        
        @keyframes sunriseGlow {
            0% { opacity: 0; transform: translateX(-50%) translateY(30px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        
        .hero-content {
            position: relative;
            z-index: 5;
            margin-top: -200px;
        }
        
        /* Main headline - DRAMATIC SUNRISE ANIMATION */
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(7rem, 18vw, 15rem);
            font-weight: 600;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin: 0;
            position: relative;
        }
        
        .hero h1 .line {
            display: block;
            overflow: visible; /* Allow letters to show fully */
        }
        
        .hero h1 .line-inner {
            display: block;
            /* Smooth entrance - use clip-path for reveal instead */
            transform: translateY(0);
            opacity: 0;
            /* Start white, animate to warm orange glow */
            color: #ffffff;
            animation: headlineEnter 2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
                       headlineGlow 3s ease-out 1.5s forwards;
        }
        
        .hero h1 .line:nth-child(1) .line-inner { animation-delay: 0.2s, 1.7s; }
        
        @keyframes headlineEnter {
            0% { 
                transform: translateY(30%);
                opacity: 0;
            }
            100% { 
                transform: translateY(0%);
                opacity: 1;
            }
        }
        
        @keyframes headlineGlow {
            0% {
                color: #ffffff;
                text-shadow: none;
            }
            50% {
                color: #ffe4b5;
                text-shadow: 0 0 30px rgba(255, 180, 100, 0.4);
            }
            100% {
                color: #ffd699;
                text-shadow: 0 0 40px rgba(255, 160, 80, 0.3),
                             0 0 80px rgba(255, 140, 60, 0.15);
            }
        }
        /* Subtle glow pulse */
        .hero h1 {
            animation: none;
        }
            50% {
                filter: drop-shadow(0 0 40px rgba(255, 180, 80, 0.5)) drop-shadow(0 0 80px rgba(255, 140, 50, 0.2));
            }
        }
        
        .hero-supertitle {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.5);
        }
        
        .hero-tagline {
            font-family: 'Lato', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            font-style: normal;
            text-transform: none;
            letter-spacing: 0.04em;
            color: #ffffff;
            margin-top: 28px;
            opacity: 0.92;
        }
        
        /* BEYOND text - warm orange glow matching hero headline */
        .beyond-text {
            font-weight: 800;
            position: relative;
            display: inline;
            color: #ffd699;
            text-shadow: 0 0 40px rgba(255, 160, 80, 0.3),
                         0 0 80px rgba(255, 140, 60, 0.15);
            animation: beyondGlow 4s ease-in-out infinite alternate;
        }
        
        @keyframes beyondGlow {
            0% {
                color: #ffd699;
                text-shadow: 0 0 40px rgba(255, 160, 80, 0.3),
                             0 0 80px rgba(255, 140, 60, 0.15);
            }
            100% {
                color: #ffe4b5;
                text-shadow: 0 0 30px rgba(255, 180, 100, 0.4),
                             0 0 60px rgba(255, 140, 60, 0.2);
            }
        }
        
        .hero-desc {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(0.7rem, 1.4vw, 0.95rem);
            font-weight: 500;
            color: #ffffff;
            max-width: 90%;
            margin: 28px auto 0;
            line-height: 1.6;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-desc-secondary {
            margin-top: 12px;
            font-style: italic;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            margin-top: 48px;
            /* Buttons visible immediately */
            opacity: 1;
        }
        
        /* Editorial columns - FIXED position, parallax via JS */
        .hero-editorial {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0 24px;
            z-index: 999; /* High z-index to stay above everything */
            transform: translateY(25%); /* Moved up - closer to intro line */
        }
        
        .hero-editorial .editorial-header {
            max-width: 1400px;
            margin: 0 auto 32px;
            text-align: left;
            transition: color 0.1s ease, text-shadow 0.1s ease;
        }
        
        .hero-editorial .editorial-header .line1 {
            font-family: var(--font-body);
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.5;
            display: block;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            letter-spacing: 0.01em;
        }
        
        .hero-editorial .editorial-header .line2 {
            font-family: var(--font-body);
            font-size: 1.15rem;
            font-weight: 400;
            font-style: italic;
            color: rgba(255,255,255,0.85);
            line-height: 1.5;
            display: block;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-editorial .editorial-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .hero-editorial .editorial-col p {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.7;
            margin-bottom: 18px;
            text-align: left;
            letter-spacing: 0.01em;
            text-shadow: 0 2px 6px rgba(0,0,0,0.5);
            transition: color 0.1s ease, text-shadow 0.1s ease;
        }
        
        .hero-subline {
            font-size: 1rem;
            opacity: 0.85;
            margin-top: 1rem;
            color: var(--ivory);
        }

        .hero-editorial .editorial-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-editorial .editorial-col p:last-child {
            margin-bottom: 0;
        }
        
        .hero-editorial .editorial-col .hl {
            color: inherit;
            font-weight: 600;
        }
        
        .hero-editorial .editorial-col .ul {
            text-decoration: underline;
            text-decoration-color: currentColor;
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
        }
        
        /* Buttons on dark background - TEXT STYLE */
        .hero .btn-primary {
            background: transparent;
            border: none;
            color: #ffffff;
            padding: 12px 0;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 1px;
        }
        
        .hero .btn-primary::before {
            display: none;
        }
        
        .hero .btn-primary:hover {
            color: #ffd700;
            border: none;
            text-decoration-color: #ffd700;
        }
        
        .hero .btn-ghost {
            background: transparent;
            border: none;
            color: #aaaaaa;
            padding: 12px 0;
        }
        
        .hero .btn-ghost::before {
            display: none;
        }
        
        .hero .btn-ghost:hover {
            color: #ffffff;
            border: none;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           BUTTONS - Refined Elegance
        ═══════════════════════════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: var(--font-ui);
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            text-decoration: none;
            padding: 14px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--ink);
            color: var(--ivory);
            border: 1px solid var(--ink);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--crimson);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.6s var(--ease-out-expo);
            z-index: -1;
        }
        
        .btn-primary:hover {
            border-color: var(--crimson);
        }
        
        .btn-primary:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .btn-ghost {
            background: transparent;
            color: var(--ink);
            border: 1px solid var(--charcoal);
        }
        
        .btn-ghost::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--ink);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.5s var(--ease-out-expo);
            z-index: -1;
        }
        
        .btn-ghost:hover {
            color: var(--ivory);
            border-color: var(--ink);
        }
        
        .btn-ghost:hover::before {
            transform: scaleY(1);
            transform-origin: top;
        }
        
        .btn svg {
            width: 14px;
            height: 14px;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        .btn:hover svg {
            transform: translateX(4px);
        }

        /* ═══════════════════════════════════════════════════════════════
           EDITORIAL SECTION - Space for parallax columns to land
        ═══════════════════════════════════════════════════════════════ */
        .editorial-section {
            padding: 280px 24px 32px; /* Reduced top and bottom padding */
            position: relative;
            z-index: 1; /* Low - fixed columns are above */
            background: var(--ivory);
        }
        
        /* Stats in editorial section don't need extra top margin - padding handles it */
        .editorial-section .stats-row {
            margin-top: 0;
            padding-top: 48px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        
        .editorial-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .editorial-header {
            text-align: center;
            margin-bottom: 0;
        }
        
        .section-label {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--ink);
        }
        
        .editorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            padding-top: 0;
            border-top: none;
        }
        
        .editorial-col p {
            font-size: 1rem;
            color: var(--graphite);
            line-height: 1.9;
            margin-bottom: 24px;
        }
        
        .editorial-col p:last-child {
            margin-bottom: 0;
        }
        
        .editorial-col .hl {
            color: var(--ink);
            font-weight: 500;
        }
        
        .editorial-col .ul {
            text-decoration: underline;
            text-decoration-color: var(--gold);
            text-underline-offset: 3px;
            text-decoration-thickness: 1px;
        }
        
        /* Stats row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 80px;
            padding-top: 48px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 400;
            color: var(--ink);
            letter-spacing: -0.02em;
        }
        
        .stat-label {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--silver);
            margin-top: 8px;
        }

        /* ═══════════════════════════════════════════════════════════════
           PRODUCT GRID (inside editorial-section)
        ═══════════════════════════════════════════════════════════════ */
        .product-grid {
            max-width: 1500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(0,0,0,0.08);
        }

        .product-card {
            padding: 36px 28px;
            position: relative;
        }

        .product-card.live {
            background: #fff;
        }

        .product-card.coming-soon {
            background: var(--ivory);
        }

        .product-card .tag {
            position: absolute;
            top: 16px;
            right: 16px;
            font-family: var(--font-ui);
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 4px 8px;
        }

        .product-card .tag.live {
            background: var(--gold);
            color: var(--ink);
        }

        .product-card .tag.coming-soon {
            background: transparent;
            border: 1px solid var(--silver);
            color: var(--silver);
            font-weight: 600;
        }

        .product-card .category {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 8px;
        }

        .product-card.live .category {
            color: var(--gold);
        }

        .product-card.coming-soon .category {
            color: var(--slate);
        }

        .product-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--ink);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .product-card.coming-soon h3,
        .product-card.coming-soon .desc,
        .product-card.coming-soon .feature-list {
            opacity: 0.6;
        }

        .product-card .desc {
            font-size: 0.8rem;
            color: var(--slate);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .product-card .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.8rem;
            line-height: 2;
        }

        .product-card.live .feature-list {
            color: var(--graphite);
        }

        .product-card.coming-soon .feature-list {
            color: var(--slate);
        }

        .product-card .feature-list li {
            padding-left: 18px;
            position: relative;
        }

        .product-card .feature-list .bullet {
            position: absolute;
            left: 0;
        }

        .product-card.live .feature-list .bullet {
            color: var(--gold);
        }

        /* ═══════════════════════════════════════════════════════════════
           EXAMPLE OFFERING SECTION
        ═══════════════════════════════════════════════════════════════ */
        .example-section {
            background: #fff;
            padding: 60px 24px;
            position: relative;
            z-index: 10;
        }

        .example-container {
            max-width: 1500px;
            margin: 0 auto;
        }

        .section-header.center {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .section-title {
            margin-top: 12px;
        }

        .example-bond {
            background: var(--ivory);
            border: 1px solid rgba(0,0,0,0.06);
            position: relative;
        }

        .bond-meta-header {
            display: flex;
            justify-content: flex-end;
            padding: 12px 32px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .meta-label {
            font-size: 0.75rem;
            color: var(--silver);
            font-style: italic;
        }

        .bond-content {
            padding: 40px 32px;
        }

        .bond-main-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 48px;
        }

        .bond-title-block h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--ink);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .bond-title-block .sub {
            font-size: 0.9rem;
            color: var(--slate);
            margin-bottom: 32px;
        }

        .bond-specs {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .spec-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .spec-item .label {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--slate);
            margin-bottom: 6px;
        }

        .spec-item .value {
            font-size: 1rem;
            color: var(--ink);
            font-weight: 500;
        }

        .profit-share-box {
            background: linear-gradient(135deg, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.06) 100%);
            border: 1px solid var(--gold);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .profit-share-box .tag {
            background: var(--gold);
            color: var(--ink);
            font-family: var(--font-ui);
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 6px 10px;
            position: static;
        }

        .profit-share-box .text {
            font-size: 0.95rem;
            color: var(--ink);
            font-weight: 500;
        }

        .bond-sidebar {
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            padding: 28px;
            display: flex;
            flex-direction: column;
        }

        .raise-amount {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .raise-amount .label {
            font-family: var(--font-ui);
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--slate);
            margin-bottom: 8px;
        }

        .raise-amount .value {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--ink);
            letter-spacing: -0.02em;
        }

        .unit-price {
            text-align: center;
            padding-top: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .unit-price .label {
            font-family: var(--font-ui);
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--slate);
            margin-bottom: 8px;
        }

        .unit-price .value {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--ink);
        }

        .unit-price .sub {
            font-size: 0.8rem;
            color: var(--silver);
            margin-top: 8px;
            font-style: italic;
        }

        .bond-footer {
            margin-top: 32px;
            padding-top: 28px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        .bond-footer > .label {
            font-family: var(--font-ui);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--slate);
            margin-bottom: 16px;
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .badge {
            padding: 8px 14px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.08);
            font-size: 0.8rem;
            color: var(--graphite);
        }

        /* ═══════════════════════════════════════════════════════════════
           FEATURES SECTION
        ═══════════════════════════════════════════════════════════════ */
        .features-section {
            padding: 80px 24px;
            background: var(--ivory);
            position: relative;
            z-index: 10;
        }
        
        .features-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .features-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .features-header .section-title {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.06);
        }
        
        .feature-card {
            background: var(--cream);
            padding: 40px 32px;
            position: relative;
            transition: all 0.5s var(--ease-out-expo);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 32px;
            right: 32px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--ease-out-expo);
        }
        
        .feature-card:hover {
            background: var(--ivory);
        }
        
        .feature-card:hover::after {
            transform: scaleX(1);
        }
        
        .feature-icon {
            font-size: 1.8rem;
            margin-bottom: 24px;
            display: block;
        }
        
        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 12px;
        }
        
        .feature-card p {
            font-size: 0.9rem;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════════
           STRUCTURE SECTION
        ═══════════════════════════════════════════════════════════════ */
        .structure-section {
            padding: 80px 24px;
            background: var(--ivory);
            position: relative;
            z-index: 10;
        }
        
        .structure-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .structure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .structure-content .section-desc {
            font-size: 1.05rem;
            color: var(--graphite);
            line-height: 1.8;
            margin-top: 20px;
        }
        
        .structure-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .structure-card {
            background: var(--ivory);
            border: 1px solid rgba(0,0,0,0.08);
            padding: 28px 32px;
            position: relative;
            transition: all 0.4s var(--ease-out-expo);
            cursor: default;
        }
        
        .structure-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        .structure-card:hover {
            border-color: rgba(0,0,0,0.15);
            transform: translateX(8px);
        }
        
        .structure-card:hover::before {
            transform: scaleY(1);
        }
        
        .structure-card h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 8px;
        }
        
        .structure-card p {
            font-size: 0.9rem;
            color: var(--slate);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════════
           FEES SECTION
        ═══════════════════════════════════════════════════════════════ */
        .fees-section {
            padding: 80px 24px;
            background: #fff;
            position: relative;
            z-index: 10;
        }
        
        .fees-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .fees-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .fees-content .section-desc {
            font-size: 1.05rem;
            color: var(--graphite);
            line-height: 1.8;
            margin-top: 20px;
        }
        
        .fee-table {
            border: 1px solid rgba(0,0,0,0.1);
            background: var(--ivory);
        }
        
        .fee-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 32px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: background 0.3s ease;
        }
        
        .fee-row:last-child {
            border-bottom: none;
        }
        
        .fee-row:hover {
            background: var(--cream);
        }
        
        .fee-row .label {
            font-family: var(--font-ui);
            font-size: 0.85rem;
            color: var(--slate);
        }
        
        .fee-row .value {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--ink);
        }
        
        .fee-note {
            margin-top: 20px;
            padding: 20px 24px;
            background: var(--ink);
            color: var(--ivory);
            font-size: 0.85rem;
            line-height: 1.6;
        }
        
        .fee-note strong {
            color: var(--gold);
        }

        /* ═══════════════════════════════════════════════════════════════
           FEES SUMMARY & HIGHLIGHTS
        ═══════════════════════════════════════════════════════════════ */
        .fees-summary {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .fee-highlight {
            background: var(--cream);
            padding: 24px;
            text-align: center;
        }

        .fee-highlight .value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ink);
        }

        .fee-highlight .value.green {
            color: #38a169;
        }

        .fee-highlight .label {
            font-size: 0.9rem;
            color: var(--slate);
        }

        .gold-link {
            color: var(--gold);
            text-decoration: underline;
        }

        .link-p {
            margin-top: 1rem;
        }

        .icon-wrapper {
            display: block;
        }

        .icon-wrapper svg {
            width: 32px;
            height: 32px;
            color: var(--gold);
        }

        /* ═══════════════════════════════════════════════════════════════
           GLOBAL/TRADFI BRIDGE SECTION
        ═══════════════════════════════════════════════════════════════ */
        .global-section {
            padding: 80px 24px;
            background: #fff;
            position: relative;
            z-index: 10;
        }
        
        .global-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        
        .global-card {
            border: 1px solid rgba(0,0,0,0.1);
            padding: 64px;
            background: var(--ivory);
            position: relative;
        }
        
        .global-card::before,
        .global-card::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold);
        }
        
        .global-card::before {
            top: -1px;
            left: -1px;
            border-right: none;
            border-bottom: none;
        }
        
        .global-card::after {
            bottom: -1px;
            right: -1px;
            border-left: none;
            border-top: none;
        }
        
        .global-card .section-title {
            margin-bottom: 16px;
        }
        
        .global-card > p {
            font-size: 1rem;
            color: var(--graphite);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .global-stats {
            display: flex;
            justify-content: center;
            gap: 64px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.08);
        }
        
        .global-stat .value {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--ink);
        }
        
        .global-stat .label {
            font-family: var(--font-ui);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--silver);
            margin-top: 4px;
        }

        /* ═══════════════════════════════════════════════════════════════
           AUDIENCE SECTIONS (For Brokers, For Trust Companies)
        ═══════════════════════════════════════════════════════════════ */
        .audience-section {
            padding: 100px 48px;
            position: relative;
            z-index: 10;
        }
        
        .audience-section.broker-section {
            background: var(--navy);
        }
        
        .audience-section.trust-section {
            background: var(--cream);
        }
        
        .audience-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .audience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .audience-content .section-label {
            color: var(--gold);
        }
        
        .broker-section .section-title,
        .broker-section .section-desc {
            color: var(--ivory);
        }
        
        .broker-section .audience-content .section-desc {
            color: rgba(255,255,255,0.8);
        }
        
        .audience-content .section-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-top: 20px;
        }
        
        .audience-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .audience-feature {
            padding: 24px 28px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.03);
            position: relative;
            transition: all 0.4s var(--ease-out-expo);
        }
        
        .trust-section .audience-feature {
            background: var(--ivory);
            border: 1px solid rgba(0,0,0,0.08);
        }
        
        .audience-feature::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s var(--ease-out-expo);
        }
        
        .audience-feature:hover {
            transform: translateX(8px);
        }
        
        .audience-feature:hover::before {
            transform: scaleY(1);
        }
        
        .audience-feature h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 500;
            margin-bottom: 6px;
        }
        
        .broker-section .audience-feature h4 {
            color: var(--ivory);
        }
        
        .trust-section .audience-feature h4 {
            color: var(--ink);
        }
        
        .audience-feature p {
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        .broker-section .audience-feature p {
            color: rgba(255,255,255,0.7);
        }
        
        .trust-section .audience-feature p {
            color: var(--slate);
        }
        
        .commission-highlight {
            margin-top: 32px;
            padding: 24px;
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid var(--gold);
            text-align: center;
        }
        
        .commission-highlight .value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--gold);
            display: block;
        }
        
        .commission-highlight .label {
            font-family: var(--font-ui);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
            display: block;
        }

        /* ═══════════════════════════════════════════════════════════════
           CTA SECTION
        ═══════════════════════════════════════════════════════════════ */
        .cta-section {
            padding: 140px 48px;
            background: var(--ink);
            position: relative;
            z-index: 10;
            text-align: center;
            overflow: hidden;
        }
        
        /* Decorative diagonal lines */
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: rotate(-3deg);
        }
        
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--ivory);
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            color: var(--silver);
            margin-bottom: 48px;
        }
        
        .cta-section .btn-primary {
            background: var(--ivory);
            color: var(--ink);
            border-color: var(--ivory);
        }
        
        .cta-section .btn-primary::before {
            background: var(--gold);
        }
        
        .cta-section .btn-primary:hover {
            color: var(--ink);
            border-color: var(--gold);
        }

        /* ═══════════════════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════════════════ */
        footer {
            padding: 80px 48px 40px;
            background: var(--ivory);
            border-top: 1px solid rgba(0,0,0,0.08);
            position: relative;
            z-index: 10;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-brand .logo {
            font-size: 1.4rem;
        }
        
        .footer-brand p {
            font-size: 0.9rem;
            color: var(--slate);
            margin-top: 12px;
            line-height: 1.6;
        }
        
        .footer-col h4 {
            font-family: var(--font-ui);
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--silver);
            margin-bottom: 20px;
        }
        
        .footer-col a {
            display: block;
            font-size: 0.9rem;
            color: var(--slate);
            text-decoration: none;
            padding: 6px 0;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--ink);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            font-family: var(--font-ui);
            font-size: 0.7rem;
            color: var(--silver);
            letter-spacing: 0.02em;
        }

        /* ═══════════════════════════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .feature-grid { grid-template-columns: repeat(2, 1fr); }
            .bond-main-grid { grid-template-columns: 1fr; gap: 32px; }
            .structure-grid, .fees-grid { grid-template-columns: 1fr; gap: 48px; }
            .audience-grid { grid-template-columns: 1fr; gap: 48px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            nav { padding: 20px 24px; }
            
            .nav-toggle {
                display: flex;
            }
            
            .nav-links.nav-collapse {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--ivory);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 100px 32px 40px;
                gap: 0;
                transition: right 0.4s var(--ease-out-expo);
                box-shadow: -20px 0 60px rgba(0,0,0,0.15);
            }
            
            .nav-links.nav-collapse.active {
                right: 0;
            }
            
            .nav-links.nav-collapse a,
            .nav-links.nav-collapse .nav-dropdown-trigger {
                color: var(--ink) !important;
                padding: 14px 0;
                width: 100%;
                font-size: 0.85rem;
            }
            
            .nav-dropdown {
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.06);
            }
            
            .nav-dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background: transparent !important;
                backdrop-filter: none;
                padding: 0 0 12px 16px;
                display: none;
            }
            
            .nav-dropdown.active .nav-dropdown-menu {
                display: block;
            }
            
            .nav-dropdown-menu a {
                padding: 10px 0 !important;
                font-size: 0.8rem !important;
                color: var(--slate) !important;
            }
            
            .nav-links .btn-nav {
                margin-top: 24px;
            }
            
            .hero { padding: 0 24px; }
            .hero-content { margin-top: -40px; }
            .hero h1 { font-size: clamp(3.6rem, 16vw, 6.4rem); }
            .hero-tagline { font-size: 0.9rem; letter-spacing: 0.05em; }
            .hero-desc { font-size: 0.88rem; }
            .hero-cta { flex-direction: column; align-items: center; }
            
            /* On mobile, editorial is NOT fixed - just flows below hero */
            .hero-editorial { 
                position: relative !important;
                bottom: auto !important;
                top: auto !important;
                transform: none !important;
                padding: 40px 24px;
                margin-top: 40px;
                background: var(--ivory);
            }
            .hero-editorial .editorial-grid { 
                grid-template-columns: 1fr; 
                gap: 24px; 
            }
            .hero-editorial .editorial-col p {
                font-size: 0.9rem;
                color: var(--graphite) !important; /* Always dark on mobile */
            }
            
            .editorial-section {
                padding: 60px 24px; /* Less padding since columns are inline */
            }
            
            .editorial-section,
            .features-section,
            .structure-section,
            .fees-section,
            .global-section,
            .audience-section,
            .cta-section { padding: 60px 24px; }
            
            .product-grid { grid-template-columns: 1fr; }
            .bond-main-grid { grid-template-columns: 1fr; gap: 24px; }
            .spec-row { grid-template-columns: 1fr; }
            .example-section { padding: 40px 16px; }
            .bond-content { padding: 24px 16px; }
            .fees-summary { gap: 1rem; }
            .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
            .feature-grid { grid-template-columns: 1fr; }
            .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .global-stats { flex-direction: column; gap: 24px; }
            .global-card { padding: 40px 24px; }
            .audience-grid { grid-template-columns: 1fr; gap: 40px; }
            .structure-grid { grid-template-columns: 1fr; gap: 40px; }
            .fees-grid { grid-template-columns: 1fr; gap: 40px; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }
