/* ===========================
   CSS RESET & ROOT VARIABLES
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --background: #040814;
  --foreground: #f8fbff;
  --muted: #97a4c2;
  --border: rgba(148, 163, 184, 0.18);
  --panel: rgba(8, 15, 30, 0.72);
  --panel-strong: rgba(8, 15, 30, 0.9);
  --blue: #68b8ff;
  --cyan: #8ae7ff;
  --violet: #845dff;
  --purple: #c166ff;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(43, 119, 255, 0.18), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(90, 53, 255, 0.2), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(0, 184, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #040814 0%, #050917 38%, #04070f 100%);
  color: var(--foreground);
  font-family: var(--font-body);
}

::selection {
  background: rgba(104, 184, 255, 0.28);
}

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

ul {
  list-style: none;
}

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

/* ===========================
   TRANSITIONS
   =========================== */
a, button {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

/* ===========================
   BACKGROUND GRID
   =========================== */
.background-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 90%);
  mask-image: radial-gradient(circle at center, black, transparent 90%);
  z-index: 0;
}

/* ===========================
   PROGRESS LINE
   =========================== */
.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.55);
}

/* ===========================
   FLOATING ORBS
   =========================== */
.floating-orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.45;
}

.orb-one {
  left: -8rem;
  top: 10rem;
  height: 18rem;
  width: 18rem;
  background: rgba(59, 130, 246, 0.5);
}

.orb-two {
  right: -5rem;
  top: 18rem;
  height: 22rem;
  width: 22rem;
  background: rgba(139, 92, 246, 0.34);
}

.orb-three {
  bottom: 8rem;
  left: 40%;
  height: 20rem;
  width: 20rem;
  background: rgba(34, 211, 238, 0.22);
}

/* ===========================
   SECTION SPACING
   =========================== */
.section-space {
  position: relative;
  padding-top: 7.5rem;
}

/* ===========================
   GLASS PANEL
   =========================== */
.glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, var(--panel), var(--panel-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(1, 9, 24, 0.42);
  backdrop-filter: blur(28px);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(104, 184, 255, 0.12), transparent 30%, transparent 70%, rgba(193, 102, 255, 0.14));
  pointer-events: none;
}

/* ===========================
   BUTTONS
   =========================== */
.glow-button,
.ghost-button,
.social-pill,
.tech-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.glow-button {
  border: 1px solid rgba(138, 231, 255, 0.3);
  background: linear-gradient(135deg, rgba(46, 122, 255, 0.95), rgba(124, 58, 237, 0.92));
  padding: 0.95rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  box-shadow:
    0 0 0 1px rgba(138, 231, 255, 0.12),
    0 18px 48px rgba(72, 126, 255, 0.32);
  cursor: pointer;
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(138, 231, 255, 0.18),
    0 24px 60px rgba(72, 126, 255, 0.42);
  color: white;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(18px);
}

.ghost-button:hover {
  border-color: rgba(138, 231, 255, 0.28);
  color: white;
  transform: translateY(-2px);
}

.social-pill {
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 1rem;
  color: rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(16px);
}

.social-pill:hover {
  border-color: rgba(138, 231, 255, 0.28);
  color: white;
  transform: translateY(-2px);
}

.tech-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.88);
  letter-spacing: 0.02em;
  backdrop-filter: blur(16px);
}

/* ===========================
   TEXT GRADIENT
   =========================== */
.text-gradient {
  background: linear-gradient(125deg, #e7f4ff 10%, #7dd3fc 40%, #7c3aed 75%, #f0abfc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-top: 1rem;
}

/* ===========================
   HERO VISUAL
   =========================== */
.hero-visual-shell {
  position: relative;
  isolation: isolate;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 10%),
    linear-gradient(160deg, rgba(9, 18, 38, 0.92), rgba(5, 10, 24, 0.76));
  padding: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 90px rgba(0, 0, 0, 0.45);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -30% 25% auto -18%;
  height: 60%;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.22);
  filter: blur(54px);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 43rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 17, 34, 0.56), rgba(10, 17, 34, 0.84)),
    linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(124, 58, 237, 0.14));
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-photo-label {
  position: absolute;
  inset-inline: 2rem;
  top: 1.5rem;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(186, 230, 253, 0.75);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(94, 163, 255, 0.32), transparent 28%),
              linear-gradient(180deg, rgba(8, 16, 38, 0.2), rgba(8, 16, 38, 0.84));
}

.hero-photo-inner {
  position: relative;
  margin: 0 auto;
  margin-top: 5.5rem;
  height: 28rem;
  width: min(24rem, 86%);
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(10, 17, 34, 0.56), rgba(10, 17, 34, 0.84)),
    linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(124, 58, 237, 0.14));
  box-shadow: 0 30px 100px rgba(8, 15, 35, 0.65);
}

.hero-photo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(94, 163, 255, 0.32), transparent 28%),
              linear-gradient(180deg, rgba(8, 16, 38, 0.2), rgba(8, 16, 38, 0.84));
  z-index: 0;
}

.hero-photo-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  
}

/* ===========================
   HERO SHARDS
   =========================== */
.hero-shard {
  position: absolute;
  z-index: 0;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, var(--panel), var(--panel-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(1, 9, 24, 0.42);
  backdrop-filter: blur(28px);
}

.hero-shard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(104, 184, 255, 0.12), transparent 30%, transparent 70%, rgba(193, 102, 255, 0.14));
  pointer-events: none;
}

.hero-shard-one {
  left: -2rem;
  top: 2rem;
  height: 7rem;
  width: 7rem;
  transform: rotate(-12deg);
  animation: floatShard1 6s ease-in-out infinite;
}

.hero-shard-two {
  right: -1.5rem;
  top: 4.5rem;
  height: 8rem;
  width: 8rem;
  transform: rotate(20deg);
  animation: floatShard2 7s ease-in-out infinite;
}

.hero-shard-three {
  bottom: 6rem;
  left: -1.25rem;
  height: 6rem;
  width: 6rem;
  transform: rotate(16deg);
  animation: floatShard3 5.5s ease-in-out infinite;
}

@keyframes floatShard1 {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-14px); }
}

@keyframes floatShard2 {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(18px); }
}

@keyframes floatShard3 {
  0%, 100% { transform: rotate(16deg) translateY(0); }
  50% { transform: rotate(26deg) translateY(-12px); }
}

/* ===========================
   FLOATING METRICS
   =========================== */
.floating-metric {
  position: absolute;
  z-index: 30;
  display: flex;
  min-width: 10rem;
  flex-direction: column;
  gap: 0.2rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 14, 28, 0.8);
  padding: 1rem 1.05rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  transition: transform 200ms ease;
}

.floating-metric:hover {
  transform: translateY(-6px);
}

.metric-top-left {
  left: -1rem;
  top: 12%;
}

.metric-top-right {
  right: -1rem;
  top: 18%;
}

.metric-bottom {
  bottom: 10px;
  right: 8px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.04em;
}

.metric-label {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.76);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===========================
   STAT CARD
   =========================== */
.stat-card {
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  height: 100%;
}

.card-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.75);
}

/* ===========================
   SECTION HEADING
   =========================== */
.section-heading {
  max-width: 32rem;
}

.section-heading.center {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(186, 230, 253, 0.7);
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: white;
}

.section-heading .body {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2;
  color: #cbd5e1;
}

/* ===========================
   MAGNETIC CARD (hover effect)
   =========================== */
.magnetic-card {
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.magnetic-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* ===========================
   REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-shard {
    animation: none;
  }
}

/* ===========================
   HEADER / NAV
   =========================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(4, 8, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: white;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: background 180ms ease;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  background: currentColor;
  transition: transform 300ms ease, opacity 300ms ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(4, 8, 20, 0.95);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 400px;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.25rem;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: #e2e8f0;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  padding: 4rem 1.5rem 5rem;
}

.hero-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.founder-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: rgba(103, 232, 249, 0.1);
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(224, 247, 250, 0.8);
}

.founder-signal-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 16px rgba(103, 232, 249, 0.8);
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  color: white;
  margin-top: 2rem;
  max-width: 56rem;
}

.hero-subtitle {
  margin-top: 2rem;
  max-width: 48rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2;
  color: #cbd5e1;
}

.hero-subtitle .highlight {
  color: rgba(255,255,255,0.9);
}

.hero-subtitle .sub {
  display: block;
  margin-top: 0.75rem;
  color: #cbd5e1;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* ===========================
   STAT BAR
   =========================== */
.stat-bar-section {
  padding: 0 1.5rem;
}

.stat-bar-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  backdrop-filter: blur(20px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: white;
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.about-body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 2;
  color: #cbd5e1;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.skill-dot {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.skill-dot::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-top: 0.5rem;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #67e8f9;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.focus-item {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

/* ===========================
   IMPACT SECTION
   =========================== */
.impact-heading-wrap {
  max-width: 80rem;
  margin: 0 auto;
}

.achievements-grid {
  max-width: 80rem;
  margin: 3.5rem auto 0;
  display: grid;
  gap: 1rem;
}

.achievement-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: white;
}

.achievement-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-top: 1rem;
}

.achievement-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.execution-wrap {
  max-width: 80rem;
  margin: 1.5rem auto 0;
  display: grid;
  gap: 1rem;
}

.execution-intro {
  padding: 1.75rem;
}

.execution-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: white;
  margin-top: 1rem;
}

.execution-body {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 2;
  color: #cbd5e1;
}

.execution-steps {
  display: grid;
  gap: 1rem;
}

.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.75);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-top: 1rem;
}

.step-copy {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #cbd5e1;
}

/* ===========================
   VENTURES SECTION
   =========================== */
.ventures-grid {
  max-width: 80rem;
  margin: 3.5rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.venture-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  height: 100%;
}

.venture-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: white;
  margin-top: 1rem;
}

.venture-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.venture-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.venture-bullet {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.venture-bullet::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-top: 0.5rem;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #c4b5fd;
}

.venture-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #a5f3fc;
}

.venture-cta:hover {
  color: white;
}

/* ===========================
   VISION SECTION
   =========================== */
.vision-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.vision-pillar {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(4, 7, 15, 0.35);
  padding: 1.25rem;
  margin-bottom: 0;
}

.vision-pillar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
}

.vision-pillar-copy {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.vision-right {
  display: grid;
  gap: 1rem;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.3;
  color: white;
  margin-top: 1rem;
}

/* ===========================
   MEDIA SECTION
   =========================== */
.media-grid {
  max-width: 80rem;
  margin: 3.5rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.media-badge {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: rgba(103, 232, 249, 0.1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(224, 247, 250, 0.8);
}

.media-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #94a3b8;
}

.media-headline {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.3;
  color: white;
  margin-top: 1.75rem;
}

.media-copy {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.media-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #a5f3fc;
}

.media-link:hover {
  color: white;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.contact-panel {
  padding: 2rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: white;
  margin-top: 1rem;
}

.contact-body {
  margin-top: 1.5rem;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 2;
  color: #cbd5e1;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.social-cards {
  display: grid;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  transition: border-color 180ms ease;
  height: 100%;
}

.social-card:hover {
  border-color: rgba(103, 232, 249, 0.3);
}

.social-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: rgba(186, 230, 253, 1);
}

.social-connect-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #94a3b8;
}

.social-connect-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  margin-top: 0.25rem;
}

/* ===========================
   SVG ICONS
   =========================== */
.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  width: 20px;
  height: 20px;
}

/* ===========================
   RESPONSIVE: TABLET (md: 768px)
   =========================== */
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .desktop-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .stat-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .execution-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   RESPONSIVE: DESKTOP (lg: 1024px)
   =========================== */
@media (min-width: 1024px) {
  .header-inner {
    padding: 1rem 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .hero-section {
    padding-top: 5rem;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .execution-wrap {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .ventures-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vision-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-photo-card {
    min-height: 43rem;
  }
}
/* ===========================
   RESPONSIVE: ≤ 1024px
   =========================== */
@media (max-width: 1024px) {
  .hero-photo-card {
    min-height: 38rem;
  }

  .metric-top-left {
    left: 0.5rem;
  }

  .metric-top-right {
    right: 0.5rem;
  }

  .floating-metric {
    min-width: 7.5rem;
    padding: 0.7rem 0.8rem;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .metric-label {
    font-size: 0.65rem;
  }
}

/* ===========================
   RESPONSIVE: ≤ 768px
   =========================== */
@media (max-width: 768px) {
  .section-space {
    padding-top: 4rem;
  }

  .background-grid {
    background-size: 56px 56px;
  }

  /* Keep the tall rectangular feel */
  .hero-photo-card {
    min-height: 36rem;
  }

  .hero-photo-inner {
    height: 26rem;
    margin-top: 4rem;
    width: min(20rem, 82%);
  }

  .hero-photo-inner img {
    object-fit: cover;
    object-position: top center;
  }

  /* Hide shards on mobile */
  .hero-shard-one,
  .hero-shard-two,
  .hero-shard-three {
    display: none;
  }

  /* Metrics smaller but readable */
  .floating-metric {
    min-width: 7rem;
    padding: 0.6rem 0.75rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .metric-top-left {
    left: 0.25rem;
    top: 10%;
  }

  .metric-top-right {
    right: 0.25rem;
    top: 16%;
  }

  .metric-bottom {
    bottom: 1.25rem;
    right: 0.75rem;
  }
}

/* ===========================
   RESPONSIVE: ≤ 640px
   =========================== */
@media (max-width: 640px) {
  .hero-photo-card {
    min-height: 34rem;
  }

  .hero-photo-inner {
    height: 24rem;
    margin-top: 3.75rem;
    width: min(18rem, 80%);
  }

  .floating-metric {
    min-width: 6.5rem;
    padding: 0.55rem 0.65rem;
  }

  .metric-value {
    font-size: 0.9rem;
  }

  .metric-label {
    font-size: 0.55rem;
  }

  .metric-top-left {
    left: 0.25rem !important;
    top: 8%;
  }

  .metric-top-right {
    right: 0.25rem !important;
    left: auto !important;
    top: 16%;
  }

  .metric-bottom {
    bottom: 1rem;
    right: 0.5rem;
  }
}

/* ===========================
   RESPONSIVE: ≤ 480px
   =========================== */
@media (max-width: 480px) {
  .hero-photo-card {
    min-height: 30rem;
  }

  .hero-photo-inner {
    height: 22rem;
    margin-top: 3.5rem;
    width: min(16rem, 78%);
  }

  .floating-metric {
    min-width: 6rem;
    padding: 0.5rem 0.6rem;
  }

  .metric-value {
    font-size: 0.85rem;
  }

  .metric-label {
    font-size: 0.52rem;
  }
}