/* ═══════════════════════════════════════════════════════════════
   BURHAN KOCABIYIK — Main Website
   Design: Clean, editorial, restrained. No vibe-coding.
═══════════════════════════════════════════════════════════════ */

:root {
  --bg:       #0c0c0c;
  --surface:  #111111;
  --card:     #161616;
  --raised:   #1c1c1c;
  --border:   #262626;
  --border-2: #333333;

  --text:     #f5f5f5;
  --text-2:   #a3a3a3;
  --text-3:   #525252;

  --accent:   #ffffff;
  --green:    #22c55e;
  --blue:     #3b82f6;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:  8px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  24px;

  --sh:    0 1px 3px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
  --sh-lg: 0 4px 24px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }
.section-alt { background: var(--surface); }
.section-alt + .section-alt { border-top: 1px solid var(--border); }

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}
h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
p { color: var(--text-2); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover  { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-white  { background: #fff; color: #000; }
.btn-ghost  { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: #555; background: var(--raised); }

.btn-sm { padding: 8px 16px; font-size: 0.78rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: background 0.2s, border-color 0.2s, padding 0.2s;
}
.nav.scrolled {
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 5px 11px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--raised); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── HERO ── */
.hero {
  padding: 152px 0 88px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Social row */
.hero-socials {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
}
.hero-social:hover { color: var(--text); border-color: var(--border-2); }

/* Hero photo */
.hero-photo {
  position: relative;
}
.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-photo-initials {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -6px;
  color: var(--border-2);
  user-select: none;
}

/* Floating stat cards */
.hero-stat {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  box-shadow: var(--sh);
  z-index: 2;
}
.hero-stat-label { font-size: 0.68rem; font-weight: 600; color: var(--text-3); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat-value { font-size: 1rem; font-weight: 700; color: var(--text); }
.hero-stat-1 { bottom: 32px; left: -20px; }
.hero-stat-2 { top: 28px; right: -16px; }

/* ── METRICS BAR ── */
.metrics { padding: 0 0 88px; }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.metric {
  background: var(--card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s;
}
.metric:hover { background: var(--raised); }
.metric-num {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.metric-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-3);
}

/* ── VENTURES (liamottley-style) ── */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.venture {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.venture:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.venture-active { border-color: #2a2a2a; }

.venture-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.venture-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.vm-cm { background: #1a1a2e; color: #818cf8; border: 1px solid #2a2a4a; }
.vm-ar { background: #0a1e14; color: #34d399; border: 1px solid #1a4030; }
.vm-at { background: #1e1a0a; color: #fbbf24; border: 1px solid #3a300a; }
.vm-gm { background: #1e0a14; color: #f472b6; border: 1px solid #3a1a28; }

.venture-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}
.vb-active   { background: #0a2e1a; color: #34d399; border: 1px solid #1a5a30; }
.vb-acquired { background: #0a2e1a; color: #34d399; border: 1px solid #1a5a30; }
.vb-closed   { background: #1a1a1a; color: var(--text-3); border: 1px solid var(--border); }

.venture h3  { font-size: 1.1rem; margin-bottom: 3px; }
.venture-yr  { font-size: 0.75rem; color: var(--text-3); font-weight: 500; margin-bottom: 10px; }
.venture-desc{ font-size: 0.85rem; line-height: 1.65; flex: 1; }

.venture-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.chip {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--raised);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
}

.venture-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.15s;
}
.venture-link:hover { color: var(--text); }

.venture-exit {
  font-size: 0.75rem;
  font-weight: 600;
  color: #34d399;
  background: #0a2e1a;
  border: 1px solid #1a5a30;
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

/* ── CONNECT (liamottley-style cards) ── */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.connect-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.connect-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.connect-icon { font-size: 1.75rem; }
.connect-card h3 { font-size: 0.95rem; }
.connect-card p  { font-size: 0.82rem; flex: 1; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.about-left { position: sticky; top: 100px; }
.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-initials {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -5px;
  color: var(--border-2);
  user-select: none;
}
.about-meta {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.meta-row:last-child { border-bottom: none; }
.meta-icon { font-size: 1rem; flex-shrink: 0; }
.meta-text { color: var(--text-2); }

.about-right .eyebrow { display: block; }
.about-right h2  { margin-bottom: 24px; }
.about-right p   { font-size: 0.93rem; margin-bottom: 16px; }
.about-right p strong { color: var(--text); font-weight: 600; }

/* ── RESOURCES (nicksaraev-style) ── */
.resources-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.resource {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.resource:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.resource-main {
  border-color: var(--border-2);
}
.resource-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.resource-main .resource-tag { color: #818cf8; }
.resource-icon { font-size: 2.2rem; }
.resource h3   { font-size: 1rem; }
.resource > p  { font-size: 0.83rem; }
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.resource-list li {
  font-size: 0.8rem;
  color: var(--text-2);
  display: flex;
  gap: 8px;
}
.resource-list li span { color: var(--green); }

/* ── NEWSLETTER ── */
.newsletter-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nl-left .eyebrow { display: block; margin-bottom: 10px; }
.nl-left h2        { margin-bottom: 14px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.nl-left p         { font-size: 0.9rem; }
.nl-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.nl-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.nl-stat span {
  font-size: 0.75rem;
  color: var(--text-3);
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-form label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
}
.nl-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.nl-input::placeholder { color: var(--text-3); }
.nl-input:focus { border-color: #555; }
.nl-note {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 4px;
}
.nl-success {
  display: none;
  padding: 12px 16px;
  background: #0a2e1a;
  border: 1px solid #1a5a30;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #34d399;
}
.nl-success.show { display: block; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.post:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.post-cat  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.post h3   { font-size: 0.95rem; line-height: 1.45; flex: 1; }
.post > p  { font-size: 0.82rem; }
.post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.post-meta { font-size: 0.72rem; color: var(--text-3); font-weight: 500; }
.post-read { font-size: 0.78rem; font-weight: 600; color: var(--text-2); transition: color 0.15s; }
.post-read:hover { color: var(--text); }

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.82rem;
  max-width: 200px;
  margin-bottom: 18px;
}
.footer-socials { display: flex; flex-direction: column; gap: 7px; }
.footer-socials a {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-socials a:hover { color: var(--text); }

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-3);
  margin: 0;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--raised);
  border: 1px solid var(--border-2);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 800;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); }

/* ── ANIMATE ── */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
[data-anim].in {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRESS BAR ── */
.press-bar {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-bar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.press-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.press-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: var(--card);
  transition: background 0.15s;
  cursor: pointer;
}
.press-item:hover { background: var(--raised); }
.press-pub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.press-hl {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.55;
  flex: 1;
  font-style: italic;
}
.press-yr {
  font-size: 0.68rem;
  color: var(--text-3);
  font-weight: 600;
}

/* ── SECTION SUBTITLE ── */
.section-sub {
  font-size: 0.93rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
}

/* ── VIDEO SECTION ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-thumb-blue   { background-color: #1e3a5f; }
.video-thumb-purple { background-color: #2d1b69; }
.video-thumb-green  { background-color: #064e3b; }
.video-thumb-blue::before   { background: linear-gradient(135deg, rgba(20,40,80,0.82), rgba(20,60,120,0.72)); }
.video-thumb-purple::before { background: linear-gradient(135deg, rgba(35,15,80,0.82), rgba(75,20,160,0.72)); }
.video-thumb-green::before  { background: linear-gradient(135deg, rgba(4,50,36,0.82), rgba(3,90,60,0.72)); }
.video-icon {
  font-size: 2.8rem;
  opacity: 0.55;
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
}
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  padding-left: 3px;
  transition: background 0.15s, transform 0.15s;
}
.video-card:hover .play-btn {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}
.video-meta {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.video-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-top: 2px;
}
.video-desc {
  font-size: 0.77rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 4px;
}

/* ── VIDEO COMMUNITY CARD ── */
.video-community {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-top: 12px;
}
.community-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 8px;
}
.community-text h3 { font-size: 1.05rem; margin-bottom: 6px; }
.community-text p  { font-size: 0.83rem; color: var(--text-2); max-width: 480px; }
.community-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr 300px; gap: 40px; }
  .connect-grid    { grid-template-columns: repeat(2, 1fr); }
  .ventures-grid   { grid-template-columns: repeat(2, 1fr); }
  .metrics-row     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-wrap { padding: 48px 40px; gap: 40px; }
  .resources-grid  { grid-template-columns: 1fr 1fr; }
  .resource-main   { grid-column: 1 / -1; }
  .press-items     { grid-template-columns: repeat(2, 1fr); }
  .video-grid      { grid-template-columns: repeat(2, 1fr); }
  .video-community { flex-direction: column; align-items: flex-start; }
  .community-actions { justify-content: flex-start; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: rgba(12,12,12,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    flex-direction: column;
    gap: 2px;
    z-index: 899;
  }
  .nav-links.open { display: flex; }
  .nav-links a    { padding: 11px 12px; font-size: 0.9rem; }
  .nav .btn-white  { display: none; }
  .nav .btn-ghost  { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 108px 0 64px; }
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero h1    { font-size: 2.2rem; }
  .hero-sub   { font-size: 1rem; margin-bottom: 28px; }
  .hero-tag   { font-size: 0.7rem; }
  .hero-actions { gap: 8px; }
  .hero-socials { gap: 6px; padding-top: 24px; }

  /* Metrics */
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .metric      { padding: 28px 20px; }
  .metric-num  { font-size: 1.9rem; }

  /* Ventures */
  .ventures-grid { grid-template-columns: 1fr; }

  /* Connect */
  .connect-grid  { grid-template-columns: 1fr; }

  /* About */
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-left  { position: static; }
  .about-photo-wrap { max-height: 280px; }

  /* Resources */
  .resources-grid { grid-template-columns: 1fr; }
  .resource-main  { grid-column: auto; }

  /* Press & Videos */
  .press-items    { grid-template-columns: 1fr; }
  .video-grid     { grid-template-columns: 1fr; }
  .video-community { padding: 24px 20px; gap: 20px; }
  .community-actions { flex-direction: column; width: 100%; }
  .community-actions .btn { text-align: center; justify-content: center; }

  /* Newsletter */
  .newsletter-wrap {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }
  .nl-stats { gap: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
  .hero h1       { font-size: 1.95rem; letter-spacing: -0.025em; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-socials  { display: none; }

  .metrics-row   { grid-template-columns: 1fr 1fr; }
  .metric        { padding: 24px 16px; }
  .metric-num    { font-size: 1.75rem; }

  .venture       { padding: 22px 20px; }

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-col    { display: none; }
  .footer-col:first-of-type { display: block; }

  .newsletter-wrap { padding: 28px 20px; }
  .nl-input, .btn-white { font-size: 1rem; padding: 14px 16px; }
}
