/* --- Brand Variables (Global) --- */
:root {
    --jc-canvas: #FAFAFA;
    --jc-foreground: #0F172A;
    --jc-navy: #1E3250;
    --jc-gold-1: #D4AF37;
    --jc-gold-2: #E5C158;
    --jc-gold-gradient: linear-gradient(135deg, #D4AF37, #E5C158);
    --jc-white: #ffffff;
    --jc-border: #E2E8F0;
    --jc-text-muted: #64748B;
    --jc-text-body: #334155;
    --font-display: 'Calistoga', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ======== RESET & BASE ======== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--jc-canvas); color: var(--jc-foreground); direction: ltr; overflow-x: hidden; width: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { overflow-x: hidden; width: 100%; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ======== UTILITY ======== */
.gradient-text { background: var(--jc-gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-label.dark { color: var(--jc-text-muted); }
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.gold { color: var(--jc-gold-1); }

/* ======== HEADER ======== */
.nexus-header { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 9999; box-sizing: border-box; background: linear-gradient(to bottom, rgba(250,250,250,0.95) 0%, rgba(250,250,250,0) 100%); transition: transform 0.6s cubic-bezier(0.25,1,0.5,1), padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.nexus-header.scrolled { background: rgba(250,250,250,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-logo { display: flex; align-items: center; z-index: 10001; }
.header-logo img { height: 40px; width: auto; display: block; transition: height 0.3s ease; }
.header-nav-right { display: flex; align-items: center; gap: 20px; z-index: 10001; }
.header-cta { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; padding: 10px 24px; border-radius: 50px; background: var(--jc-gold-gradient); color: var(--jc-foreground); transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(212,175,55,0.25); }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(212,175,55,0.4); }
.menu-toggle { cursor: pointer; display: flex; align-items: center; gap: 12px; z-index: 10001; background: transparent; border: none; padding: 0; box-shadow: none; }
.menu-text { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--jc-foreground); transition: color 0.3s; }
.hamburger-lines { width: 28px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.line { width: 100%; height: 2px; background-color: var(--jc-foreground); transition: all 0.4s cubic-bezier(0.25,1,0.5,1); border-radius: 2px; }
.menu-open .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background-color: var(--jc-gold-1); }
.menu-open .line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-open .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background-color: var(--jc-gold-1); }
.menu-open .menu-text { color: var(--jc-gold-1); }

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--jc-foreground); z-index: 9998; display: flex; flex-direction: column; justify-content: center; align-items: center; visibility: hidden; clip-path: circle(0% at 95% 5%); }
.menu-bg-texture { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 40%, rgba(212,175,55,0.08) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(229,193,88,0.05) 0%, transparent 50%); pointer-events: none; }
.nav-links { padding: 0; margin: 0; text-align: center; position: relative; z-index: 2; }
.nav-item { margin: 18px 0; overflow: hidden; }
.nav-link { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--jc-white); text-decoration: none; transition: all 0.4s ease; transform: translateY(100%); }
.nav-link:hover { color: var(--jc-gold-1); transform: translateX(10px); }
.menu-footer { position: absolute; bottom: 50px; display: flex; gap: 40px; color: rgba(255,255,255,0.4); font-family: var(--font-mono); font-size: 0.85rem; opacity: 0; }
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--jc-gold-1); }

/* ======== HERO SECTION ======== */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 60px 80px; background-color: var(--jc-canvas); overflow: hidden; width: 100%; }
.hero-glow { position: absolute; top: 50%; left: 30%; width: 50vw; max-width: 600px; height: 50vw; max-height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%); filter: blur(80px); transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; max-width: 1300px; margin: 0 auto; width: 100%; align-items: center; position: relative; z-index: 1; }
.hero-content { display: flex; flex-direction: column; gap: 28px; }
.hero-label { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--jc-text-muted); font-weight: 600; }
.pulsing-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jc-gold-1); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,175,55,0.5); } 50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(212,175,55,0); } }
.hero-title { font-family: var(--font-display); font-size: 4.2rem; line-height: 1.12; color: var(--jc-foreground); font-weight: 400; }
.hero-subtitle { font-size: 1.15rem; line-height: 1.75; color: var(--jc-text-body); max-width: 520px; }
.hero-cta-wrapper { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

/* Buttons — shared */
.btn-gold-filled { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 16px 36px; font-size: 1rem; font-weight: 700; border-radius: 50px; background: var(--jc-gold-gradient); color: var(--jc-foreground); transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(212,175,55,0.3); font-family: var(--font-body); }
.btn-gold-filled:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(212,175,55,0.5); }
.btn-ghost { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 16px 36px; font-size: 1rem; font-weight: 600; border-radius: 50px; background: transparent; border: 1.5px solid var(--jc-border); color: var(--jc-foreground); transition: all 0.3s ease; font-family: var(--font-body); }
.btn-ghost:hover { border-color: var(--jc-gold-1); color: var(--jc-gold-1); transform: translateY(-3px); }
.btn-icon { width: 16px; height: 16px; }

/* Hero Mockups */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-mockup-stack { position: relative; width: 100%; max-width: 500px; }
.mockup-dashboard { background: var(--jc-white); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06); overflow: hidden; width: 100%; }
.mockup-dash-header { display: flex; gap: 6px; padding: 12px 16px; background: #f1f5f9; border-bottom: 1px solid var(--jc-border); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #22c55e; }
.mockup-dash-body { display: flex; min-height: 200px; }
.dash-sidebar { width: 120px; background: #f8fafc; border-right: 1px solid var(--jc-border); padding: 16px 10px; display: flex; flex-direction: column; gap: 8px; }
.dash-sidebar-item { font-size: 0.65rem; padding: 8px 10px; border-radius: 8px; color: var(--jc-text-muted); font-weight: 500; }
.dash-sidebar-item.active { background: rgba(212,175,55,0.12); color: var(--jc-gold-1); font-weight: 700; }
.dash-main { flex: 1; padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dash-card-preview { display: flex; align-items: center; gap: 14px; width: 100%; }
.dash-avatar { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); flex-shrink: 0; }
.dash-card-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dash-line { height: 8px; border-radius: 4px; background: #e2e8f0; }
.dash-line.long { width: 80%; }
.dash-line.medium { width: 55%; }
.dash-line.short { width: 35%; }
.dash-actions { display: flex; gap: 20px; }
.dash-action-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.dash-action-btn.pass { background: #fef2f2; color: #ef4444; border: 1.5px solid #fecaca; }
.dash-action-btn.match { background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(229,193,88,0.2)); color: var(--jc-gold-1); border: 1.5px solid rgba(212,175,55,0.3); }

/* Phone Mockup */
.mockup-phone { position: absolute; bottom: -20px; right: -30px; width: 160px; background: var(--jc-foreground); border-radius: 24px; padding: 8px; box-shadow: 0 25px 60px rgba(0,0,0,0.2); z-index: 2; }
.phone-notch { width: 60px; height: 6px; background: #1e293b; border-radius: 3px; margin: 0 auto 8px; }
.phone-screen { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); border-radius: 16px; padding: 16px 12px; min-height: 200px; display: flex; flex-direction: column; gap: 10px; }
.phone-video-placeholder { width: 100%; height: 90px; background: linear-gradient(135deg, #334155 0%, #1e293b 100%); border-radius: 12px; }
.phone-profile-info { display: flex; flex-direction: column; gap: 5px; }
.phone-line { height: 6px; border-radius: 3px; }
.phone-line.name { width: 65%; background: rgba(255,255,255,0.3); }
.phone-line.role { width: 45%; background: rgba(255,255,255,0.15); }
.phone-swipe-hint { display: flex; justify-content: space-between; padding: 6px 10px; }
.swipe-arrow { font-size: 1.2rem; color: rgba(255,255,255,0.2); }
.swipe-arrow.right { color: var(--jc-gold-1); }

/* ======== THE DEAL SECTION ======== */
.deal-section { background-color: var(--jc-foreground); color: var(--jc-white); padding: 120px 60px; position: relative; overflow: hidden; width: 100%; }
.deal-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 50px; align-items: center; width: 100%; }
.deal-container > * { min-width: 0; }
.deal-heading { font-family: var(--font-display); font-size: 2.6rem; line-height: 1.2; margin-bottom: 20px; font-weight: 400; }
.deal-heading span { color: var(--jc-gold-1); }
.deal-text { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.deal-pain-points { display: flex; flex-direction: column; gap: 14px; }
.deal-pain-points li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.deal-pain-points svg { width: 18px; height: 18px; stroke: #ef4444; flex-shrink: 0; }
.deal-divider { display: flex; align-items: center; justify-content: center; position: relative; }
.deal-divider::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.3), transparent); }
.match-badge { font-family: var(--font-display); font-size: 1.4rem; color: var(--jc-foreground); background: var(--jc-gold-gradient); padding: 14px 28px; border-radius: 50px; box-shadow: 0 8px 30px rgba(212,175,55,0.4); opacity: 0; transform: scale(0.5); z-index: 2; position: relative; }
.deal-solution { display: flex; flex-direction: column; gap: 24px; }
.deal-sides { display: flex; flex-direction: column; gap: 30px; }
.deal-side { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px; transition: border-color 0.3s ease; }
.deal-side:hover { border-color: rgba(212,175,55,0.3); }
.deal-side-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--jc-gold-1); margin-bottom: 10px; font-weight: 600; }
.deal-side p { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.7); }

/* ======== MARKET SECTION ======== */
.market-section { padding: 120px 60px; background-color: var(--jc-canvas); width: 100%; }
.market-container { max-width: 1100px; margin: 0 auto; text-align: center; width: 100%; }
.market-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.15; color: var(--jc-foreground); margin-bottom: 60px; font-weight: 400; }
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; min-width: 0; }
.market-grid > * { min-width: 0; }
.market-card { background: var(--jc-white); border: 1px solid var(--jc-border); border-radius: 20px; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; transition: all 0.4s ease; }
.market-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.market-ring-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 280px; pointer-events: none; opacity: 0.06; }
.rotating-ring { width: 100%; height: 100%; border: 2px dashed var(--jc-navy); border-radius: 50%; animation: spinRing 60s linear infinite; }
.rotating-ring.ring-2 { border-color: var(--jc-gold-1); animation-direction: reverse; animation-duration: 45s; }
@keyframes spinRing { to { transform: rotate(360deg); } }
.market-stat { font-family: var(--font-display); font-size: 4rem; color: var(--jc-foreground); line-height: 1; margin-bottom: 8px; position: relative; z-index: 1; }
.market-stat-label { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--jc-gold-1); font-weight: 600; margin-bottom: 20px; position: relative; z-index: 1; }
.market-desc { font-size: 0.95rem; line-height: 1.75; color: var(--jc-text-body); max-width: 360px; margin: 0 auto 20px; position: relative; z-index: 1; }
.market-badge { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; background: var(--jc-foreground); color: var(--jc-white); padding: 6px 16px; border-radius: 50px; font-weight: 600; position: relative; z-index: 1; }

/* ======== VALUE PROPOSITION SECTION ======== */
.value-section { padding: 120px 60px; background-color: var(--jc-canvas); width: 100%; }
.value-container { max-width: 1100px; margin: 0 auto; width: 100%; }
.value-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.15; color: var(--jc-foreground); margin-bottom: 60px; font-weight: 400; }
.value-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; min-width: 0; }
.value-bento-grid > * { min-width: 0; }
.value-card { background: var(--jc-white); border: 1px solid var(--jc-border); border-radius: 20px; padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.4s ease; }
.value-card::before { content: ''; position: absolute; inset: 0; background: var(--jc-gold-gradient); opacity: 0; transition: opacity 0.4s ease; border-radius: 20px; z-index: 0; }
.value-card:hover::before { opacity: 0.03; }
.value-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.value-card.large { grid-column: span 2; }
.value-icon-wrapper { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(229,193,88,0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.value-icon-wrapper svg { width: 24px; height: 24px; stroke: var(--jc-gold-1); }
.sparkle-icon { position: absolute; top: -4px; right: -4px; width: 14px !important; height: 14px !important; }
.value-card-title { font-family: var(--font-display); font-size: 1.35rem; color: var(--jc-foreground); margin-bottom: 12px; position: relative; z-index: 1; font-weight: 400; }
.value-card-desc { font-size: 0.95rem; line-height: 1.7; color: var(--jc-text-body); position: relative; z-index: 1; }

/* ======== PRODUCT SECTION ======== */
.product-section { padding: 120px 60px; background-color: #f1f5f9; overflow: hidden; width: 100%; }
.product-container { max-width: 1200px; margin: 0 auto; text-align: center; width: 100%; }
.product-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.15; color: var(--jc-foreground); margin-bottom: 60px; font-weight: 400; }
.product-showcase { position: relative; display: flex; justify-content: center; align-items: flex-start; gap: 30px; padding: 20px 0; overflow: visible; max-width: 100%; }

/* Dashboard Frame */
.product-dashboard-frame { background: var(--jc-gold-gradient); padding: 2px; border-radius: 26px; max-width: 750px; width: 100%; }
.product-dashboard { background: var(--jc-white); border-radius: 24px; overflow: hidden; }
.pd-header { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: #f8fafc; border-bottom: 1px solid var(--jc-border); }
.pd-dot { width: 10px; height: 10px; border-radius: 50%; }
.pd-dot.red { background: #ef4444; }
.pd-dot.yellow { background: #f59e0b; }
.pd-dot.green { background: #22c55e; }
.pd-title { font-family: var(--font-mono); font-size: 0.7rem; color: var(--jc-text-muted); margin-left: 12px; letter-spacing: 1px; }
.pd-body { display: flex; min-height: 340px; }
.pd-sidebar { width: 190px; background: #f8fafc; border-right: 1px solid var(--jc-border); padding: 20px 14px; display: flex; flex-direction: column; gap: 6px; }
.pd-nav-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; padding: 12px 14px; border-radius: 10px; color: var(--jc-text-muted); font-weight: 500; transition: all 0.2s; }
.pd-nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.pd-nav-item.active { background: rgba(212,175,55,0.1); color: var(--jc-gold-1); font-weight: 700; }
.pd-badge { margin-left: auto; background: var(--jc-gold-gradient); color: var(--jc-foreground); font-size: 0.65rem; font-weight: 800; padding: 2px 8px; border-radius: 50px; }
.pd-main { flex: 1; padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pd-candidate-card { width: 100%; max-width: 380px; background: var(--jc-canvas); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.pd-video-area { width: 100%; height: 180px; background: linear-gradient(135deg, #1e293b 0%, #334155 100%); position: relative; display: flex; align-items: center; justify-content: center; }
.pd-play-overlay { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.pd-play-overlay svg { width: 18px; height: 18px; fill: var(--jc-white); margin-left: 3px; }
.pd-candidate-info { padding: 18px 20px; }
.pd-name-line { height: 10px; width: 50%; background: #e2e8f0; border-radius: 5px; margin-bottom: 8px; }
.pd-role-line { height: 8px; width: 35%; background: #f1f5f9; border-radius: 4px; margin-bottom: 14px; }
.pd-tags { display: flex; gap: 8px; }
.pd-tag { font-family: var(--font-mono); font-size: 0.65rem; padding: 4px 10px; border-radius: 50px; background: rgba(212,175,55,0.1); color: var(--jc-gold-1); font-weight: 600; letter-spacing: 0.5px; }
.pd-action-row { display: flex; gap: 24px; }
.pd-action-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.pd-action-btn svg { width: 22px; height: 22px; }
.pass-btn { background: #fef2f2; border: 2px solid #fecaca; }
.pass-btn svg { stroke: #ef4444; }
.pass-btn:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(239,68,68,0.2); }
.match-btn { background: var(--jc-gold-gradient); border: none; box-shadow: 0 4px 20px rgba(212,175,55,0.35); }
.match-btn svg { stroke: var(--jc-foreground); }
.match-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(212,175,55,0.5); }

/* Phone Frame */
.product-phone-frame { position: absolute; right: 0; top: 50%; transform: translateY(-40%); z-index: 3; }
.product-phone { width: 200px; background: var(--jc-foreground); border-radius: 30px; padding: 10px; box-shadow: 0 30px 70px rgba(0,0,0,0.25); }
.pp-notch { width: 70px; height: 6px; background: #1e293b; border-radius: 3px; margin: 0 auto 10px; }
.pp-screen { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); border-radius: 20px; padding: 20px 16px; min-height: 300px; display: flex; flex-direction: column; }
.pp-video-bg { width: 100%; height: 140px; background: linear-gradient(135deg, #334155 0%, #475569 50%, #334155 100%); border-radius: 14px; margin-bottom: 16px; }
.pp-overlay-info { margin-bottom: auto; }
.pp-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--jc-white); }
.pp-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.pp-company { font-family: var(--font-mono); font-size: 0.65rem; color: var(--jc-gold-1); margin-top: 8px; letter-spacing: 1px; }
.pp-record-btn { width: 44px; height: 44px; border-radius: 50%; border: 3px solid rgba(239,68,68,0.6); display: flex; align-items: center; justify-content: center; margin: 20px auto 0; }
.pp-record-dot { width: 16px; height: 16px; border-radius: 50%; background: #ef4444; animation: recordPulse 1.5s ease-in-out infinite; }
@keyframes recordPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Bobbing animation */
.bobbing { animation: bob 4.5s ease-in-out infinite; }
.bobbing-delayed { animation: bob 5s ease-in-out infinite; animation-delay: -1.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ======== VALIDATION SECTION ======== */
.validation-section { padding: 120px 60px; background-color: var(--jc-canvas); width: 100%; }
.validation-container { max-width: 1100px; margin: 0 auto; text-align: center; width: 100%; }
.validation-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.15; color: var(--jc-foreground); margin-bottom: 50px; font-weight: 400; }

/* Logo Marquee */
.logo-marquee-wrapper { overflow: hidden; margin-bottom: 60px; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.logo-marquee { overflow: hidden; }
.logo-track { display: flex; gap: 50px; animation: marqueeScroll 30s linear infinite; width: max-content; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-logo { font-family: var(--font-display); font-size: 1.6rem; color: #cbd5e1; padding: 16px 30px; white-space: nowrap; transition: color 0.3s; flex-shrink: 0; }
.marquee-logo:hover { color: var(--jc-navy); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; width: 100%; min-width: 0; }
.testimonials-grid > * { min-width: 0; }
.testimonial-card { background: var(--jc-white); border: 1px solid var(--jc-border); border-radius: 20px; padding: 36px 30px; display: flex; flex-direction: column; gap: 24px; transition: all 0.4s ease; }
.testimonial-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.testimonial-card.featured { transform: translateY(-12px); border-color: rgba(212,175,55,0.3); box-shadow: 0 15px 40px rgba(212,175,55,0.1); }
.testimonial-card.featured:hover { box-shadow: 0 20px 50px rgba(212,175,55,0.15); }
.testimonial-quote { font-size: 1rem; line-height: 1.75; color: var(--jc-text-body); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--jc-foreground); }
.testimonial-role { font-size: 0.8rem; color: var(--jc-text-muted); }

/* ======== IMPACT SECTION ======== */
.impact-section { padding: 140px 60px; background-color: var(--jc-canvas); position: relative; width: 100%; }
.impact-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.impact-quote-mark { position: absolute; top: -40px; left: -30px; font-family: var(--font-display); font-size: 280px; line-height: 1; color: var(--jc-foreground); opacity: 0.04; pointer-events: none; z-index: 0; user-select: none; }
.impact-title { font-family: var(--font-display); font-size: 2.8rem; line-height: 1.2; color: var(--jc-foreground); margin-bottom: 24px; font-weight: 400; }
.impact-text { font-size: 1.15rem; line-height: 1.8; color: var(--jc-text-body); max-width: 600px; }

/* ======== TEAM SECTION ======== */
.team-section { padding: 120px 60px; background-color: var(--jc-white); width: 100%; }
.team-container { max-width: 900px; margin: 0 auto; text-align: center; }
.team-card { display: flex; align-items: center; gap: 50px; text-align: left; background: var(--jc-canvas); border-radius: 24px; padding: 50px; margin-top: 40px; border: 1px solid var(--jc-border); }
.team-portrait { flex-shrink: 0; }
.team-portrait-placeholder { width: 140px; height: 140px; border-radius: 20px; background: linear-gradient(135deg, var(--jc-navy), #2d4a6e); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.4rem; color: var(--jc-white); }
.team-info { display: flex; flex-direction: column; gap: 10px; }
.team-name { font-family: var(--font-display); font-size: 2rem; color: var(--jc-foreground); font-weight: 400; }
.team-role { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--jc-gold-1); font-weight: 600; }
.team-bio { font-size: 1rem; line-height: 1.75; color: var(--jc-text-body); margin-bottom: 10px; }
.team-contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.team-link { display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--jc-text-muted); transition: color 0.3s; }
.team-link svg { width: 18px; height: 18px; }
.team-link:hover { color: var(--jc-gold-1); }
.team-whatsapp { font-size: 0.9rem; padding: 14px 28px; width: fit-content; }
.team-whatsapp svg { width: 18px; height: 18px; stroke: var(--jc-foreground); }

/* ======== CTA SECTION ======== */
.cta-section { position: relative; width: 100%; max-width: 100vw; padding: 140px 20px; background-color: var(--jc-foreground); text-align: center; color: var(--jc-white); overflow: hidden; z-index: 1; }
.cta-aurora-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
.cta-blob.blob-1 { width: 500px; height: 500px; background: var(--jc-gold-1); top: -150px; right: -100px; animation: auroraFloat 12s ease-in-out infinite alternate; }
.cta-blob.blob-2 { width: 400px; height: 400px; background: var(--jc-gold-2); bottom: -100px; left: -80px; animation: auroraFloat 10s ease-in-out infinite alternate-reverse; }
@keyframes auroraFloat { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.1); } 100% { transform: translate(-20px,20px) scale(0.95); } }
.cta-content { position: relative; z-index: 10; max-width: 700px; margin: 0 auto; }
.cta-subtitle { display: block; font-family: var(--font-mono); font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; font-weight: 600; }
.cta-title { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; margin: 0 0 50px 0; line-height: 1.15; }
.cta-buttons-wrapper { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.2); color: var(--jc-white); }
.cta-section .btn-ghost:hover { border-color: var(--jc-gold-1); color: var(--jc-gold-1); }

/* ======== FOOTER ======== */
.jobcast-footer-section { background-color: var(--jc-foreground); color: var(--jc-white); padding: 80px 40px 0 40px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; position: relative; z-index: 10; width: 100%; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; align-items: start; width: 100%; }
.footer-container > * { min-width: 0; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col h4 { color: var(--jc-gold-1); font-size: 0.95rem; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.5px; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 18px; display: block; }
.footer-desc { color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; font-size: 0.88rem; }
.footer-links { padding: 0; margin: 0; width: 100%; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.3s ease; font-weight: 400; display: block; font-size: 0.88rem; }
.footer-links a:hover { color: var(--jc-gold-1); padding-left: 5px; }
.footer-contact-item { margin-bottom: 16px; }
.footer-contact-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-bottom: 3px; font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase; }
.footer-contact-value { color: var(--jc-white); font-weight: 500; text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.footer-contact-value:hover { color: var(--jc-gold-1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 25px 0; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 20px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--jc-gold-1); }

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes bounceDown { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(8px); } 60% { transform: translateY(4px); } }

/* ======== RESPONSIVE — MOBILE (max-width: 768px) ======== */
@media (max-width: 768px) {
    .nexus-header { padding: 14px 20px; }
    .header-logo img { height: 30px; }
    .header-cta { font-size: 0.75rem; padding: 8px 18px; }
    .menu-text { display: none; }
    .nav-link { font-size: 2rem; }
    .menu-footer { flex-direction: column; gap: 15px; text-align: center; bottom: 30px; }

    .hero-section { padding: 100px 24px 60px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { margin: 0 auto; }
    .hero-cta-wrapper { justify-content: center; }
    .hero-visual { order: 1; }
    .hero-mockup-stack { max-width: 320px; margin: 0 auto; }
    .mockup-phone { width: 110px; right: -15px; bottom: -15px; }

    .deal-section { padding: 80px 24px; }
    .deal-container { grid-template-columns: 1fr; gap: 30px; }
    .deal-divider { height: 80px; }
    .deal-divider::before { top: auto; bottom: auto; left: 0; right: 0; width: 100%; height: 1px; top: 50%; }
    .deal-heading { font-size: 2rem; }

    .market-section { padding: 80px 24px; }
    .market-title { font-size: 2.2rem; }
    .market-grid { grid-template-columns: 1fr; }
    .market-stat { font-size: 3rem; }

    .value-section { padding: 80px 24px; }
    .value-title { font-size: 2.2rem; }
    .value-bento-grid { grid-template-columns: 1fr; }
    .value-card.large { grid-column: span 1; }

    .product-section { padding: 80px 24px; }
    .product-title { font-size: 2.2rem; }
    .product-showcase { flex-direction: column; align-items: center; }
    .product-dashboard-frame { max-width: 100%; }
    .pd-sidebar { display: none; }
    .product-phone-frame { position: relative; right: auto; top: auto; transform: none; margin-top: -40px; }
    .product-phone { width: 160px; }
    .bobbing, .bobbing-delayed { animation: none; }

    .validation-section { padding: 80px 24px; }
    .validation-title { font-size: 2.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: none; }

    .impact-section { padding: 80px 24px; }
    .impact-title { font-size: 2rem; }
    .impact-quote-mark { font-size: 160px; top: -20px; left: -10px; }

    .team-section { padding: 80px 24px; }
    .team-card { flex-direction: column; text-align: center; padding: 36px 28px; gap: 30px; }
    .team-info { align-items: center; }
    .team-contact-links { align-items: center; }
    .team-whatsapp { text-align: center; }

    .cta-section { padding: 100px 24px; }
    .cta-title { font-size: 2.4rem; }

    .jobcast-footer-section { padding: 60px 24px 0; }
    .footer-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .footer-col { align-items: center; text-align: center; }
    .footer-links a:hover { padding-left: 0; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* ======== RESPONSIVE — TABLET (769px - 1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { margin: 0 auto; }
    .hero-cta-wrapper { justify-content: center; }
    .hero-mockup-stack { max-width: 420px; margin: 0 auto; }

    .deal-container { grid-template-columns: 1fr; gap: 30px; }
    .deal-divider::before { width: 100%; height: 1px; left: 0; right: 0; top: 50%; bottom: auto; }

    .market-title { font-size: 2.5rem; }

    .value-bento-grid { grid-template-columns: 1fr 1fr; }

    .product-phone-frame { right: -20px; }
    .product-phone { width: 170px; }

    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
