/* ================================================
   BHAVYA.XYZ — Igor Blink Bento Theme
   Dark glassmorphic bento grid personal website
   ================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:          #020202;
  --surface:     #0f0f0f;
  --surface2:    #141414;
  --surface3:    #1a1a1a;
  --border:      rgba(255, 255, 255, 0.08);
  --border-h:    rgba(255, 255, 255, 0.15);
  --text:        #EAEAEA;
  --text-muted:  rgba(234, 234, 234, 0.6);
  --text-dim:    rgba(234, 234, 234, 0.3);
  --text-xdim:   rgba(234, 234, 234, 0.15);
  --accent:      #6366f1;       /* indigo */
  --accent-rose: #f43f5e;       /* rose */
  --accent-gold: #f59e0b;       /* amber */
  --green:       #34d399;
  --radius:      2rem;
  --shadow:      0 8px 30px rgba(0, 0, 0, 0.5);
  --font-sans:   'Geist', 'Inter', system-ui, sans-serif;
  --font-mono:   'Geist Mono', 'JetBrains Mono', monospace;
  --font-hand:   'Caveat', cursive;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SELECTION ── */
::selection {
  background: rgba(234, 234, 234, 0.2);
  color: #fff;
}

/* ── NOISE OVERLAY ── */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── AMBIENT ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}
.orb-top-left {
  top: -10%;
  left: -10%;
  width: 45%;
  height: 45%;
  background: rgba(99, 102, 241, 0.12);
}
.orb-bottom-right {
  bottom: -10%;
  right: -10%;
  width: 45%;
  height: 45%;
  background: rgba(244, 63, 94, 0.10);
}
.orb-center {
  top: 40%;
  left: 35%;
  width: 30%;
  height: 30%;
  background: rgba(245, 158, 11, 0.04);
  filter: blur(180px);
}

/* ── UTILITIES ── */
.label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.label-mono.small { font-size: 9px; margin-bottom: 1rem; display: block; }

/* ── MAIN LAYOUT ── */
.main-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 2rem 1rem 1rem;
}

/* ── BENTO GRID ── */
.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 1rem;
}

/* ── SHARED CARD STYLES ── */
.card {
  background: linear-gradient(135deg, rgba(18,18,18,0.85) 0%, rgba(10,10,10,0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.card:hover {
  border-color: var(--border-h);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
}

/* Card shine effect on hover */
.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.card:hover .card-shine { opacity: 1; }

/* ── CARD GRID PLACEMENTS ── */
/* Card 1: Hero — col 1-2, row 1-2 */
.card-hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,0.9) 100%);
}

/* Card 2: Photo — col 3, row 1-2 */
.card-photo {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  padding: 0;
  min-height: 280px;
}

/* Card 3: Numbers — col 4, row 1-2 */
.card-numbers {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Card 4: About — col 1-2, row 3-4 */
.card-about {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card 5: Pillars — col 3-4, row 3-4 */
.card-pillars {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(10,10,10,0.9));
}

/* Card 6 removed (blog posts) */


/* Card 7: Content — col 1-2, row 5-6 */
.card-content {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card 8: Connect — col 3-4, row 5-6 */
.card-connect {
  grid-column: 3 / 5;
  grid-row: 5 / 7;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Card 9: CTA — col 1-4 full */
.card-cta {
  grid-column: 1 / 5;
  grid-row: 7 / 8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem 2.5rem;
  background: linear-gradient(90deg, rgba(20,20,20,0.9) 0%, rgba(26,26,26,0.9) 50%, rgba(20,20,20,0.9) 100%);
}

/* ── HERO CARD ── */
.card-hero-eyebrow {
  margin-bottom: 0.25rem;
}

.hero-name {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .hero-name { flex-direction: row; align-items: center; gap: 0.4em; }
}

.hero-first { color: var(--text); }

.hero-last-wrapper {
  position: relative;
  overflow: hidden;
  height: 1em;
  min-width: 220px;
  cursor: default;
}
@media (min-width: 640px) { .hero-last-wrapper { min-width: 300px; } }

.hero-last-inner {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-name:hover .hero-last-inner {
  transform: translateY(-1em);
}

.hero-last-a,
.hero-last-b {
  height: 1em;
  display: flex;
  align-items: center;
  color: var(--text);
}

.hero-alter {
  font-size: 0.24em;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-transform: lowercase;
  margin-left: 0.5em;
  white-space: nowrap;
}

.highlight-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.2em 0.55em;
  border-radius: 0.35em;
  font-size: 0.9em;
  margin-bottom: 0.5rem;
}

.hero-desc {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
}
.hero-desc strong { color: var(--text); font-weight: 500; }
.hero-desc a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.hero-desc a:hover { text-decoration-color: rgba(255,255,255,0.8); }
.hero-sub-muted { color: var(--text-dim); font-size: 0.875em; }

.hero-tagline {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-tagline strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── PHOTO CARD ── */
.card-photo {
  position: relative;
  overflow: hidden;
}


.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
  z-index: 1;
}
.card-photo:hover .photo-img {
  filter: grayscale(0);
  opacity: 0.9;
  transform: scale(1.05);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #050505 0%, rgba(5,5,5,0.4) 45%, transparent 100%);
  opacity: 0.9;
  transition: opacity 0.7s ease;
}
.card-photo:hover .photo-overlay { opacity: 0.55; }

/* Handwritten annotations */
.handwrite {
  position: absolute;
  font-family: var(--font-hand);
  color: #ff6b6b;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  z-index: 20;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 0.9;
}
.handwrite-1 { top: 5%;  left: 8%;  transform: rotate(-12deg); }
.handwrite-2 { top: 12%; right: 8%; transform: rotate(8deg); }
.handwrite-3 { top: 20%; left: 8%; transform: rotate(-5deg); }
.handwrite-4 { top: 28%; right: 8%; transform: rotate(10deg); }

.photo-footer {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 25;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.social-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, transform 0.3s, filter 0.3s;
  text-decoration: none;
}
.social-icon svg { width: 14px; height: 14px; }
.social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

/* ── NUMBERS CARD ── */
.card-numbers { padding: 1.75rem 1.75rem; }
.numbers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}
.number-item { cursor: default; }
.number-val {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: 3px;
  transition: color 0.2s, transform 0.2s;
}
.number-item:hover .number-val {
  color: #fff;
  transform: translateY(-2px);
}
.number-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── ABOUT CARD ── */
.card-about { padding: 2rem 2.25rem; }
.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  flex: 1;
}
.about-text-block strong { color: var(--text); font-weight: 500; }

/* ── PILLARS CARD ── */
.pillars-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  padding: 0.3em 0.6em;
  border-radius: 0.35em;
}
.pillars-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0.25rem;
}
.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: default;
  transition: padding-left 0.3s ease;
}
.pillar-item:last-child { border-bottom: none; }
.pillar-item:hover { padding-left: 0.5rem; background: rgba(255,255,255,0.015); border-radius: 0.5rem; }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-xdim);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.pillar-item:hover .pillar-num { color: var(--text-dim); }
.pillar-name {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.pillar-item:hover .pillar-name { color: #fff; }
.pillar-desc {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
}

/* ── WRITING CARD ── */
.card-writing { padding: 1.75rem 2.25rem; }
.writing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.card-section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 0.25rem;
}
.writing-sub {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

.posts-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.post-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  transition: background 0.25s, padding-left 0.25s;
  cursor: pointer;
  position: relative;
}
.post-row:hover {
  background: rgba(255,255,255,0.03);
  padding-left: 1.25rem;
}
.post-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  white-space: nowrap;
  min-width: 80px;
}
.post-body { flex: 1; }
.post-title {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.post-row:hover .post-title { color: #fff; }
.post-desc {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.5;
}
.post-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25em 0.5em;
  border-radius: 0.3em;
  white-space: nowrap;
  flex-shrink: 0;
}
.post-arrow {
  font-size: 14px;
  color: var(--text-xdim);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.post-row:hover .post-arrow {
  color: rgba(255,255,255,0.6);
  transform: translate(2px, -2px);
}

/* ── CONTENT CARD ── */
.content-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.card-section-title-sm {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 0.25rem;
}
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6em 1em;
  border-radius: 0.6em;
  flex-shrink: 0;
  align-self: flex-start;
  transition: all 0.25s;
}
.yt-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.yt-icon { width: 14px; height: 14px; flex-shrink: 0; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s, border-color 0.25s;
}
.video-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  position: relative;
  overflow: hidden;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08), transparent 70%);
}
.play-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}
.video-card:hover .play-btn { border-color: rgba(255,255,255,0.5); }
.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent rgba(255,255,255,0.7);
  margin-left: 2px;
}
.video-tag-sm {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.video-title-sm {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  transition: color 0.2s;
}
.video-card:hover .video-title-sm { color: #fff; }
.video-channel {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-xdim);
  letter-spacing: 0.08em;
}

/* ── CONNECT CARD ── */
.card-connect { padding: 2rem 2.25rem; }
.connect-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin: 0.25rem 0 0.75rem;
}
.connect-title em {
  font-style: italic;
  color: rgba(99, 102, 241, 0.85);
}
.connect-body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.connect-socials {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex: 1;
}
.connect-social-row {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  transition: background 0.2s, padding-left 0.2s;
  gap: 0.5rem;
}
.connect-social-row:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 0.75rem;
}
.csocial-platform {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 72px;
  flex-shrink: 0;
}
.csocial-handle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  flex: 1;
  transition: color 0.2s;
}
.connect-social-row:hover .csocial-handle { color: #fff; }
.csocial-arrow {
  font-size: 12px;
  color: var(--text-xdim);
  transition: color 0.2s, transform 0.2s;
}
.connect-social-row:hover .csocial-arrow {
  color: var(--text-muted);
  transform: translateX(3px);
}

/* ── CTA CARD ── */
.cta-slogan {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.3s;
}
.cta-icon-btn svg { width: 18px; height: 18px; }
.cta-icon-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  transform: scale(1.1);
}
.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65em 1.25em;
  border-radius: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}
.cta-primary-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: scale(1.04);
}
.cta-primary-white {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
}
.cta-primary-white:hover {
  background: #e5e5e5;
  color: #000;
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
}
.btn-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-logo:hover { color: #fff; }
.footer-dot { color: var(--accent); }
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-xdim);
}

/* ── ENTRY ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bento-grid {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-hero    { grid-column: 1 / 3; grid-row: 1 / 3; }
  .card-photo   { grid-column: 3 / 4; grid-row: 1 / 3; }
  .card-numbers { grid-column: 1 / 2; grid-row: 3 / 4; }
  .card-about   { grid-column: 2 / 4; grid-row: 3 / 5; }
  .card-pillars { grid-column: 1 / 2; grid-row: 4 / 6; }
  .card-writing { grid-column: 1 / 4; }
  .card-content { grid-column: 1 / 2; }
  .card-connect { grid-column: 2 / 4; }
  .card-cta     { grid-column: 1 / 4; }
}

@media (max-width: 768px) {
  .main-wrapper { padding: 1rem 0.75rem 0.75rem; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .card { padding: 1.5rem; border-radius: 1.5rem; }
  .card-hero    { grid-column: 1 / 3; grid-row: auto; }
  .card-photo   { grid-column: 1 / 2; grid-row: auto; min-height: 240px; }
  .card-numbers { grid-column: 2 / 3; grid-row: auto; }
  .card-about   { grid-column: 1 / 3; grid-row: auto; }
  .card-pillars { grid-column: 1 / 3; grid-row: auto; }
  .card-writing { grid-column: 1 / 3; }
  .card-content { grid-column: 1 / 3; }
  .card-connect { grid-column: 1 / 3; }
  .card-cta     { grid-column: 1 / 3; flex-direction: column; align-items: flex-start; }
  .videos-grid { grid-template-columns: 1fr; }
  .writing-sub { text-align: left; max-width: 100%; }
  .hero-last-wrapper { min-width: 160px; }
  .hero-alter { display: none; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .card-hero    { grid-column: 1; }
  .card-photo   { grid-column: 1; }
  .card-numbers { grid-column: 1; }
  .card-about   { grid-column: 1; }
  .card-pillars { grid-column: 1; }
  .card-writing { grid-column: 1; }
  .card-content { grid-column: 1; }
  .card-connect { grid-column: 1; }
  .card-cta     { grid-column: 1; }
  .post-row { flex-wrap: wrap; gap: 0.5rem; }
  .post-date { min-width: auto; }
  .post-tag { display: none; }
  .footer-nav { display: none; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
