:root {
  --bg: #050505;
  --text-main: #EAEAEA;
  --text-muted: #888888;
  --accent: #F0A500;

  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-xxl: 10rem;

  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg);
  /* NO scroll-snap - free scrolling */
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

/* Typography Standards */
.t-hero {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.t-h2 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.t-h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.t-mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.t-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* Navbar - Centered & Glass */
.nav-container {
  position: fixed;
  top: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
}

/* CTA Hover Effect */
.cta-link {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
}

.cta-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.cta-link:hover::after {
  width: 100%;
}

.cta-link:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.nav-bar {
  pointer-events: auto;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #fff;
  border: 2px solid #fff;
  padding: 2px 6px;
  line-height: 1;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--accent);
  opacity: 1;
}

/* Sections */
.section {
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  /* NO scroll snap - normal scroll */
  padding-top: 2.2rem;
}


.section-title-spacer {
  margin-bottom: 2rem;
  /* Tight gap */
  position: sticky;
  top: 2.2rem;
  /* Aligned with navbar */
  z-index: 20;
  margin-top: 0;
  align-self: flex-start;
  background: transparent;
  padding: 1rem 0;
}

/* Ensure container allows sticky */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  /* Context */
  height: 100%;
  /* Fill section */
  display: flex;
  flex-direction: column;
}

/* Hero */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  /* Snap point */
  scroll-snap-stop: always;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.mobile-scroll-hint {
  display: none;
}

/* Ventures (Bento Asymmetric) */
.ventures-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /* 2 Equal rows for height fit */
  gap: 20px;
  margin-top: 1rem;
  height: calc(100vh - 160px);
  /* Height minus title padding */
  width: 100%;
}

/* Explicit Grid Placement for Robustness */
/* Explicit Grid Placement for Robustness */
@media (min-width: 769px) {

  /* Ventures Refactor: Left (Main) / Right (Stack) */
  .ventures-bento {
    grid-template-columns: 2fr 1fr;
    /* Left column 2x wider */
    grid-template-rows: repeat(3, 1fr);
    /* 3 Equal rows for the stack */
    height: 80vh;
    /* Taller on desktop for impact */
  }

  /* 1. Bio (Left Main) - Spans full height */
  .ventures-bento>.v-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    /* Spans all 3 rows */
  }

  /* 2. Strategy (Right Top) */
  .ventures-bento>.v-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  /* 3. Visuals (Right Middle) */
  .ventures-bento>.v-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  /* 4. Coffee (Right Bottom) */
  .ventures-bento>.v-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  /* Reduce padding on stack cards to fit content better */
  .ventures-bento>.v-card:not(:nth-child(1)) {
    padding: 1.25rem;
    /* Slightly tighter */
  }

  /* Compact Typography for Stack Cards */
  .ventures-bento>.v-card:not(:nth-child(1)) .t-h2 {
    font-size: 1.25rem;
    /* Smaller Title */
  }

  .ventures-bento>.v-card:not(:nth-child(1)) .project-link {
    font-size: 0.8rem;
    /* Smaller Links */
  }
}

/* Staggered Animations */
.ventures-bento>div:nth-child(1) {
  transition-delay: 0.1s;
}

.ventures-bento>div:nth-child(2) {
  transition-delay: 0.2s;
}

.ventures-bento>div:nth-child(3) {
  transition-delay: 0.3s;
}

.ventures-bento>div:nth-child(4) {
  transition-delay: 0.4s;
}

/* Card Styles */
.v-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  height: 100%;
  /* Fill Grid Cell */
  transition: transform 0.3s, border-color 0.3s;
}

/* Standard Card Hover */
.v-card:hover {
  /* Handled by combined rule above */
}

/* Remove exclusion for Bio card - Standardize all */

.v-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.5s, transform 0.7s;
  z-index: 0;
}

/* Base scale on hover (subtle) for background image only */
.v-card:hover .v-card-bg {
  transform: scale(1.05);
  /* Slight zoom on bg only */
}

.v-card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* New Main Card Layout */
.main-card-layout {
  flex-direction: row !important;
  /* Side by Side */
  justify-content: space-between;
  align-items: center;
  /* Vertical Center */
}

.main-card-icons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: center;
}

.icon-label-group {
  opacity: 0.5;
  color: #fff;
  transition: opacity 0.3s, color 0.3s;
}

/* Highlighted Card State */
/* Highlighted Card State (Standardized) */
.v-card.highlight-card,
.v-card:hover {
  border-color: var(--accent) !important;
  /* No scale, no shadow, no z-index change */
}

.v-card.highlight-card .v-card-bg,
.v-card:hover .v-card-bg {
  opacity: 0.2 !important;
  /* Dim background to pop content */
  filter: blur(2px);
  /* Blur out */
}

/* Ensure transition is smooth */
.v-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.v-card-bg {
  transition: opacity 0.5s, transform 0.7s, filter 0.5s;
  /* Add filter transition */
}

/* Reverse Interaction: Active Icon State */
.icon-label-group.active-icon {
  opacity: 1;
  color: var(--accent);
  transform: scale(1.1);
}

.icon-label-group:hover {
  /* Keep hover effect to indicate interactivity? Or remove? User said "Forget about the animation while clicking... do it the other way around" implying standard hover is less relevant, but self-hover is usually good UI. Let's keep it consistent. */
  opacity: 1;
  color: var(--accent);
}

.main-card-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* max-width: 60%;  Removed restriction for flip */
  width: 100%;
}

@media (max-width: 768px) {
  .main-card-layout {
    flex-direction: column !important;
    /* Stack vertically on mobile */
    align-items: flex-start;
    text-align: left;
  }

  .main-card-icons {
    display: none !important;
    /* Hide icons on mobile */
  }

  .main-card-text {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    order: 1;
  }
}

/* Spans */
.span-2 {
  grid-column: span 2;
}

.span-1 {
  grid-column: span 1;
}

/* Descriptive Text Visibility */
/* Descriptive Text Visibility */
.v-card .t-mono {
  opacity: 0.9 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Specific Card Styling */
.v-card.bio {
  border-color: #fff;
  /* Start White */
  transition: border-color 1s ease 2s, transform 0.3s;
  /* Delay 2s as requested for full load */
}

.v-card.bio .v-card-bg {
  opacity: 0.2;
  /* Subtler on text card */
}

/* When in view - removed permanent highlight to standardize
.v-card.bio.in-view {
  border-color: var(--accent);
} 
*/

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, transform 0.3s;
  margin-right: 0.5rem;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Project Links */
/* Project Link - Underline Slide Animation (Match CTA) */
.project-link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: color 0.3s, transform 0.3s ease;
  color: #fff;
  font-weight: 500;
  padding-bottom: 2px;
  /* Space for underline */
}

.project-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.project-link:hover {
  color: var(--accent);
  padding-left: 0;
  transform: translateX(5px);
  /* Add movement */
}

.project-link:hover::after {
  width: 100%;
}

/* Blueprint Section - Clean Grid */
#services {
  padding-top: 2.2rem;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.blueprint-step {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.blueprint-step:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.blueprint-step .t-h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
  padding-bottom: 6rem;
}

/* Scroll Progress Bar - Desktop (Horizontal) */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

#scroll-progress-bar {
  width: var(--scroll-percent, 0%);
  height: 100%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.method-grid-desc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  /* STRICT OVERRIDE */
  pointer-events: none;
  /* Disable all mouse interactions on the grid wrapper */
}

/* Re-enable pointer events on items if they need clicking (they don't, it's just text) */
/* Re-enable pointer events on items if they need clicking (they don't, it's just text) */
.method-desc-item {
  pointer-events: none;
  /* User requested removing ALL hover effects, so disabling interaction prevents hover */
  cursor: default;
  opacity: 0.2;
  /* Inactive state */
  transition: opacity 0.3s;
  /* FAST simple fade only */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* NO transform, NO blur */
}



/* Hover Logistics for Progress removed as requested */
/* Just clean active state */
.method-desc-item.active {
  opacity: 1;
  /* NO transform, NO filter, NO shadow */
  pointer-events: none;
  /* KILL HOVER */
}

/* Ensure no hover effects trigger on active state children either */
.method-desc-item.active:hover .method-icon-container,
.method-desc-item:hover .method-icon-container {
  transform: none !important;
  filter: none !important;
}

.method-icon-container {
  margin-bottom: 1rem;
  color: #fff;
  /* Start White */
  opacity: 0.5;
  transition: color 0.3s, opacity 0.3s;
  /* Only color/opacity fade */
}

.method-desc-item.active .method-icon-container {
  opacity: 1;
  color: var(--accent);
  /* Pure color change, no scale, no shadow if strictly no effects wanted, but shadow helps visibility. Keeping shadow for contrast, removing scale. */
  filter: drop-shadow(0 0 8px var(--accent));
}





/* Hover Logistics for Progress */
.method-grid-desc:hover>.method-desc-item {
  opacity: 0.5;
  filter: blur(2px);
}

.method-grid-desc:hover>.method-desc-item:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: blur(0);
  z-index: 10;
}

/* Hybrid Separator Animation */
.hybrid-separator {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.6s;
  /* Delays until after card appears */
}

.animate-enter.in-view .hybrid-separator,
.animate-on-scroll.in-view .hybrid-separator {
  transform: scaleX(1);
}




/* Selected Work Typography & Hover */
.modern-work-info h3 {
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.modern-work-card:hover h3 {
  color: var(--accent);
}

/* Increase Arrow Size - removed double arrow content */
.project-link::after {
  content: "";
  display: none;
}

/* Fix Blueprint Cutoff - Ensure container doesn't clip */
.method-icon-container {
  padding: 5px;
  /* Add breathing room for scale */
  margin: -5px;
  /* Offset to keep alignment */
  margin-bottom: 1rem;
  /* Restore gap */
}

/* This needs JS or different sibling logic */
/* Actually, simpler to use Javascript for the bar width based on hover index, or just pure CSS with :has if supported, or sibling selectors if we restructure.
   Let's use a simpler clean CSS approach:
   We will make the container set a variable on hover? 
   Let's stick to a robust simple sibling approach or simple JS. 
   For "Zero Dependency" simple JS is fine. But let's try CSS sibling trick.
*/

/* WORK GRID (Restored) */
.work-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 80px;
}

.modern-work-card {
  display: block;
}

.modern-work-media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.modern-work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
  opacity: 0.9;
}

.modern-work-card:hover .modern-work-media img {
  transform: scale(1.03);
  opacity: 1;
}

.modern-work-info h3 {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 800;
  /* Match Hero Boldness */
  color: #fff;
  margin-bottom: 0.25rem;
}

.modern-work-info p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Animations */
.animate-enter {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-down {
  animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typewriter Cursor */
.typewriter-cursor {
  display: inline-block;
  width: 0.2em;
  height: 0.9em;
  background-color: var(--accent);
  margin-left: 12px;
  vertical-align: bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Ensure typewriter elements are hidden until JS triggers (optional, but good for FOUC if we use a class for init) */
.typewriter-hidden {
  visibility: hidden;
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s, transform 0.8s;
  will-change: opacity, transform;
  /* Performance */
}

.animate-on-scroll.pending {
  opacity: 0 !important;
  transform: translateY(30px) !important;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Specific Footer Snap */
.footer-section {
  scroll-snap-align: end;
  /* Snap to bottom for footer */
  height: auto;
  min-height: 80vh;
  /* Force it to be tall */
  padding-bottom: 40vh;
  /* FORCE MASSIVE VOID */
  box-sizing: border-box;
  /* Ensure padding is inside */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Align bottom */
}



/* Mobile Adjustments */
@media (max-width: 768px) {
  .section {
    padding-bottom: 80px;
  }

  #work {
    padding-bottom: 120px;
  }

  /* Blueprint Mobile */
  .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blueprint-step {
    padding: 1.5rem;
  }

  .step-number {
    font-size: 1.5rem;
  }
}

/* Footer Section */
.footer-section {
  padding-bottom: 6rem;
  /* Extra space at bottom */
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    top: auto;
    bottom: 2rem;
  }

  .nav-bar {
    width: 90%;
    justify-content: space-around;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-logo {
    font-size: 0.8rem;
  }

  /* Mobile Sticky Title */
  .section-title-spacer {
    top: 20px;
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
  }

  .section {
    padding-top: 40px;
    /* Reduced top padding on mobile */
  }

  /* Mobile Ventures Carousel */
  .ventures-bento {
    display: flex;
    grid-template-columns: none;
    /* Override grid */
    grid-template-rows: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    height: auto;
    /* Let content define height or fixed */
    min-height: 50vh;
    padding-bottom: 2rem;
    /* Space for scrollbar if visible, or breathing room */
    -webkit-overflow-scrolling: touch;
    margin-left: -5%;
    /* Bleed out */
    width: 110%;
    /* Bleed out */
    padding-left: 5%;
    padding-right: 5%;
  }

  .ventures-bento::-webkit-scrollbar {
    display: none;
  }

  /* Reset Card Spans for Carousel */
  .ventures-bento>.v-card {
    flex: 0 0 85vw;
    /* Width of card */
    scroll-snap-align: center;
    height: 55vh;
    /* Fixed height for uniformity */
    margin: 0;
    padding: 1.5rem;
  }

  .span-2,
  .span-1 {
    grid-column: auto;
    /* Reset */
  }



  /* Scroll Progress Bar - Mobile (Vertical) */
  #scroll-progress-container {
    width: 4px;
    height: 100%;
    top: 0;
    right: 0;
    /* Right side */
    left: auto;
    /* Reset left */
  }

  #scroll-progress-bar {
    width: 100%;
    height: var(--scroll-percent, 0%);
    transition: height 0.1s linear;
  }

  .method-sticky-content {
    padding-left: 20px;
    align-items: flex-start;
  }

  /* Mobile Scroll Hint */
  .mobile-scroll-hint {
    display: block;
    text-align: center;
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 1rem;
    opacity: 0.7;
    animation: fadePulse 2s infinite;
  }

  @keyframes fadePulse {

    0%,
    100% {
      opacity: 0.7;
      transform: translateX(0);
    }

    50% {
      opacity: 0.3;
      transform: translateX(5px);
    }
  }


  /* Improved Mobile Grid vs Stack */
  .method-grid-desc {
    grid-template-columns: 1fr;
    gap: 3rem;
    /* More space between steps */
    padding: 2rem 10px;
    /* Vertical breathing room */
    width: 100%;
  }

  /* Make items fully visible on mobile by default or easier to see */
  .method-desc-item {
    opacity: 0.3;
    /* visible but dim */
    transform: none;
    /* No movement */
    filter: none;
    /* No blur */
    margin-bottom: 1rem;
  }

  .method-desc-item.active {
    opacity: 1;
    text-shadow: none;
    /* Clean */
  }

  .work-grid-modern {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .t-hero {
    font-size: 3.5rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
  }

  /* Hero Subtitle - Responsive */
  #hero-subtitle {
    white-space: normal !important;
    /* Allow wrapping */
    padding: 0 1.5rem !important;
    /* Side margins */
    max-width: 90% !important;
    font-size: clamp(0.65rem, 2.5vw, 0.8rem) !important;
    /* Responsive sizing */
    line-height: 1.8 !important;
  }

  .section-title-spacer {
    margin-bottom: 4rem;
  }

  /* Ventures - Better text distribution on mobile */
  .ventures-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .v-card {
    min-height: 300px;
    padding: 1.5rem;
  }

  .v-card .t-h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .v-card .t-body {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project-link {
    font-size: 0.85rem;
  }
}