/* Base reset and variables */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fbfbfb;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='16' y='24' font-size='24' text-anchor='middle'>🌽</text></svg>") 16 16, auto;
  line-height: 1.6;
}



/* Alternative corn cursor using CSS content */
* {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='16' y='24' font-size='24' text-anchor='middle'>🌽</text></svg>") 16 16, auto !important;
}

/* Corn cursor fallback using CSS content */
body::before {
  content: "🌽";
  position: fixed;
  top: -1000px;
  left: -1000px;
  pointer-events: none;
  z-index: -1;
}

/* Ensure corn cursor on all interactive elements */
a, button, [role="button"], .clickable {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='16' y='24' font-size='24' text-anchor='middle'>🌽</text></svg>") 16 16, auto !important;
}

/* Typography hierarchy */
h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 800 !important; 
  line-height: 1.1 !important; 
  letter-spacing: -0.03em !important;
  color: #0f172a !important;
  margin: 0 0 1rem 0 !important;
}

h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; 
  line-height: 1.2; 
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.75rem 0;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; 
  line-height: 1.3; 
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600; 
  line-height: 1.4; 
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

h5 { 
  font-size: 1.125rem;
  font-weight: 600; 
  line-height: 1.4; 
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

h6 { 
  font-size: 1rem;
  font-weight: 600; 
  line-height: 1.4; 
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

p { 
  font-size: 1rem;
  line-height: 1.7; 
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.small {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.feature-text {
  font-size: 1.25rem !important;
  line-height: 1.6 !important;
  color: #0f172a !important;
  font-weight: 600 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 2rem 1rem !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-radius: 14px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
  display: block !important;
}

ul, ol { 
  color: var(--text-secondary); 
  line-height: 1.6; 
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li { 
  margin: 0.25rem 0; 
  line-height: 1.6;
}
:root {
  --container: 1200px;
  --pad: 24px;
  --pad-lg: 56px;
  
  /* Color hierarchy */
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Background colors */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-subtle: #f1f5f9;
  
  /* Accent colors */
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-light: #7dd3fc;
  
  /* Utility colors */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Effects */
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --radius: 14px;
  --radius-sm: 8px;
}

.container {
  width: min(100% - 2*var(--pad), var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='16' y='24' font-size='24' text-anchor='middle'>🌽</text></svg>") 16 16, auto !important; }
.logo img { height: 36px; width: auto; display: block; }
.logo .wordmark { font-weight: 800; letter-spacing: -0.02em; font-size: 18px; }


/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav { display: flex; gap: 16px; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.nav a:hover { background: rgba(0,0,0,0.05); }
.nav .cta { background: #0c0c0c; color: #fff; }

/* Hero */
.hero {
  padding: 8vh 0 6vh;
}
.hero-inner {
  padding: var(--pad-lg) var(--pad) var(--pad);
}
.headline {
  font-size: clamp(32px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 12px 0;
  font-weight: 800;
  color: var(--text);
}
.subhead { color: var(--muted); font-size: clamp(16px, 2.2vw, 22px); margin: 0 0 24px 0; }
.hero-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
  margin-top: 8px;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.hero-cta:hover {
  background: var(--accent-dark);
}
.hero-media { width: 100%; padding: 10vh var(--pad) 0; }
.mask-reveal { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.mask-reveal img { width: 100%; display: block; transform: scale(1.05); }
.hero-description {
  margin-top: 40px; padding: 0 var(--pad); text-align: center;
}
.hero-description p {
  font-size: clamp(16px, 2.5vw, 20px); line-height: 1.6; color: var(--muted);
  max-width: 800px; margin: 0 auto; font-style: italic;
}

/* Product Statement */
.product-statement {
  text-align: center;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 800px;
}

.statement-text {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  padding: 0 1rem;
}

/* Simple story section */
.story-simple { padding: 80px 0; }
.story-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  margin-bottom: 80px;
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.story-item:last-child { margin-bottom: 0; }
.story-item.animate {
  opacity: 1; transform: translateY(0);
}
.story-image {
  height: 400px; background-size: cover; background-position: center;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: scale(0.95);
  transition: transform 0.8s ease-out;
}
.story-item.animate .story-image {
  transform: scale(1);
}
.story-text h2 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 12px; letter-spacing: -0.02em; font-weight: 700; color: var(--text); }
.story-text p { color: var(--muted); font-size: clamp(16px, 2vw, 18px); margin: 0 0 16px; }
.story-description {
  color: var(--muted); font-size: clamp(14px, 1.8vw, 16px); line-height: 1.5;
  font-style: italic; margin: 0; opacity: 0.8;
}


/* Sections */
.section { padding: 96px 0; background: var(--bg); }
.section.alt { background: var(--bg-alt); }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.two-col .visual img, 
.two-col .visual video { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.two-col .visual video { object-fit: fill; height: 400px; }
.two-col .copy h3 { font-size: clamp(24px, 3.6vw, 40px); margin: 0 0 12px; letter-spacing: -0.02em; font-weight: 700; color: var(--text); }
.two-col .copy p { color: var(--muted); }
.two-col .copy ul { color: var(--text); margin: 16px 0; padding-left: 20px; }
.two-col .copy li { margin: 8px 0; line-height: 1.6; color: var(--text); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 999px; padding: 8px 12px; box-shadow: var(--shadow); }

/* Deck Download Section */
.deck-hero {
  text-align: center; margin-bottom: 60px; padding: 0 var(--pad);
}
.deck-hero h3 {
  font-size: clamp(28px, 5vw, 48px); margin: 0 0 16px; letter-spacing: -0.02em;
}
.deck-hero p {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 600px; margin: 0 auto;
}

.deck-flow {
  display: flex; justify-content: center;
}
.deck-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  background: #fff; border-radius: var(--radius); padding: 60px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06); max-width: 1200px; width: 100%;
}
.deck-image {
  position: relative; height: 300px; border-radius: 12px; overflow: hidden;
}
.deck-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.preview-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center;
}
.preview-icon {
  font-size: 48px; margin-bottom: 12px; color: #fff !important;
}
.preview-text {
  font-size: 18px; font-weight: 600; color: #fff !important;
}

.deck-content h4 {
  font-size: 28px; margin: 0 0 16px; color: var(--text);
}
.deck-content p {
  color: var(--muted); line-height: 1.6; margin: 0 0 32px; font-size: 16px;
}
.deck-features {
  display: grid; gap: 16px; margin-bottom: 40px;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; color: var(--muted); font-size: 16px;
}
.feature-icon {
  font-size: 20px; width: 24px; text-align: center;
}

.download-section {
  text-align: left; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06);
}
.download-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: var(--accent); color: #fff;
  text-decoration: none; border-radius: 12px; font-weight: 600;
  font-size: 18px; box-shadow: var(--shadow); transition: all 0.2s ease;
  margin-bottom: 12px;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.download-btn:hover {
  background: var(--accent-dark); transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.download-icon {
  font-size: 20px;
}
.download-note {
  color: var(--muted); font-size: 14px; margin: 0;
}

.stats { display: flex; gap: 24px; margin-top: 14px; }
.stat { background: #fff; border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); }
.stat .num { font-weight: 700; font-size: 22px; display: block; }
.stat .label { color: var(--muted); font-size: 12px; }

.logos { align-items: center; justify-items: center; }
.logos img { width: min(180px, 40vw); filter: grayscale(100%); opacity: 0.7; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 var(--pad); }
.member { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); padding: 16px; text-align: center; }
.member img { width: 100%; border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; }

/* Contact Section */
.contact-hero {
  text-align: center; margin-bottom: 60px; padding: 0 var(--pad);
}
.contact-hero h3 {
  font-size: clamp(28px, 5vw, 48px); margin: 0 0 16px; letter-spacing: -0.02em;
}
.contact-hero p {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 600px; margin: 0 auto;
}

.contact-content {
  padding: 0 var(--pad);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-intro h4 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.contact-intro p {
  margin: 0 0 16px;
  color: var(--text);
}
.contact-intro ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}
.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-line {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 20px;
}
.contact-line:first-child {
  border-top: none;
  padding-top: 0;
}
.contact-line-label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.contact-line p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}
.contact-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.contact-link:hover {
  text-decoration: underline;
}
.contact-scheduling {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.schedule-card {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.25);
}
.schedule-card h4 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}
.schedule-card p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px;
}
.schedule-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}
.schedule-highlights {
  margin: 24px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.schedule-note {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.schedule-note a {
  color: var(--accent);
  text-decoration: none;
}
.schedule-note a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer { padding: 28px 0; border-top: 1px solid rgba(0,0,0,0.06); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); color: var(--muted); }
.footer-inner a { color: inherit; text-decoration: none; cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important; }
.footer-logo { height: 24px; width: auto; }

.footer-left { display: flex; align-items: center; gap: 20px; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}
.skip-link:focus {
  top: 6px;
}

/* Parallax helper */
.parallax img { will-change: transform; }

/* Founders Page Styles */
.founders-hero {
  padding: 120px 0 80px; text-align: center; background: var(--bg);
}
.founders-hero h1 {
  font-size: clamp(40px, 8vw, 72px); margin: 0 0 16px; letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px); color: var(--muted); margin: 0;
}

.founders-main { padding: 0 0 80px; }
.founders-section, .advisors-section {
  padding: 80px 0; background: var(--bg);
}
.advisors-section { background: var(--bg-alt); }

/* Team Grid Layout */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 40px;
}
.team-member {
  background: #fff; border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-member:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.member-image {
  width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--bg-alt);
}
.member-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.member-info h3 {
  font-size: 20px; margin: 0 0 8px; letter-spacing: -0.01em;
}
.member-title {
  color: var(--accent); font-weight: 600; font-size: 14px; margin: 0;
}

.back-section {
  padding: 40px 0; text-align: center; background: var(--bg);
}
.back-btn {
  display: inline-block; padding: 12px 24px; background: var(--accent); color: #fff;
  text-decoration: none; border-radius: var(--radius); font-weight: 500;
  transition: background 0.2s ease;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text x='12' y='18' font-size='20' text-anchor='middle'>🌽</text></svg>") 12 12, auto !important;
}
.back-btn:hover { background: var(--accent-dark); }

/* Facility Section */
.facility-hero {
  text-align: center; margin-bottom: 60px; padding: 0 var(--pad);
}
.facility-hero h3 {
  font-size: clamp(28px, 5vw, 48px); margin: 0 0 16px; letter-spacing: -0.02em;
}
.facility-hero p {
  font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 800px; margin: 0 auto;
}

.facility-visual {
  display: grid; gap: 40px; align-items: start;
}
.maps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.map-container {
  position: relative; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.map-image {
  position: relative; height: 300px; border-radius: 12px; overflow: hidden;
  margin-bottom: 20px;
}
.map-image img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
}
.map-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.1);
}
.location-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; z-index: 2;
}
.pin-icon {
  font-size: 32px; margin-bottom: 8px; animation: pulse 2s infinite;
}
.pin-label {
  background: rgba(255,255,255,0.9); padding: 8px 16px; border-radius: 20px;
  font-weight: 600; color: var(--text); box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-description {
  margin-top: 24px; text-align: center;
}
.map-description h4 {
  font-size: 20px; margin: 0 0 8px; color: var(--text);
}
.map-description p {
  color: var(--muted); margin: 0;
}

.facility-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.detail-card {
  background: #fff; padding: 32px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06);
  text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.detail-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.detail-icon {
  font-size: 32px; margin-bottom: 16px;
}
.detail-card h4 {
  font-size: 18px; margin: 0 0 12px; color: var(--text);
}
.detail-card p {
  color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .facility-details { grid-template-columns: repeat(2, 1fr); }
  .maps-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .deck-preview { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Story section responsive */
  .story-content {
    max-width: 600px;
    padding: 0 40px;
  }
  .story-content h2 {
    font-size: clamp(32px, 6vw, 48px);
  }
  .story-content p {
    font-size: clamp(18px, 3vw, 22px);
  }
  .story-progress {
    right: 20px;
  }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .founder-card, .advisor-card { padding: 24px; }
  .facility-details { grid-template-columns: 1fr; }
  .map-container { padding: 16px; }
  .detail-card { padding: 24px 16px; }
  .maps-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info { padding: 32px; }
  .schedule-card { padding: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member { padding: 20px; }
  
  /* Story section mobile */
  .story-simple { 
    height: 200vh; 
  }
  .story-content {
    max-width: 90%;
    padding: 0 20px;
  }
  .story-content h2 { 
    font-size: clamp(28px, 8vw, 40px); 
    margin-bottom: 16px;
  }
  .story-content p { 
    font-size: clamp(16px, 4vw, 20px); 
    margin-bottom: 12px;
  }
  .story-description { 
    font-size: clamp(14px, 3.5vw, 16px); 
  }
  .story-progress {
    right: 15px;
    gap: 8px;
  }
  .story-dot {
    width: 10px;
    height: 10px;
  }
}


