/* ========================================
   REMJET — Landing Page Styles
   Dark cinematic aesthetic with 
   light-to-dark scroll transition
   ======================================== */

:root {
    /* Light section colors */
    --light-bg: #ffffff;
    --light-text: #1a1a1a;
    --light-muted: #6b6560;

    /* Dark section colors */
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --dark-text: #f0ece8;
    --dark-muted: #8a8580;

    /* Accent — Remjet red-orange */
    --accent: #f93001;
    --accent-soft: rgba(249, 48, 1, 0.15);
    --accent-glow: rgba(249, 48, 1, 0.4);

    /* Typography */
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --content-width: 1040px;
    --content-pad: clamp(20px, 5vw, 40px);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--light-bg);
    overflow-x: hidden;
    transition: background 0.6s ease, color 0.6s ease;
}

body.dark-mode {
    background: var(--dark-bg);
    color: var(--dark-text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

em {
    font-family: var(--font-display);

    font-weight: 400;
}

/* ========================================
   NAVIGATION — Full-width → Compact Liquid Glass
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px var(--content-pad);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.nav-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.nav-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Scrolled: compact pill with Liquid Glass */
.nav.scrolled .nav-inner {
    max-width: 680px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border-radius: 100px;
    padding: 6px 8px 6px 16px;
    box-shadow: 
        0 1px 0 0 rgba(255,255,255,0.6) inset,
        0 -1px 0 0 rgba(0,0,0,0.04) inset,
        0 4px 24px rgba(0,0,0,0.08),
        0 0 0 0.5px rgba(0,0,0,0.06);
}

/* Dark scrolled: compact pill with dark Liquid Glass */
.nav.dark .nav-inner {
    max-width: 680px;
    background: rgba(40, 40, 40, 0.45);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border-radius: 100px;
    padding: 6px 8px 6px 16px;
    box-shadow: 
        0 1px 0 0 rgba(255,255,255,0.1) inset,
        0 -1px 0 0 rgba(0,0,0,0.2) inset,
        0 4px 24px rgba(0,0,0,0.3),
        0 0 0 0.5px rgba(255,255,255,0.08);
}

.nav.dark .nav-links a { color: rgba(255,255,255,0.5); }
.nav.dark .nav-links a:hover { color: var(--dark-text); }
.nav.dark .nav-cta {
    background: var(--dark-text) !important;
    color: var(--dark-bg) !important;
}
.nav.dark .logo-text { color: var(--dark-text); }
.nav.dark .nav-mobile-toggle span { background: var(--dark-text); }


.nav-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-app-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--light-text);
    color: var(--light-bg);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-mark-img {
    width: 28px;
    height: auto;
    transition: opacity 0.4s ease;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-logo-row .logo-mark-img {
    width: 24px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: color 0.4s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-muted);
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--light-text) !important;
    color: var(--light-bg) !important;
    padding: 8px 20px !important;
    border-radius: 100px;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: background 0.4s, color 0.4s, transform 0.2s !important;
}

.nav-cta:hover {
    transform: scale(1.03);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--light-text);
    border-radius: 2px;
    transition: background 0.4s;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0 8px;
}

#mobileMenu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-muted);
    padding: 12px 8px;
    border-radius: 12px;
    transition: background 0.2s;
    text-align: left;
    display: block;
    width: 100%;
    background: none;
}

#mobileMenu a:hover {
    background: rgba(0, 0, 0, 0.05);
}

#mobileMenu a.nav-cta {
    margin-top: 4px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
}

/* When menu is open, expand pill to card */
.nav.scrolled.menu-open .nav-inner {
    border-radius: 20px;
    padding: 14px 20px;
}

.nav.dark.menu-open .nav-inner {
    border-radius: 20px;
    padding: 14px 20px;
}

.nav.dark .mobile-menu a {
    color: rgba(255, 255, 255, 0.5);
}

.nav.dark .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--dark-text);
}

.nav.dark .mobile-menu .nav-cta {
    background: var(--dark-text) !important;
    color: var(--dark-bg) !important;
}

.nav.dark.menu-open .nav-inner {
    background: rgba(40, 40, 40, 0.45);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    box-shadow:
        0 1px 0 0 rgba(255,255,255,0.1) inset,
        0 -1px 0 0 rgba(0,0,0,0.2) inset,
        0 4px 24px rgba(0,0,0,0.3),
        0 0 0 0.5px rgba(255,255,255,0.08);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #d4552c;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 1.5px solid rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    border-color: rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light-text);
    border: 1.5px solid rgba(0,0,0,0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

/* ========================================
   HERO — Light Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px var(--content-pad) 60px;
    max-width: var(--content-width);
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(232, 101, 58, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(44px, 6vw, 65px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

.hero-sub {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--light-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 30px 80px rgba(0,0,0,0.25),
        0 10px 30px rgba(0,0,0,0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 13px;
    z-index: 10;
}

.placeholder-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 11px;
}

.placeholder-topbar {
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 8px;
    font-size: 14px;
    opacity: 0.6;
}

.placeholder-preview {
    flex: 1;
    margin: 8px 12px;
    background: linear-gradient(135deg, #2a1f1a 0%, #1a2530 50%, #1f1a2a 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.placeholder-preview::after {
    content: 'Your screenshot here';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 13px;
}

.placeholder-panel {
    padding: 12px;
}

.placeholder-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.placeholder-tabs span {
    font-size: 11px;
    opacity: 0.4;
    font-weight: 500;
}

.placeholder-tabs span.active {
    opacity: 1;
    color: var(--accent);
}

.placeholder-sliders {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.placeholder-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.placeholder-slider span {
    width: 65px;
    font-size: 10px;
    opacity: 0.5;
}

.slider-track {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

/* ========================================
   CAMERA LOGOS BAR
   ======================================== */

.logos-bar {
    padding: 40px var(--content-pad) 60px;
    text-align: center;
    overflow: hidden;
}

.logos-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.logos-scroll {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
    display: flex;
    gap: 48px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.camera-logo {
    height: 24px;
    width: auto;
    opacity: 0.45;
    filter: brightness(0);
    flex-shrink: 0;
    object-fit: contain;
}

.camera-logo-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--light-muted);
    opacity: 0.5;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

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

/* ========================================
   STORY — Smooth Light-to-Dark Transition
   ======================================== */

.story {
    padding: clamp(120px, 16vw, 200px) var(--content-pad) clamp(160px, 20vw, 280px);
    position: relative;
}

.story-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-lead {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--light-text);
    margin-bottom: 28px;
    transition: color 0.6s ease;
}

body.dark-mode .story-lead {
    color: var(--dark-text);
}

.story-body {
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.75;
    color: #6b6560;
    margin-bottom: 18px;
    transition: color 0.6s ease;
}

body.dark-mode .story-body {
    color: var(--dark-muted);
}

.story-highlight {
    color: var(--light-text);
    font-weight: 500;
    margin-top: 28px;
    transition: color 0.6s ease;
}

body.dark-mode .story-highlight {
    color: #e8e4e0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ========================================
   FEATURES — Dark Bento Section
   ======================================== */

.features-dark {
    background: var(--dark-bg);
    padding: var(--section-pad) var(--content-pad);
}

.bento-dark-header {
    max-width: var(--content-width);
    margin: 0 auto clamp(40px, 6vw, 60px);
    text-align: left;
}

.bento-dark-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.08;
    color: var(--dark-text);
}

.bento-dark-header p {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(245, 243, 240, 0.5);
    line-height: 1.5;
    margin-top: 16px;
    max-width: 620px;
}

.bento-dark-grid {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.bento-card-dark {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    min-height: 360px;
}

.bento-wide { grid-column: span 7; }
.bento-narrow { grid-column: span 5; }

.bento-card-content {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bento-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.bento-card-content h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: auto;
}

.bento-card-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-muted);
    line-height: 1.5;
    max-width: 380px;
    padding-top: 20px;
}

.bento-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.bento-pills span {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-muted);
    border: 1px solid var(--dark-border);
    background: rgba(255,255,255,0.03);
}

/* Phone mockup inside bento cards */
.bento-card-frame {
    flex: 0 0 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bento-phone {
    width: 180px;
    background: #2a2a2a;
    border-radius: 24px 24px 0 0;
    padding: 6px 6px 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    position: absolute;
    bottom: -20%;
}

.bento-phone-screen {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    line-height: 0;
}

.bento-phone-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #2a1f1a 0%, #1a2530 50%, #1f1a2a 100%);
}

.bento-phone-halation {
    background: linear-gradient(135deg, #3a1f1a 0%, #4a2020 40%, #1a2530 100%);
}

/* Extras row */
.extras-row {
    max-width: 1200px;
    margin: clamp(40px, 6vw, 60px) auto 0;
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: nowrap;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-muted);
    font-size: 14px;
    font-weight: 500;
}

.extra-item svg {
    opacity: 0.5;
}

/* ========================================
   LIGHT BENTO SECTION
   ======================================== */

.bento-section {
    background: var(--light-bg);
    padding: var(--section-pad) var(--content-pad);
}

.bento-header {
    max-width: var(--content-width);
    margin: 0 auto clamp(40px, 6vw, 60px);
    text-align: left;
}

.bento-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.08;
    color: var(--light-text);
}

.bento-header p {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.5;
    margin-top: 16px;
    max-width: 620px;
}

.bento-grid {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.bento-card {
    background: #fafafa;
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

/* Step cards — 3 equal columns */
.bento-step {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
}

.bento-card-image {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0 30px;
}

/* Phone mockup inside light cards */
.bento-phone-light {
    width: 180px;
    background: #1a1a1a;
    border-radius: 24px 24px 0 0;
    padding: 6px 6px 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
}

.bento-phone-screen-light {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    line-height: 0;
}

.bento-phone-screen-light img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.bento-card-text {
    padding: 24px 28px 28px;
}

.bento-step-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
}

.bento-card-text h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--light-text);
    margin-bottom: 6px;
}

.bento-card-text p {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-muted);
    line-height: 1.5;
}

/* About card — full width */
.bento-about {
    grid-column: 1 / -1;
    padding: clamp(28px, 4vw, 48px);
}

.bento-about-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.bento-about-text h3 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.bento-about-text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 580px;
}

.about-credits {
    margin-top: 28px;
    display: flex;
    gap: 32px;
}

.about-credit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-credit-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.about-credit strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--light-text);
}

.about-credit span {
    font-size: 13px;
    color: var(--light-muted);
}

/* More reasons */
.more-reasons {
    background: var(--light-bg);
    padding: var(--section-pad) var(--content-pad) 0;
}

.more-reasons-header {
    max-width: var(--content-width);
    margin: 0 auto clamp(40px, 6vw, 60px);
    text-align: center;
}

.more-reasons-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.08;
    color: var(--light-text);
}

.more-reasons-header p {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.5;
    margin-top: 16px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.more-reasons-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reason-card {
    background: #fafafa;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 40px);
}

.reason-icon {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--light-text);
}

.reason-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-muted);
    line-height: 1.5;
}

.reason-card p strong {
    color: var(--light-text);
    font-weight: 600;
}

@media (max-width: 600px) {
    .more-reasons-inner {
        grid-template-columns: 1fr;
    }
}

/* Standalone about section */
.about-section {
    background: var(--light-bg);
    padding: clamp(40px, 6vw, 80px) var(--content-pad) var(--section-pad);
}

.about-card {
    max-width: var(--content-width);
    margin: 0 auto;
    background: #fafafa;
    border: none;
    border-radius: 24px;
    padding: clamp(28px, 4vw, 48px);
}

/* Light bento feature cards (video projects section) */
.bento-section-tight {
    padding-top: 0;
}

.bento-feature-wide {
    grid-column: span 7;
    display: flex;
    overflow: hidden;
    min-height: 320px;
}

.bento-feature-narrow {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-feature-content {
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bento-label-light {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.bento-feature-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.1;
    color: var(--light-text);
    margin-bottom: auto;
}

.bento-feature-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-muted);
    line-height: 1.5;
    max-width: 380px;
    padding-top: 20px;
}

.bento-feature-frame {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.bento-phone-tall {
    width: 200px;
    margin-top: 10px;
}

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

.pricing {
    background: var(--light-bg);
    padding: var(--section-pad) var(--content-pad);
    text-align: center;
}

.pricing-header {
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--light-text);
    margin-bottom: 12px;
}

.pricing-header h2 em {
    color: var(--accent);
}

.pricing-header p {
    font-size: 17px;
    color: var(--light-muted);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price-card {
    background: #fafafa;
    border: none;
    border-radius: 24px;
    padding: 36px;
    width: 300px;
    text-align: left;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--accent);
    background: #fafafa;
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
}

.price-plan {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 8px;
}

.price-amount span {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-muted);
}

.price-desc {
    font-size: 14px;
    color: var(--light-muted);
    margin-bottom: 24px;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    background: var(--light-bg);
    padding: var(--section-pad) var(--content-pad);
    text-align: center;
}

.final-cta h1 {
    font-family: var(--font-body);
    font-size: clamp(44px, 6vw, 65px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--light-text);
    margin-bottom: 16px;
    line-height: 1.04;
}

.final-cta h1 em {
    color: var(--accent);
}

.final-cta p {
    font-size: 18px;
    color: var(--light-muted);
    margin-bottom: 32px;
}

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

.footer {
    background: var(--light-bg);
    padding: 60px var(--content-pad) 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-mark {
    background: var(--light-text);
    color: var(--light-bg);
    margin-bottom: 8px;
}

.footer-brand .logo-text {
    color: var(--light-text);
}

.footer-tagline {
    font-size: 14px;
    color: var(--light-muted);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--light-muted);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--light-text); }

.footer-bottom {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--light-muted);
}

/* Dark footer variant */
.footer.dark {
    background: var(--dark-bg);
    border-top-color: rgba(255,255,255,0.08);
}
.footer.dark .footer-brand .logo-text { color: var(--dark-text); }
.footer.dark .footer-tagline { color: var(--dark-muted); }
.footer.dark .footer-col h4 { color: var(--dark-text); }
.footer.dark .footer-col a { color: var(--dark-muted); }
.footer.dark .footer-col a:hover { color: var(--dark-text); }
.footer.dark .footer-bottom { border-top-color: rgba(255,255,255,0.08); }
.footer.dark .footer-bottom p { color: var(--dark-muted); }

/* ========================================
   SCROLL ANIMATIONS — Smooth Flighty-style
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-stagger .reveal {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Fade only (no movement) */
.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.visible {
    opacity: 1;
}

/* Scale up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content { max-width: 100%; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }

    /* Dark bento — stack */
    .bento-dark-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide, .bento-narrow {
        grid-column: 1 / -1;
    }

    .bento-card-dark {
        flex-direction: column;
        min-height: auto;
    }

    .bento-card-frame {
        padding: 0 40px;
        justify-content: center;
        min-height: 360px;
    }

    .bento-phone {
        bottom: -10%;
    }

    .bento-pills { justify-content: center; }
    .bento-card-content { text-align: center; }
    .bento-card-content p { margin-left: auto; margin-right: auto; }

    /* Light bento — steps 2+1 */
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-step:nth-child(1),
    .bento-step:nth-child(2),
    .bento-step:nth-child(3) { grid-column: 1 / -1; }
    .bento-about { grid-column: 1 / 7; }

    .bento-about-inner {
        flex-direction: column;
        text-align: center;
    }

    .bento-feature-wide,
    .bento-feature-narrow {
        grid-column: 1 / -1;
    }

    .bento-feature-wide {
        flex-direction: column;
        min-height: auto;
    }

    .bento-feature-content { text-align: center; }
    .bento-feature-content p { margin-left: auto; margin-right: auto; }

    .footer-inner {
        flex-direction: column;
    }

    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .nav.scrolled .nav-inner {
        max-width: calc(100% - 16px);
        border-radius: 100px;
        padding: 6px 16px;
    }

    .nav.scrolled.menu-open .nav-inner {
        border-radius: 20px;
        padding: 14px 20px;
    }

    .nav.dark .nav-inner {
        margin: 0 auto;
    }

    .nav.dark.menu-open .nav-inner {
        border-radius: 20px;
        padding: 14px 20px;
    }

    /* When menu opens at top (not scrolled), give it the glass card */
    .nav.menu-open .nav-inner {
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(40px) saturate(1.8);
        -webkit-backdrop-filter: blur(40px) saturate(1.8);
        border-radius: 20px;
        padding: 14px 20px;
        max-width: calc(100% - 16px);
        box-shadow:
            0 1px 0 0 rgba(255,255,255,0.6) inset,
            0 -1px 0 0 rgba(0,0,0,0.04) inset,
            0 4px 24px rgba(0,0,0,0.08),
            0 0 0 0.5px rgba(0,0,0,0.06);
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-step,
    .bento-about {
        grid-column: 1 / -1;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card { width: 100%; max-width: 360px; }

    .extras-row {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}
