:root {
  --bg: #0A0A0A;
  --fg: #F5F0EB;
  --accent: #E8C97A;
  --muted: #7A7A7A;
  --card-bg: #141414;
  --border: #222;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

/* Mobile touch optimization */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets for mobile */
  .collage-card, .founder-card {
    min-height: 130px;
    cursor: pointer;
  }
  .faq-q, .hero-cta, .whitelist-btn {
    min-height: 52px;
  }
  .nav-cta {
    padding: 0.6rem 1.3rem;
  }
  /* Prevent text selection flash on tap */
  .collage-card, .founder-card, .faq-q, button, a {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-touch-callout: none;
  }
  /* Improve button touch feedback */
  button, .hero-cta, .whitelist-btn, .nav-cta {
    touch-action: manipulation;
  }
  /* Better carousel touch handling */
  .stories-track {
    touch-action: pan-x;
    cursor: grab;
  }
  .stories-track:active {
    cursor: grabbing;
  }
}

html { 
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

::selection { background: var(--accent); color: var(--bg); }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(10,10,10,0.8);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta:hover { opacity: 0.9; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
    background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.8) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  text-shadow: 0 2px 15px rgba(0,0,0,0.7);
}
.hero-dates {
  font-size: 0.85rem;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,201,122,0.2); }
.hero-cta svg { width: 16px; height: 16px; }
.hero-details {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-detail {
  text-align: center;
}
.hero-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.hero-detail-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--fg);
}

/* ---- SECTIONS ---- */
section { padding: 6rem 3rem; }

/* ---- COLLAGE SECTION ---- */
.collage-section {
  padding: 4rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.collage-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
.collage-side {
  text-align: center;
}
.collage-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.collage-label.gold {
  color: var(--accent);
}
.collage-subtitle {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2rem;
}
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.dept-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.founders-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.collage-card, .founder-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: pointer;
}
.collage-card::before, .founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2), rgba(10,10,10,0.75));
  z-index: 0;
  transition: opacity 0.3s;
}
.collage-card:hover::before, .founder-card:hover::before {
  background: linear-gradient(to bottom, rgba(10,10,10,0.1), rgba(10,10,10,0.7));
}
.collage-card > *, .founder-card > * {
  position: relative;
  z-index: 1;
}
.collage-card:hover, .founder-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(232, 201, 122, 0.15);
}
.card-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.card-tag, .card-company {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  padding: 0.5rem 0.9rem;
  background: rgba(10,10,10,0.7);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  width: fit-content;
  border: 1px solid rgba(232, 201, 122, 0.2);
}
.founders-grid .card-title {
  font-size: 0.9rem;
}
.collage-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}
.bridge-arrow {
  width: 100px;
  height: 100px;
}
.bridge-text {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}
.bridge-subtext {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Modal */
.info-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  animation: fadeIn 0.2s;
}
.info-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 3px;
  max-width: 500px;
  margin: 2rem;
  position: relative;
  animation: slideUp 0.3s;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--accent);
}
.modal-text {
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.8;
}


.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ---- VALUE PROP ---- */
.value {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.value-inner { }
.value-intro {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.5rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 3px;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--accent); }
.value-icon {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.about {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.about p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about strong { color: var(--fg); font-weight: 500; }
.program {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.program p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.what-you-get {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.wyg-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.wyg-list {
  list-style: none;
  padding: 0;
}
.wyg-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
}
.wyg-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.wyg-list li:last-child { margin-bottom: 0; }

/* ---- WHO ---- */
.who {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.who-list {
  margin-top: 1.5rem;
}
.who-closer {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 3px;
  transition: border-color 0.3s;
}
.who-card:hover { border-color: var(--accent); }
.who-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.who-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ---- TIMELINE ---- */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.timeline-table tr {
  border-bottom: 1px solid var(--border);
}
.timeline-table td {
  padding: 1.2rem 0;
}
.tl-label {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  width: 40%;
}
.tl-value {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---- WHITELIST ---- */
.whitelist {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border);
}
.whitelist p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.whitelist-form {
  display: flex;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}
.whitelist-form input {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}
.whitelist-form input:focus { border-color: var(--accent); }
.whitelist-form input::placeholder { color: var(--muted); }
.whitelist-form button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.whitelist-form button:hover { opacity: 0.9; }
.whitelist-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s;
  text-decoration: none;
}
.whitelist-btn:hover { opacity: 0.9; }

/* ---- TEAM ---- */
.team-section {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-align: center;
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 1.2rem;
  background-color: var(--border);
}
.team-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--fg);
}
.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
  text-align: left;
}
.team-bio li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.team-bio li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.3s;
}
.team-linkedin:hover {
  color: var(--accent);
}

/* ---- FAQ ---- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 1rem;
}
.faq-a p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--accent); }
footer p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

/* Tablet/iPad optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    padding: 1.5rem 2.5rem;
  }
  .hero {
    padding: 7rem 3rem 4rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-sub {
    font-size: 1.15rem;
    max-width: 700px;
  }
  section {
    padding: 4rem 3rem;
  }
  .story-slide {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
  }
  .story-image {
    height: 240px;
  }
  .collage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dept-grid, .founders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  nav { 
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
  }
  .nav-links { display: none; }
  section { padding: 3rem 1.2rem; }
  
  /* Hero - critical for mobile */
  .hero { 
    padding: 5rem 1.5rem 3rem;
    min-height: 85vh;
    justify-content: flex-start;
    padding-top: 7rem;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-dates {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .hero-cta {
    width: 100%;
    max-width: 400px;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }
  .hero-details { 
    display: none; /* Hide on mobile to reduce clutter */
  }
  
  /* Collage section - key optimization for mobile */
  .collage-section {
    padding: 3.5rem 1.5rem;
  }
  .section-container {
    padding: 2rem 0 !important;
  }
  .collage-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .collage-label {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }
  .collage-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .collage-bridge {
    padding: 0;
    order: 2;
  }
  .collage-side:first-child {
    order: 1;
  }
  .collage-side:last-child {
    order: 3;
  }
  .bridge-arrow {
    transform: rotate(90deg);
    width: 80px;
    height: 80px;
  }
  .bridge-text {
    font-size: 0.9rem;
    font-weight: 400;
  }
  .bridge-subtext {
    font-size: 0.75rem;
  }
  
  /* Cards - optimized for thumb tapping */
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .dept-grid, .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .collage-card, .founder-card {
    padding: 0.9rem;
    aspect-ratio: 1;
    min-height: 120px;
  }
  .card-title {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  .card-tag, .card-company {
    font-size: 0.6rem;
  }
  
  /* Modal - full screen on mobile */
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  .modal-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .modal-close {
    font-size: 1.8rem;
    top: 0.8rem;
    right: 1rem;
  }
  
  /* Other sections */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  .section-label {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }
  section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  .about {
    padding: 3.5rem 1.5rem;
  }
  .what-you-get {
    margin-top: 2.5rem;
  }
  .wyg-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .wyg-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
    padding-left: 0.5rem;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item { 
    grid-template-columns: 1fr; 
    gap: 0.3rem;
  }
  .whitelist-form { 
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
  }
  .whitelist-form input {
    font-size: 1rem;
    padding: 1.1rem 1.2rem;
  }
  .whitelist-form button {
    font-size: 0.9rem;
    padding: 1.1rem 1.8rem;
  }
  .whitelist-input, .whitelist-btn {
    width: 100%;
  }
  .team-grid { 
    grid-template-columns: 1fr;
  }
  .faq {
    padding: 0 0.5rem;
  }
  .faq-item {
    padding: 1.3rem 0;
  }
  .faq-q {
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 0.5rem;
  }
  .faq-q::after {
    font-size: 1.5rem;
    min-width: 24px;
  }
  .faq-a p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .faq-item.open .faq-a {
    max-height: 500px;
  }
}

/* Extra small phones */
@media (max-width: 375px) {
  section { padding: 3rem 1.2rem; }
  .hero { 
    padding: 6rem 1.2rem 2.5rem; 
    min-height: 80vh;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .collage-section { 
    padding: 3rem 1.2rem; 
  }
  .section-container {
    padding: 1.5rem 0 !important;
  }
  .story-slide {
    padding: 1.2rem;
  }
  .story-image {
    height: 160px;
  }
  .story-content h3 {
    font-size: 1.2rem !important;
  }
  .story-text {
    font-size: 0.9rem;
  }
  .collage-card, .founder-card {
    padding: 0.8rem;
    min-height: 110px;
  }
  .card-title {
    font-size: 0.72rem;
  }
  .card-tag, .card-company {
    font-size: 0.58rem;
    padding: 0.35rem 0.65rem;
  }
  .collage-grid {
    gap: 0.7rem;
  }
}
/* ---- STORIES CAROUSEL ---- */
.stories-carousel {
  position: relative;
  overflow: hidden;
}
.stories-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  background: rgba(245,240,235,0.02);
  border: 1px solid rgba(245,240,235,0.1);
  border-radius: 8px;
  padding: 2rem;
  align-items: start;
}
.story-image {
  background-size: cover;
  background-position: center;
  height: 280px;
  border-radius: 4px;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.story-text {
  line-height: 1.8;
  color: var(--fg);
  opacity: 0.9;
}
.story-text p {
  margin-bottom: 1rem;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.stories-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.stories-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.stories-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.stories-dots {
  display: flex;
  gap: 0.6rem;
}
.stories-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.stories-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .story-slide {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .story-image {
    height: 180px;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .story-content h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.4rem !important;
  }
  .story-content > div {
    font-size: 0.85rem !important;
    margin-bottom: 1.2rem !important;
  }
  .story-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .story-text p {
    margin-bottom: 1.2rem;
  }
  .story-text strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }
  .stories-controls {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .stories-btn {
    width: 44px;
    height: 44px;
  }
  .collage-section h2 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  .section-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    padding: 0 0.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
