:root {
    --bg-dark: #07070f;
    --bg-surface: #0e0e1a;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --text-dark: #000000;
    --text-muted: #888888;
    --text-muted-dark: #666666;

    --primary-gradient: linear-gradient(135deg, #ff0080 0%, #7928ca 100%);
    --secondary-gradient: linear-gradient(135deg, #ff4d4d 0%, #f9cb28 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
    --glow-purple: rgba(121, 40, 202, 0.3);
    --glow-pink:   rgba(255, 0, 128, 0.22);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ─── Background Canvas ─────────────────────────────────── */
.bg-canvas {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    display: block;
    margin-bottom: -100vh;
}

/* Ensure section content sits above canvas */
.process-section,
.timeline-section,
.features-section,
.eng-section,
footer {
    position: relative;
}

/* z-index only — do NOT override position (would break sticky children) */
.process-pre-sticky,
.process-sticky-inner,
.process-scroll-pad,
.features-section .container {
    z-index: 1;
    position: relative;
}

/* ─── Preloader ─────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: preloader-in 0.6s ease forwards 0.1s;
}

.preloader-logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-bar {
    margin-top: 2rem;
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: preloader-in 0.6s ease forwards 0.3s;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: preloader-progress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

@keyframes preloader-in {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes preloader-progress {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}
/* ──────────────────────────────────────────────────────── */

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

html {
    /* scroll-behavior handled by JS for correct nav offset */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden; /* locked until preloader dismisses */
    -webkit-font-smoothing: antialiased;
}

body.preloader-done {
    overflow-y: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(1.1);
}

.logo span {
    font-weight: 300;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--text-white);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    margin: 5px 0;
}

/* --- Products Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color 0.3s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--text-white);
}

.nav-dropdown-trigger .chevron {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.75rem;
    padding-top: calc(0.75rem + 14px);
    margin-top: -14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--glass-bg);
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}



/* ============================================
   HERO SECTION — Full-screen atmospheric
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
}

/* --- Video background --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.80) 75%,
        rgba(0,0,0,0.97) 100%
    );
}

/* Scroll offset for fixed nav — applies to all anchor targets */
[id] { scroll-margin-top: 90px; }

/* --- Hero content --- */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d97e;
    box-shadow: 0 0 8px rgba(0,217,126,0.8);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(0,217,126,0.6); }
    50%       { box-shadow: 0 0 16px rgba(0,217,126,1); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6.5vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    /* Force 2 visual lines: "Building software" / "that feels magical." */
    max-width: 16ch;
}

/* Purple wipe animation */
.gradient-text {
    background: linear-gradient(
        to right,
        #7928ca  0%,
        #a855f7 30%,
        #d8b4fe 50%,
        #ffffff 65%,
        #ffffff 100%
    );
    background-size: 280% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-wipe-purple 1.8s cubic-bezier(0.4, 0, 0.2, 1) alternate infinite;
    animation-delay: 0.5s;
}

@keyframes text-wipe-purple {
    from { background-position: 100% 0; }
    to   { background-position: 0%   0; }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

/* Scroll hint */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.4;
}

.hero-scroll-hint span {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(0.85); }
}

/* --- Three.js Hero Canvas --- */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* --- Hero Marquee --- */
.hero-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    opacity: 0.22;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
.hero-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --- Glass card hover upgrade --- */
[class*="card"]:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 0 60px rgba(121, 40, 202, 0.2);
}

/* --- Section ambient glows --- */
.products-section,
.founders-section,
.features-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, var(--glow-purple), transparent);
    pointer-events: none;
    z-index: -1;
}
.founders-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 15% 50%, var(--glow-pink), transparent);
    pointer-events: none;
    z-index: -1;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 80%, rgba(0, 112, 243, 0.2), transparent);
    pointer-events: none;
    z-index: -1;
}

/* --- Buttons (moved here for clarity) --- */
.btn {
    display: inline-block;
    padding: 1.1rem 2.4rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn.primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn.secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn.secondary:hover {
    border-color: var(--text-white);
    transform: scale(1.05);
}

/* Legacy shapes (unused, kept for safety) */
.floating-shape { display: none; }
.hero-img       { display: none; }
.hero-visual    { display: none; }

/* --- Branding Section --- */
.branding-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.branding-section::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: url('images/drape_transparent.webp') center center / cover no-repeat;
    filter: blur(25px);
    opacity: 0.5;
    z-index: 0;
}

.bg-text-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.bg-text {
    font-family: var(--font-heading);
    font-size: 18vw;
    font-weight: 900;
    background: linear-gradient(160deg, rgba(200, 140, 90, 0.85) 0%, rgba(130, 80, 120, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.5vw;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.branding-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.hands-mockup {
    width: 100%;
    height: auto;
    max-height: 100%;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
    will-change: transform, opacity;
    opacity: 1;
    transform: none;
}

/* --- DNA Section --- */
.dna-section {
    padding: 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.dna-sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dna-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 5rem;
}

.dna-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    will-change: transform;
}

.dna-card {
    flex: 0 0 360px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 32px;
    transition: transform 0.3s ease;
}

.dna-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.dna-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* --- DNA Blob + Number Combo --- */
.dna-number-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dna-blob {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(9px);
    opacity: 0.5;
}

.blob-pink  { background: radial-gradient(circle, #ff0080, #7928ca); animation-delay: 0s; }
.blob-orange { background: radial-gradient(circle, #ff4d4d, #f9cb28); animation-delay: 1.3s; }
.blob-blue  { background: radial-gradient(circle, #0070f3, #00bfff); animation-delay: 2.6s; }
.blob-green { background: radial-gradient(circle, #00c853, #00bfa5); animation-delay: 3.9s; }

@keyframes blob-breathe {
    0%, 100% { transform: scale(1);    opacity: 0.65; }
    50%       { transform: scale(1.25); opacity: 0.9;  }
}

.dna-number {
    position: relative;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    /* gradient text clipped per-card via inline style on parent — use white as fallback */
    color: #fff;
}

.dna-card:nth-child(1) .dna-number,
.dna-card:nth-child(2) .dna-number,
.dna-card:nth-child(3) .dna-number,
.dna-card:nth-child(4) .dna-number {
    color: rgba(255,255,255,0.15);
}

.pink-gradient  { background: var(--primary-gradient); }
.purple-gradient { background: var(--secondary-gradient); }



.dna-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dna-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Engineering Excellence Section (white) --- */
.eng-section {
    background: #f7fcfde0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 160px 0;
}

/* Side-by-side layout: text left, DNA right */
.split-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.text-side  { flex: 1; }
.visual-side { flex: 1; }

.eng-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    line-height: 1.05;
    color: #0a0a0a;
}

/* Premium stats list */
.eng-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eng-stats li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
}

.eng-stats li:first-child {
    border-top: 1px solid #eee;
}

.eng-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 6rem;
    flex-shrink: 0;
}

.eng-stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* DNA SVG visual (right column) */
.dna-visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.dna-svg {
    width: 200px;
    height: 500px;
    max-width: 100%;
    transform-origin: center center;
    /* Subtle continuous idle rotation around Y axis (CSS only) */
    animation: dna-idle-rotate 12s linear infinite;
    will-change: transform;
    filter: drop-shadow(0 0 24px rgba(121, 40, 202, 0.35));
}

@keyframes dna-idle-rotate {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}



/* --- Products Section --- */
.products-section {
    padding: 160px 0;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 5rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 3rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.product-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-gradient);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-img {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    border-radius: 16px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.arrow-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-link::after {
    content: '→';
    transition: transform 0.3s;
}

.arrow-link:hover::after {
    transform: translateX(5px);
}

.stealth-placeholder {
    height: 300px;
    background: radial-gradient(circle at center, #111, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    border-radius: 16px;
}

.stealth-dna {
    width: 100px;
    height: 100px;
    background: var(--secondary-gradient);
    filter: blur(40px);
    opacity: 0.5;
}

.coming-soon {
    display: block;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Studio Section --- */
.studio-section {
    border-top: 1px solid var(--glass-border);
    background: #000;
}

.studio-scroll-container {
    height: 300vh;
    position: relative;
}

.studio-video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.studio-header {
    text-align: center;
    max-width: 700px;
    padding: 100px 2rem 2rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.studio-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0.75rem 0 1rem;
}

.studio-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Word-by-word scroll reveal */
.studio-word {
    display: inline-block;
    opacity: 0.08;
    filter: blur(6px);
    will-change: opacity, filter, transform;
}

.studio-desc {
    opacity: 0.6;
}

/* Cube canvas — full background like other sections */
.kub-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.25;
    z-index: 0;
}

/* Studio header stays on top of cube bg */
.studio-header {
    position: relative;
    z-index: 2;
}

/* Timeline bg canvas — inside sticky inner so position absolute */
#bg-timeline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    opacity: 0.22;
}

.timeline-sticky-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 15, 0.72);
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay on bg-canvas sections */
.process-section::before,
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 15, 0.78);
    z-index: 0;
    pointer-events: none;
}

/* Studio section overlay */
.studio-video-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 15, 0.65);
    z-index: 1;
    pointer-events: none;
}

/* --- Timeline Section --- */
.timeline-section {
    height: 500vh;
    border-top: 1px solid var(--glass-border);
}

.timeline-sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

/* ── Vertical Timeline ───────────────────────────── */
.timeline-sticky-inner .container {
    position: relative;
    z-index: 2;
}

.timeline-v-header {
    margin-bottom: 2rem;
}
.timeline-v-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 0.4rem;
}

.timeline-v {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
}

/* Left column */
.timeline-v-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Vertical track line */
.timeline-v-track {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.timeline-v-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #ff0080, #7928ca, #0070f3);
    border-radius: 2px;
    transition: height 0.05s linear;
}

/* Each milestone row */
.timeline-v-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    cursor: default;
}
.timeline-v-item.active {
    opacity: 1;
}

/* Dot */
.timeline-v-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-dark);
    outline: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.3s, outline-color 0.3s, box-shadow 0.3s;
}
.timeline-v-dot.active {
    background: #ff0080;
    outline-color: #ff0080;
    box-shadow: 0 0 18px rgba(255, 0, 128, 0.7), 0 0 40px rgba(255, 0, 128, 0.3);
}

/* Labels */
.timeline-v-date {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.timeline-v-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Right column — grid stacking so panels don't overflow parent */
.timeline-v-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.timeline-v-panel {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}
.timeline-v-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.timeline-v-panel h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.timeline-v-panel p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 560px;
}

/* ============================================
   FEATURES SECTION — BENTO GRID
   ============================================ */
.features-section {
    padding: 120px 0;
    border-top: 1px solid var(--glass-border);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 1rem;
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-card {
    background: var(--glass-bg);
    border-radius: 28px;
    padding: 2.5rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
}

/* --- Card 1: Privacy (top-left, wide) --- */
.bento-privacy {
    background: linear-gradient(135deg, rgba(118, 0, 59, 0.07) 0%, rgba(255,0,128,0.07) 100%);
    border-color: rgba(255,0,128,0.18);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1.5rem;
    min-height: 340px;
}

.bento-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bento-visual--shield {
    grid-row: 1 / 2;
    grid-column: 2;
}

.bento-text {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.bento-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bento-stat {
    grid-column: 1 / -1;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.bento-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-white);
}

.bento-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shield rings animation */
.shield-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,0,128,0.2);
}
.ring-1 { width: 80px;  height: 80px;  animation: ring-pulse 3s ease-in-out infinite; }
.ring-2 { width: 130px; height: 130px; animation: ring-pulse 3s ease-in-out 0.6s infinite; }
.ring-3 { width: 180px; height: 180px; animation: ring-pulse 3s ease-in-out 1.2s infinite; }

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

.shield-icon {
    position: relative;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(255,0,128,0.4));
    animation: shield-glow 3s ease-in-out infinite;
}

@keyframes shield-glow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(255,0,128,0.3)); }
    50%       { filter: drop-shadow(0 0 28px rgba(255,0,128,0.6)); }
}

/* --- Card 2: Performance (top-right, narrow) --- */
.bento-perf {
    background: linear-gradient(160deg, rgba(249,203,40,0.06) 0%, rgba(255,77,77,0.08) 100%);
    border-color: rgba(249,203,40,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
    position: relative;
}

.perf-number {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 0.85;
    background: linear-gradient(to top, #f9cb28, #d39015);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 2rem;
    left: 2.5rem;
}

.perf-unit {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: rgba(249,203,40,0.5);
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    text-transform: uppercase;
}

.perf-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.perf-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #f9cb28, #d39015);
    opacity: 0.7;
    animation: bar-breathe 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes bar-breathe {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.85; }
}

.bento-perf h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-perf p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Card 3: Ship Fast (bottom-left, narrow) --- */
.bento-ship {
    background: linear-gradient(135deg, rgba(0,176,155,0.06) 0%, rgba(150,201,61,0.06) 100%);
    border-color: rgba(0,176,155,0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.ship-timeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.ship-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ship-step span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.ship-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid rgba(255,255,255,0.1);
}

.ship-done .ship-dot {
    background: rgba(0,176,155,0.8);
    border-color: rgba(0,176,155,0.4);
    box-shadow: 0 0 8px rgba(0,176,155,0.5);
}

.ship-active .ship-dot {
    background: #f9cb28;
    border-color: rgba(249,203,40,0.4);
    box-shadow: 0 0 12px rgba(249,203,40,0.6);
}

.ship-active span {
    color: #f9cb28;
}

@keyframes active-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(249,203,40,0.4); }
    50%       { box-shadow: 0 0 20px rgba(249,203,40,0.8); }
}

.ship-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,176,155,0.6), rgba(0,176,155,0.2));
    margin-bottom: 18px;
    min-width: 16px;
}

.bento-ship h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.bento-ship p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* --- Card 4: Full-Stack Studio --- */
.bento-stack {
    background: rgba(255,255,255,0.02);
    border-color: var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.stack-layers {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stack-layer:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.stack-layer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.stack-layer-dot--ai {
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 2px rgba(255,255,255,0.4);
}

.stack-layer-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    min-width: 70px;
}

.stack-layer-tech {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.stack-connector {
    display: none;
}

.bento-stack .bento-text h3 {
    font-size: 1.6rem;
}

.bento-stack .bento-text p {
    font-size: 0.92rem;
}

/* --- Newsletter Section --- */
.newsletter-section {
    padding: 120px 0;
    border-top: 1px solid var(--glass-border);
}

.newsletter-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 1rem 0 1rem;
}

.newsletter-inner > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.4); }

.newsletter-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-form { flex-direction: column; }
}

/* --- Footer --- */
footer {
    padding: 100px 0 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-muted-dark);
    text-decoration: none;
    margin-left: 2rem;
}

/* --- Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-text.active {
    opacity: 1;
}

/* --- Grain / Noise Texture Overlay --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    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");
    background-repeat: repeat;
    background-size: 128px;
}

/* --- Custom Cursor --- */
* { cursor: none; }
#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.3s;
}
#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.12s;
}
body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(255,255,255,0.8);
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #7928ca, #ff0080);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* --- Hero Gradient Mesh --- */
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: blobDrift 12s ease-in-out infinite alternate;
}
.mesh-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7928ca, transparent 70%);
    top: -200px;
    left: -100px;
    animation-duration: 14s;
}
.mesh-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff0080, transparent 70%);
    top: 100px;
    right: -150px;
    animation-duration: 10s;
    animation-delay: -4s;
}
.mesh-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0070f3, transparent 70%);
    bottom: -100px;
    left: 40%;
    animation-duration: 16s;
    animation-delay: -8s;
}
@keyframes blobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.1); }
    100% { transform: translate(-30px, 20px) scale(0.95); }
}

/* --- Animated Gradient Border — Primary CTA Button --- */
.btn.primary {
    position: relative;
    isolation: isolate;
}
.btn.primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg), #7928ca, #ff0080, #0070f3, #7928ca);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    animation: borderSpin 3s linear infinite;
}
.btn.primary:hover::before { opacity: 1; }
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes borderSpin {
    to { --angle: 360deg; }
}

/* --- Word-split Reveal (h2.reveal-text only) --- */
h2.reveal-text {
    opacity: 1;
}
.split-word {
    display: inline-block;
    overflow: hidden;
}
.split-word span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-word.revealed span {
    transform: translateY(0);
}

/* --- Desktop only --- */
@media (min-width: 1025px) {
    .hands-mockup { width: auto; height: 76vh; max-height: 76vh; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero { flex-direction: column; text-align: center; padding: 120px 1.5rem 60px; }
    .hero-content { margin-bottom: 4rem; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .dna-grid, .product-grid, .split-content { grid-template-columns: 1fr; flex-direction: column; }
    .footer-top { flex-direction: column; gap: 4rem; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .kub-img { width: 100%; flex: 1; min-height: 0; }
    .studio-header { padding: 80px 1.5rem 1rem; }
    .studio-header h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

/* --- Tablet: ≤900px — disable scroll-driven animations --- */
@media (max-width: 900px) {
    /* DNA — disable sticky + horizontal scroll animation, stack cards */
    .dna-sticky-inner { position: static; height: auto; overflow: visible; padding: 60px 0; }
    .dna-header { text-align: center; }
    .dna-header h2 { font-size: clamp(2rem, 5vw, 3rem); }
    .dna-grid { transform: none !important; flex-direction: column; align-items: center; gap: 1.25rem; }
    .dna-card { flex: 0 0 auto; width: 100%; max-width: 560px; }

    /* Process — disable sticky scroll animation, center steps */
    .process-scroll-pad { display: none; }
    .process-sticky-inner { position: static; height: auto; display: flex; flex-direction: column; align-items: center; padding: 40px 0 80px; }
    .process-grid { position: static; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    .process-step { position: static !important; transform: none !important; opacity: 1 !important; height: auto; width: 100%; max-width: 560px; }

    /* Timeline — disable sticky, collapse to single column */
    .timeline-section { height: auto; }
    .timeline-sticky-inner { position: static; height: auto; overflow: visible; padding: 80px 0; }
    .timeline-v { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-v-right { display: block; }
    .timeline-v-panel { display: none; opacity: 1; transform: none; }
    .timeline-v-panel.active { display: block; }
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */
.founders-section {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.founders-header {
    text-align: center;
    margin-bottom: 5rem;
}

.founders-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 1rem 0 1.5rem;
}

.founders-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.founder-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.founder-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-initials {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -1px;
}

.founder-role {
    display: inline-block;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.founder-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.founder-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.founder-social-link:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--text-white);
    background: var(--glass-bg);
}

/* Spirit / Quote block */
.spirit-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.spirit-quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.5;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.spirit-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.5px;
    color: var(--text-white);
    font-style: normal;
    margin-bottom: 1.5rem;
}

.spirit-cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    border-top: 1px solid var(--glass-border);
}

.process-pre-sticky {
    padding: 120px 0 32px;
}

.process-sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.process-scroll-pad {
    height: 400vh;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 1rem 0 1.5rem;
}

.process-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-grid {
    position: relative;
    width: min(520px, 90vw);
    height: 540px;      /* 460px card + 96px back-position room */
    flex-shrink: 0;
}

.process-step {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 460px;
    transform-origin: top center;
    overflow: hidden;
}

.process-step:hover {
    border-color: rgba(255,255,255,0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: -8px;
    right: 12px;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.step-icon-pink   { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }
.step-icon-orange { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }
.step-icon-blue   { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }
.step-icon-green  { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   TECH MARQUEE SECTION
   ============================================ */
.tech-marquee-section {
    padding: 5rem 0 4rem;
    background: #060606;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.tech-marquee-header {
    text-align: center;
}

.tech-marquee-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #060606, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #060606, transparent);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 28s linear infinite;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: color 0.3s;
}

.tech-item:hover {
    color: var(--text-white);
}

.tech-separator {
    color: rgba(255,255,255,0.15);
    font-size: 1.2rem;
    margin: 0 1rem;
    letter-spacing: 0;
}

.tech-logo-wrap {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Each icon spins once per scroll revolution via JS-driven CSS var */
.tech-logo-icon {
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tech-item:hover .tech-logo-icon {
    opacity: 1;
}

/* White-background logos: wrap in white rounded chip so they look intentional */
.tech-logo-wrap.white-chip {
    background: #fff;
    border-radius: 10px;
    padding: 4px;
    width: 44px;
    height: 44px;
}

.logo-white-bg {
    display: block;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    padding: 120px 0;
    border-top: 1px solid var(--glass-border);
}

.news-header {
    text-align: center;
    margin-bottom: 5rem;
}

.news-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 1rem 0 1.5rem;
}

.news-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
}

.news-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ba11e9, #d70b9a);
    color: #fff;
    width: fit-content;
}

.news-tag-product {
    background: linear-gradient(135deg, #d79a0bd3, #f5c30fc7);
}

.news-tag-tech {
    background: linear-gradient(135deg, #1e7eed, #00bfff);
}

.news-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.5rem;
}

.news-footer {
    margin-top: auto;
}

.news-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.news-card:hover .news-read-more {
    color: var(--text-white);
}

/* ============================================
   MEETING / BOOK A CALL SECTION
   ============================================ */
.meeting-section {
    padding: 120px 0 80px;
    border-top: 1px solid var(--glass-border);
}

.meeting-header {
    text-align: center;
    margin-bottom: 4rem;
}

.meeting-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 1rem 0 1.5rem;
}

.meeting-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.meeting-cta-btn {
    display: inline-block;
    margin-bottom: 0;
}

.cal-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #fff;
}

.cal-container {
    width: 100%;
    height: 700px;
    overflow: scroll;
}

/* ============================================
   PERSONA PATHS + TRUST LAYER
   ============================================ */
.pathways-section {
    padding: 120px 0;
    border-top: 1px solid var(--glass-border);
}

.pathways-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pathways-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    letter-spacing: -1.8px;
    margin: 1rem 0;
}

.pathways-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.pathway-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pathway-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.pathway-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.9rem;
}

.pathway-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.7rem;
}

.pathway-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    font-size: 0.94rem;
}

.pathway-link {
    margin-top: 1.1rem;
    display: inline-block;
    font-weight: 600;
    color: #f9cb28;
}

.trust-strip {
    padding: 0 0 110px;
}

.trust-strip-inner {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.trust-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-strip-head h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: -0.8px;
}

.trust-strip-head p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.trust-point {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.trust-point h4 {
    font-size: 0.94rem;
    margin-bottom: 0.35rem;
}

.trust-point p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.86rem;
    line-height: 1.55;
}

.trust-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.trust-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.persona-page {
    background: radial-gradient(circle at 20% 10%, rgba(121, 40, 202, 0.2), transparent 45%), #000;
}

.persona-hero {
    padding: 170px 0 90px;
}

.persona-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -2px;
    max-width: 820px;
}

.persona-hero p {
    max-width: 700px;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
}

.persona-section {
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.persona-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    letter-spacing: -1px;
    margin-bottom: 1.15rem;
}

.persona-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.persona-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.03);
}

.persona-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
}

.persona-card p {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.65;
    font-size: 0.92rem;
}

.persona-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.persona-list li {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.76);
}

.persona-trust {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
}

.persona-cta {
    padding-bottom: 110px;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE — ALL BREAKPOINTS
   ============================================ */

/* --- Tablet: 768px – 1024px --- */
@media (max-width: 1024px) {
    /* Process — absolute stacking works at tablet too, no override needed */

    /* News */
    .news-grid { grid-template-columns: 1fr 1fr; }

    /* Bento — stack 1 column */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-privacy { grid-template-columns: 1fr; min-height: auto; }
    .bento-visual--shield { grid-column: 1; grid-row: auto; height: 180px; }
    .bento-text { grid-column: 1; grid-row: auto; }
    .bento-perf { min-height: 260px; }
    .bento-stack { min-height: auto; }
    .stack-layer { padding: 0.65rem 0; }

    /* Founders grid to 1 column */
    .founders-grid { grid-template-columns: 1fr !important; max-width: 420px !important; }

    .pathways-grid,
    .trust-points,
    .persona-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .persona-list {
        grid-template-columns: 1fr;
    }
}

/* --- Mobile: ≤768px --- */
@media (max-width: 768px) {

    /* Global spacing reduction */
    .container { padding: 0 1.25rem; }

    /* Hero */
    .hero { padding: 120px 1.25rem 60px; }
    .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); letter-spacing: -2px; max-width: 100%; }
    .hero p { font-size: 1rem; }
    .hero-actions { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .hero-video-overlay { background: rgba(0,0,0,0.95) 45%; }

    /* Mesh blobs — shrink for small screens */
    .mesh-blob-1 { width: 280px; height: 280px; }
    .mesh-blob-2 { width: 240px; height: 240px; }
    .mesh-blob-3 { width: 200px; height: 200px; }

    /* Nav */
    .nav-links { display: none; }
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.96);
        backdrop-filter: blur(24px);
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
        padding: 2rem;
    }
    .nav-links.mobile-open a,
    .nav-links.mobile-open button {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        color: var(--text-white) !important;
    }
    .nav-links.mobile-open .nav-cta {
        background: var(--text-white);
        color: var(--bg-dark) !important;
        padding: 0.8rem 2rem;
        border-radius: 100px;
    }
    .mobile-menu-toggle { display: block; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }

    /* Sections spacing */
    .founders-section,
    .eng-section,
    .products-section,
    .features-section,
    .news-section,
    .meeting-section { padding: 60px 0; }

    /* Sticky wrappers: disable on mobile */
    .dna-sticky-inner { position: static; height: auto; overflow: visible; padding: 80px 0; }
    .process-pre-sticky { padding: 80px 0 40px; }
    .process-sticky-inner { position: static; height: auto; display: flex; flex-direction: column; align-items: center; padding: 0 0 80px; }
    .process-scroll-pad { display: none; }
    .process-grid { align-items: center; }
    .process-step { max-width: 480px; }

    /* Timeline — restore sticky scroll-driven on mobile */
    .timeline-section { height: 400vh; }
    .timeline-sticky-inner { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 40px 0; }
    .timeline-v { display: flex; flex-direction: column; gap: 1.25rem; }
    .timeline-v-left { gap: 1rem; }
    .timeline-v-header { margin-bottom: 0.75rem; }
    .timeline-v-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* Founders */
    .founders-grid,
    .news-grid { grid-template-columns: 1fr; }

    .founders-header h2,
    .process-header h2,
    .features-header h2,
    .news-header h2,
    .meeting-header h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: -1.5px;
    }

    .spirit-block { padding: 2rem 1.25rem; }
    .spirit-quote { font-size: 1.1rem; }
    .spirit-quote-mark { font-size: 5rem; }

    /* DNA section */
    .dna-grid { transform: none !important; flex-wrap: wrap !important; }
    .dna-card { flex: 0 0 100% !important; padding: 2rem 1.5rem; }
    .dna-header h2 { font-size: 2.5rem; letter-spacing: -1px; }

    /* Process — revert to normal flow on mobile */
    .process-grid { position: static; height: auto; display: flex; flex-direction: column; gap: 1.5rem; }
    .process-step { position: static; transform: none !important; opacity: 1 !important; padding: 2rem 1.5rem; height: auto; }

    /* Eng section (white) */
    .split-content { flex-direction: column; gap: 3rem; }
    .dna-visual-side { display: none; } /* hide DNA on mobile to save space */
    .eng-section h2 { font-size: 2.2rem; }

    /* Tech Marquee */
    .tech-marquee-section { padding: 3rem 0; gap: 2rem; }
    .tech-item { font-size: 0.85rem; margin: 0 1.25rem; }
    .tech-logo-wrap { width: 28px; height: 28px; }
    .tech-logo-wrap.white-chip { width: 36px; height: 36px; }
    .marquee-container::before,
    .marquee-container::after { width: 50px; }

    /* Products */
    .product-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.5rem; }

    /* Timeline — panels still switch via JS active class */
    .timeline-v-right { display: block; }
    .timeline-v-panel { display: none; opacity: 1; transform: none; }
    .timeline-v-panel.active { display: block; }

    /* Bento — fully stack all cards */
    .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
    .bento-card { padding: 1.75rem; }

    .bento-privacy {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    .bento-privacy .bento-visual--shield { grid-column: 1; grid-row: auto; height: 150px; }
    .bento-privacy .bento-text          { grid-column: 1; grid-row: auto; }
    .bento-privacy .bento-stat          { grid-column: 1; }

    .bento-text h3 { font-size: 1.6rem; }
    .perf-number { font-size: 5rem; }

    .bento-ai {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-stack { min-height: auto; }

    /* News */
    .news-grid { grid-template-columns: 1fr; }

    /* Meeting */
    .cal-container { height: 500px; }
    .cal-wrapper { border-radius: 16px; }

    /* Studio header */
    .studio-header { padding: 60px 1.25rem 1.5rem; }
    .studio-scroll-container { height: 220vh; }
    .studio-word { opacity: 0.08; filter: blur(4px); }

    /* Footer */
    .footer-top { flex-direction: column; gap: 3rem; }
    .footer-links { flex-direction: column; gap: 2rem; }

    /* Newsletter */
    .newsletter-form { flex-direction: column; }

    .pathways-section,
    .trust-strip {
        padding: 80px 0;
    }

    .pathways-grid,
    .trust-points,
    .persona-grid-3 {
        grid-template-columns: 1fr;
    }

    .trust-strip-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .persona-hero {
        padding: 130px 0 70px;
    }

    .persona-section {
        padding: 60px 0;
    }
}
