/* ============================================================
   mehulpanchal.com — Personal brand site
   Design language matched to Filter Concept Pvt. Ltd.
   Montserrat / Poppins / JetBrains Mono · Blue + Teal gradient
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F4F8FC;
  --surface-3: #E9F0F8;
  --ink: #0B0B0F;
  --ink-2: #1E2430;
  --muted: #6A7280;
  --line: #E2E8EF;
  --line-strong: #C8D1DB;
  --accent: #1E73E8;
  --accent-hover: #155BC4;
  --accent-soft: #E7F0FE;
  --teal: #16C8C0;
  --blue: #1E73E8;
  --grad: linear-gradient(115deg, #16C8C0 0%, #1E73E8 100%);

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Poppins', 'Montserrat', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,0.06), 0 1px 3px rgba(11,37,69,0.04);
  --shadow-md: 0 4px 16px rgba(11,37,69,0.08), 0 2px 4px rgba(11,37,69,0.04);
  --shadow-lg: 0 18px 40px rgba(11,37,69,0.14), 0 4px 12px rgba(11,37,69,0.06);
}

/* Palette: Deep Ocean */
[data-theme="ocean"] {
  --bg: #F4F8FC; --surface: #FFFFFF; --surface-2: #E9F0F8; --surface-3: #D9E4F1;
  --ink: #0B2545; --ink-2: #13315C; --muted: #5A6E80; --line: #D8E0EA; --line-strong: #B8C4D4;
  --accent: #1E73E8; --accent-hover: #155BC4; --accent-soft: #E7F0FE;
  --teal: #2BB3E0; --blue: #1E73E8; --grad: linear-gradient(115deg, #2BB3E0 0%, #1E73E8 100%);
}
/* Palette: Sky */
[data-theme="sky"] {
  --bg: #FFFFFF; --surface: #FFFFFF; --surface-2: #F4F8FC; --surface-3: #E9F0F8;
  --ink: #0B0B0F; --ink-2: #1E2430; --muted: #6A7280; --line: #E2E8EF; --line-strong: #C8D1DB;
  --accent: #4A8BD6; --accent-hover: #2E6FBD; --accent-soft: #E7F0FE;
  --teal: #16C8C0; --blue: #4A8BD6; --grad: linear-gradient(115deg, #16C8C0 0%, #4A8BD6 100%);
}
/* Palette: Violet (Seeker-led) */
[data-theme="violet"] {
  --bg: #FFFFFF; --surface: #FFFFFF; --surface-2: #F6F4FC; --surface-3: #ECE6F8;
  --ink: #0B0B0F; --ink-2: #1E2430; --muted: #6A7280; --line: #E6E2EF; --line-strong: #CEC8DB;
  --accent: #7C5CFF; --accent-hover: #6444E0; --accent-soft: #EFEAFF;
  --teal: #16C8C0; --blue: #7C5CFF; --grad: linear-gradient(115deg, #16C8C0 0%, #7C5CFF 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Kicker / eyebrow */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 24px; height: 1px; background: var(--accent); display: inline-block; }
.kicker.light { color: rgba(255,255,255,0.9); }
.kicker.light::before { background: rgba(255,255,255,0.9); }
.eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-weight: 600; font-size: 15px;
  border-radius: var(--r-md); transition: all .15s ease; cursor: pointer;
  font-family: var(--font-display); letter-spacing: -0.005em;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30,115,232,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Section */
.section { padding: 96px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head.centered { display: block; text-align: center; }
.section-head.centered .kicker { display: inline-flex; }
.section-head h2 { font-size: 48px; margin-top: 14px; max-width: 720px; letter-spacing: -0.02em; line-height: 1.05; }
.section-head.centered h2 { margin: 14px auto 0; }
.section-head .lead { color: var(--muted); font-size: 18px; margin-top: 16px; max-width: 600px; }
.section-head.centered .lead { margin: 16px auto 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.rd1 { transition-delay: .08s; } .rd2 { transition-delay: .16s; } .rd3 { transition-delay: .24s; } .rd4 { transition-delay: .32s; }

/* ============ TOP STRIP ============ */
.top-strip { background: var(--grad); color: white; font-size: 12px; padding: 8px 0; font-weight: 500; }
.top-strip-inner { display: flex; justify-content: space-between; align-items: center; }
.top-strip a { color: white; opacity: .9; }
.top-strip a:hover { opacity: 1; }
.top-right { display: flex; gap: 20px; align-items: center; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid transparent; transition: all .2s ease; }
.site-header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; gap: 40px; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark { width: auto; height: 40px; display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.logo-text em { font-size: 10px; color: var(--muted); font-style: normal; font-weight: 500; margin-top: 2px; letter-spacing: 0.04em; }
.main-nav { display: flex; gap: 2px; }
.nav-item { padding: 10px 13px; font-size: 14px; font-weight: 500; color: var(--ink); border-radius: var(--r-md); transition: all .15s; }
.nav-item:hover { background: var(--surface-2); color: var(--accent); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r-md); flex-shrink: 0; background: transparent; }
.menu-toggle:hover { background: var(--surface-2); }
.menu-toggle .bars { position: relative; width: 20px; height: 14px; }
.menu-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease, top .25s ease; }
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 6px; }
.menu-toggle .bars span:nth-child(3) { top: 12px; }
.menu-toggle.active .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle.active .bars span:nth-child(2) { opacity: 0; }
.menu-toggle.active .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); max-height: calc(100vh - 64px); overflow-y: auto; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active, .mobile-nav a:hover { background: var(--surface-2); color: var(--accent); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 760px; display: flex; flex-direction: column; overflow: hidden; background: #0B0B0F; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .ph { width: 100%; height: 100%; background: linear-gradient(135deg, #11223a, #0B0B0F); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(22,200,192,0.30) 0%, rgba(30,115,232,0.45) 100%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,15,0.2) 40%, rgba(11,11,15,0.85) 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 1; }
.hero-glow.a { top: -15%; right: -8%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(22,200,192,0.35) 0%, transparent 65%); }
.hero-glow.b { bottom: -10%; left: -8%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(30,115,232,0.30) 0%, transparent 65%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 56px; padding: 90px 32px 56px; flex: 1; align-items: center; }
.hero-left { color: white; }
.hero-title { font-family: var(--font-display); font-size: 66px; line-height: 1.03; font-weight: 800; color: white; margin: 22px 0 20px; letter-spacing: -0.03em; text-wrap: balance; }
.hero-title .hl { background: linear-gradient(120deg, #C8F4F1, #8FB4E0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-roles { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #C8F4F1; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; background: rgba(255,255,255,0.04); }
.hero-sub { font-size: 18px; color: #C9D2DC; max-width: 600px; text-wrap: pretty; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-actions .btn-dark { background: white; color: var(--ink); }
.hero-actions .btn-dark:hover { background: #F4F8FC; }
.hero-actions .btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hero-right { display: flex; justify-content: flex-end; }
.hero-portrait { position: relative; width: 100%; max-width: 400px; }
.hero-portrait .frame { aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; }
.hero-portrait .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 40% center; display: block; }
.hero-portrait .ph-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; }
.hero-card { position: absolute; background: rgba(11,11,15,0.55); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-md); padding: 14px 18px; color: white; }
.hero-card.tl { top: 18px; left: -28px; }
.hero-card.br { bottom: 20px; right: -28px; }
.hero-card .hc-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.hero-card .hc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #C8F4F1; margin-top: 2px; }

.hero-ticker { position: relative; z-index: 2; background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 0; overflow: hidden; }
.ticker-row { display: flex; gap: 28px; font-family: var(--font-mono); font-size: 12px; color: #98A6B5; letter-spacing: 0.16em; white-space: nowrap; width: max-content; animation: ticker 55s linear infinite; }
.ticker-row em { color: var(--teal); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ STATS STRIP ============ */
.stats-strip { background: var(--ink); padding: 44px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.stat { padding: 12px 16px; border-right: 1px dashed rgba(255,255,255,0.14); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; line-height: 1; }
.stat-label { color: #C9D2DC; font-size: 13px; margin-top: 6px; }

/* ============ DIMENSIONS ============ */
.dims { padding: 96px 0; background: var(--bg); }
.dims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dim-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all .25s; color: var(--ink); }
.dim-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dim-top { height: 4px; }
.dim-media { aspect-ratio: 4/3; background: var(--surface-2); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.dim-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center 25%; display: block; }
.dim-media .ph-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.dim-media .badge { position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: white; padding: 6px 10px; border-radius: 100px; }
.dim-body { padding: 26px 26px 30px; }
.dim-title { font-size: 24px; margin-bottom: 12px; }
.dim-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.dim-meta { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-2); }
.dim-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============ JOURNEY ============ */
.journey { padding: 96px 0; background: var(--surface-2); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.journey-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.journey-collage .ph { border-radius: var(--r-md); background: linear-gradient(135deg, var(--surface-3), #DCE6F2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); overflow: hidden; position: relative; }
.journey-collage .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; display: block; }
.journey-collage .ph img.fit-full { object-fit: contain; }
.journey-text h2 { font-size: 46px; margin: 16px 0 24px; letter-spacing: -0.02em; line-height: 1.05; }
.journey-text p { font-size: 16.5px; color: var(--ink-2); line-height: 1.75; margin-bottom: 18px; }

/* ============ VENTURES ============ */
.ventures { padding: 96px 0; background: var(--ink); color: white; position: relative; }
.ventures::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.ventures .section-head h2 { color: white; }
.ventures .section-head .lead { color: #C9D2DC; }
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.venture-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09); border-top: 3px solid var(--accent); border-radius: var(--r-lg); padding: 28px 26px; transition: all .25s; cursor: pointer; }
.venture-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.venture-icon { width: 46px; height: 46px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: white; margin-bottom: 18px; }
.venture-card h3 { color: white; font-size: 23px; }
.venture-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }
.venture-desc { font-size: 13.5px; color: #98A6B5; line-height: 1.6; margin: 16px 0 18px; }
.venture-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.09); }
.venture-url { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

/* ============ WARRIOR ============ */
.warrior { padding: 96px 0; background: #0B0B0F; color: white; position: relative; overflow: hidden; }
.warrior-glow { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: radial-gradient(circle at 80% 50%, rgba(22,200,192,0.18) 0%, transparent 55%); }
.warrior-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.warrior-text h2 { color: white; font-size: 48px; margin: 20px 0 22px; letter-spacing: -0.02em; line-height: 1.05; }
.warrior-text p { font-size: 16.5px; color: #C9D2DC; line-height: 1.75; margin-bottom: 30px; max-width: 520px; }
.warrior-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.warrior-stats b { font-family: var(--font-display); font-size: 38px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; }
.warrior-stats span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #98A6B5; margin-top: 8px; display: block; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ig-cell { aspect-ratio: 1; border-radius: var(--r-sm); background: linear-gradient(135deg, #15243c, #0e1828); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.ig-cell::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity .2s; }
.ig-cell:hover::after { opacity: 0.18; }
.ig-cell img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ============ SEEKER ============ */
.seeker { padding: 96px 0; background: var(--surface-2); }
.seeker-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.seeker-text h2 { font-size: 48px; margin: 20px 0 22px; letter-spacing: -0.02em; line-height: 1.05; }
.seeker-text p { font-size: 16.5px; color: var(--ink-2); line-height: 1.75; margin-bottom: 24px; }
.sub-card { padding: 18px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 24px; }
.sub-card .eyebrow { color: var(--muted); }
.sub-card .big { font-family: var(--font-display); font-size: 30px; font-weight: 800; margin-top: 4px; }
.track-list { display: flex; flex-direction: column; gap: 20px; }
.track { display: grid; grid-template-columns: 132px 1fr auto; gap: 20px; align-items: center; padding: 16px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); transition: all .2s; cursor: pointer; }
.track:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.track-thumb { position: relative; aspect-ratio: 16/9; border-radius: var(--r-sm); overflow: hidden; background: linear-gradient(135deg, #11223a, #0B0B0F); }
.track-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.track-thumb::after { content: "▶"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); background: rgba(11,11,15,0.28); transition: background .2s; }
.track:hover .track-thumb::after { background: rgba(11,11,15,0.10); }
.track-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.track-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

/* ============ TIMELINE ============ */
.tl-section { padding: 96px 0; background: var(--bg); }
.timeline { position: relative; max-width: 980px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent); transform: translateX(-1px); }
.tl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 18px 0; align-items: center; }
.tl-side { position: relative; }
.tl-side.l { text-align: right; padding-right: 42px; }
.tl-side.r { padding-left: 42px; }
.tl-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; }
.tl-title.feat { font-size: 27px; }
.tl-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: 0.04em; }
.tl-year { font-family: var(--font-display); font-weight: 800; font-size: 34px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tl-dot { position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); border: 3px solid var(--bg); transform: translateY(-50%); }
.tl-side.l .tl-dot { right: -8px; }
.tl-side.r .tl-dot { left: -8px; }
.tl-quote { text-align: center; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 20px; color: var(--muted); margin-top: 8px; }

/* ============ IDEAS ============ */
.ideas { padding: 96px 0; background: var(--surface-2); }
.ideas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.idea-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all .25s; color: var(--ink); }
.idea-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.idea-media { aspect-ratio: 16/10;overflow: hidden;position: relative; background: linear-gradient(135deg, var(--surface-3), #DCE6F2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.idea-media img { position: absolute; top: 0; left: 0;width: 100%; height: 100%; object-fit: cover; display: block; }
.idea-media img.zoom-out { transform: scale(0.88); transform-origin: center center; }
.idea-body { padding: 24px; }
.idea-tags { display: flex; justify-content: space-between; margin-bottom: 14px; }
.idea-tags .cat { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.idea-tags .date { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.idea-card h3 { font-size: 21px; line-height: 1.25; }
.idea-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 12px; }
.idea-link { margin-top: 18px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); display: inline-flex; gap: 6px; }

/* ============ PRESS MARQUEE ============ */
.press { padding: 64px 0; background: var(--ink); color: white; position: relative; }
.press::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.press-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; gap: 20px; flex-wrap: wrap; }
.press-track-wrap { overflow: hidden; }
.press-track { display: flex; gap: 56px; width: max-content; animation: ticker 50s linear infinite; align-items: center; }
.press-logo { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: rgba(255,255,255,0.4); white-space: nowrap; letter-spacing: -0.01em; display: flex; align-items: center; gap: 56px; }
.press-logo .star { color: var(--teal); font-size: 16px; }

/* ============ CSR ============ */
.csr { padding: 96px 0; background: var(--bg); }
.csr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.csr-text h2 { font-size: 46px; margin: 16px 0 22px; letter-spacing: -0.02em; line-height: 1.05; }
.csr-text p { font-size: 16.5px; color: var(--ink-2); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }
.csr-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.csr-stat { padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); border-top: 3px solid transparent; background-image: linear-gradient(var(--surface), var(--surface)), var(--grad); background-origin: border-box; background-clip: padding-box, border-box; }
.csr-stat b { font-family: var(--font-display); font-size: 40px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; }
.csr-stat span { font-size: 12.5px; color: var(--muted); margin-top: 10px; display: block; line-height: 1.5; }

/* ============ QUOTE ============ */
.quote-sec { padding: 120px 0; background: var(--ink); color: white; text-align: center; position: relative; overflow: hidden; }
.quote-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(30,115,232,0.18) 0%, transparent 55%); }
.quote-sec blockquote { position: relative; z-index: 2; margin: 0 auto; max-width: 900px; font-family: var(--font-display); font-size: 40px; line-height: 1.3; font-weight: 700; letter-spacing: -0.02em; }
.quote-sec .sig { position: relative; z-index: 2; margin-top: 30px; display: inline-flex; align-items: center; gap: 14px; }
.quote-sec .sig i { width: 40px; height: 1px; background: var(--teal); display: inline-block; }
.quote-sec .sig span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }

/* ============ CONTACT ============ */
.contact { padding: 96px 0; background: var(--surface-2); position: relative; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-left h2 { font-size: 50px; margin: 16px 0 18px; letter-spacing: -0.02em; line-height: 1.05; }
.contact-left .lead { color: var(--muted); font-size: 17px; max-width: 460px; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; margin-top: 30px; box-shadow: var(--shadow-sm); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-field span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 500; }
.cf-field input, .cf-field select, .cf-field textarea { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 12px 14px; font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg); outline: none; transition: border-color .15s; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--accent); background: var(--surface); }
.cf-field textarea { resize: vertical; min-height: 96px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card { padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.ci-card .eyebrow { color: var(--muted); }
.ci-card strong { display: block; margin-top: 6px; font-family: var(--font-display); font-size: 17px; }
.ci-socials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.ci-social { padding: 14px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); transition: all .15s; }
.ci-social:hover { border-color: var(--accent); background: var(--accent-soft); }
.ci-social .eyebrow { color: var(--muted); }
.ci-social strong { display: block; font-family: var(--font-display); font-size: 14px; margin-top: 4px; }

/* ============ FOOTER ============ */
.site-footer { background: #0B0B0F; color: #C9D2DC; padding-top: 64px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.footer-top { display: grid; grid-template-columns: 1.3fr 2.4fr; gap: 60px; padding-bottom: 44px; }
.footer-brand .logo-mark { margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: white; font-style: italic; margin-bottom: 14px; }
.footer-blurb { font-size: 14px; line-height: 1.65; max-width: 360px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { color: white; font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #C9D2DC; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid #1E2430; padding: 22px 0; font-size: 13px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: #98A6B5; }

/* ============ TWEAKS ============ */
.tweaks-panel { position: fixed; bottom: 24px; right: 24px; width: 280px; background: white; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); z-index: 150; overflow: hidden; display: none; }
.tweaks-panel.show { display: block; }
.tweaks-head { padding: 14px 18px; background: var(--grad); color: white; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.tweaks-body { padding: 14px; }
.tweaks-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 4px 0 10px; }
.palette-opt { display: flex; align-items: center; gap: 12px; width: 100%; padding: 8px 10px; border-radius: var(--r-md); transition: all .15s; }
.palette-opt:hover, .palette-opt.active { background: var(--surface-2); }
.palette-swatches { display: flex; }
.palette-swatches i { width: 16px; height: 24px; border: 1px solid var(--line); border-right: none; display: block; }
.palette-swatches i:first-child { border-radius: 4px 0 0 4px; }
.palette-swatches i:last-child { border-right: 1px solid var(--line); border-radius: 0 4px 4px 0; }
.palette-name { flex: 1; text-align: left; font-size: 13px; font-weight: 500; }
.palette-check { color: var(--accent); font-weight: 700; opacity: 0; }
.palette-opt.active .palette-check { opacity: 1; }
.variant-row { display: flex; gap: 6px; margin-top: 6px; }
.variant-row button { flex: 1; padding: 8px; border: 1px solid var(--line); border-radius: var(--r-md); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: all .15s; }
.variant-row button.active { background: var(--grad); color: white; border-color: transparent; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: flex; justify-content: center; margin-top: 36px; }
  .hero-portrait { max-width: 300px; }
  .hero-card { padding: 8px 11px; }
  .hero-card .hc-num { font-size: 16px; }
  .hero-card .hc-label { font-size: 9px; }
  .hero-card.tl { left: -16px; top: -14px; }
  .hero-card.br { right: -16px; bottom: -14px; }
  .hero-title { font-size: 48px; }
  .dims-grid, .ventures-grid, .ideas-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .journey-grid, .warrior-grid, .seeker-grid, .csr-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .top-strip { display: none; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .section, .dims, .journey, .ventures, .warrior, .seeker, .tl-section, .ideas, .csr, .contact { padding: 64px 0; }
  .hero-title { font-size: 38px; }
  .hero-portrait { max-width: 240px; }
  .section-head h2, .journey-text h2, .warrior-text h2, .seeker-text h2, .csr-text h2, .contact-left h2 { font-size: 30px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .warrior-stats { grid-template-columns: 1fr 1fr 1fr; }
  .quote-sec blockquote { font-size: 24px; }
  .timeline::before { left: 20px; }
  .tl-row { grid-template-columns: 1fr; gap: 0; }
  .tl-side.l { text-align: left; padding-right: 0; padding-left: 42px; }
  .tl-side.l .tl-dot { left: -8px; right: auto; }
  .tl-side.r { padding-left: 42px; }
  .tl-row .tl-side.l { order: 2; margin-top: 4px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .press-logo { font-size: 22px; }
  .track { grid-template-columns: 96px 1fr auto; gap: 14px; padding: 12px 14px; }
  .track-name { font-size: 16px; }
}
@media (max-width: 480px) {
  .logo-text { display: none; }
  .hero-title { font-size: 30px; }
  .hero-roles { gap: 8px; }
  .hero-card.tl { top: -12px; left: -12px; }
  .hero-card.br { bottom: -12px; right: -12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 30px; }
  .warrior-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .csr-stats { grid-template-columns: 1fr; }
  .ci-socials { grid-template-columns: 1fr; }
  .track { grid-template-columns: 1fr; }
  .track-thumb { aspect-ratio: 16/9; width: 100%; }
  .track > span { display: none; }
  .page-hero h1 { font-size: 30px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
