:root {
  --bg: #050d1a;
  --bg2: #071224;
  --border: rgba(255,255,255,0.07);
  --accent: #f07020;
  --accent2: #1a5fa8;
  --text: #eef2f7;
  --muted: #6b88a8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLL PROGRESS ── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ── CURSOR GLOW ── */
#cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,112,32,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform 0.08s ease-out;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(5,13,26,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 4rem;
}
.nav-logo-img {
  height: 44px; width: auto;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(240,112,32,0.2));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover { filter: drop-shadow(0 0 16px rgba(240,112,32,0.5)); transform: scale(1.03); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.nav-links a.active-link { color: var(--text); }
.nav-cta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1.3rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(240,112,32,0.3);
}

/* ── PAGES ── */
.page { display: none; opacity: 0; }
.page.active { display: block; animation: pageIn 0.5s ease forwards; }
@keyframes pageIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(240,112,32,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 60%, rgba(26,95,168,0.1) 0%, transparent 55%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
#particle-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.6;
}
.hero-content { position: relative; z-index: 2; }

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,112,32,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(240,112,32,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 1.8rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(240,112,32,0.3);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before,
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 0;
}
.btn-primary span,
.btn-ghost span,
.btn-primary svg,
.btn-ghost svg { position: relative; z-index: 1; }
.btn-primary:hover::before,
.btn-ghost:hover::before { transform: translateX(0); }
.btn-primary:hover,
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,112,32,0.4); }
.btn-primary svg,
.btn-ghost svg { transition: transform 0.25s; }
.btn-primary:hover svg,
.btn-ghost:hover svg { transform: translateX(3px); }

/* Hero image with edge fade */
.hero-img-wrap {
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-fade {
  position: relative;
  width: 100%;
  max-width: 640px;
}
.hero-img-fade img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.hero-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}
.stat-item .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  display: block;
}
.stat-item .infinity { font-size: 3rem; line-height: 1; }
.stat-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}

/* ── MOLECULES SECTION ── */
.molecules-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: center;
}
.mol-img-block { display: flex; justify-content: center; align-items: center; }
.mol-img-block img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 0 28px rgba(240,112,32,0.28));
  transition: filter 0.5s, transform 0.5s;
}
.mol-img-block img:hover { filter: drop-shadow(0 0 48px rgba(240,112,32,0.55)); transform: scale(1.02); }
.mol-img-block img.blue-img { filter: drop-shadow(0 0 28px rgba(26,95,168,0.4)); }
.mol-img-block img.blue-img:hover { filter: drop-shadow(0 0 48px rgba(26,95,168,0.65)); transform: scale(1.02); }
.mol-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.mol-text h2 em { font-style: italic; color: var(--accent); }
.mol-text p { font-size: 0.95rem; color: rgba(238,242,247,0.7); line-height: 1.8; margin-bottom: 1rem; }

/* ── SECTION COMMON ── */
section { padding: 7rem 4rem; position: relative; }
.section-tag {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  max-width: 680px;
}
h2.section-title em { font-style: italic; color: var(--accent); }

/* ── MISSION ── */
.mission { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.mission-text p { margin-bottom: 1.5rem; color: rgba(238,242,247,0.68); font-size: 0.97rem; line-height: 1.8; }
.mission-lead { font-family: var(--serif) !important; font-size: 1.3rem !important; font-style: italic; color: var(--text) !important; line-height: 1.6 !important; }
.pillar {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar:hover { padding-left: 0.75rem; }
.pillar-num { font-family: var(--mono); font-size: 0.6rem; color: var(--accent); letter-spacing: 0.15em; margin-bottom: 0.4rem; }
.pillar h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.35rem; }
.pillar p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── VISION ── */
.vision-section { padding: 7rem 4rem; text-align: center; border-bottom: 1px solid var(--border); background: var(--bg2); }
.vision-statement { text-align: center; max-width: 900px; margin: 0 auto; }
.vision-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.bold-stacks { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.stack-line {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(238,242,247,0.35);
  transition: color 0.5s, letter-spacing 0.4s;
  cursor: default;
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  letter-spacing: 0.01em;
}
.stack-line:hover, .stack-line.active-line { color: var(--text); letter-spacing: 0.03em; }

/* ── CONTACT ── */
.contact-section {
  padding: 7rem 4rem;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,112,32,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; }
.contact-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.contact-section p { font-size: 0.9rem; color: var(--muted); margin-bottom: 2.5rem; }
.contact-email {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,112,32,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, letter-spacing 0.3s;
}
.contact-email:hover { border-color: var(--accent); letter-spacing: 0.04em; }
.contact-location {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo { height: 36px; width: auto; filter: drop-shadow(0 0 6px rgba(240,112,32,0.15)); }
.footer-tagline { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
footer small { font-size: 0.67rem; color: rgba(107,136,168,0.4); font-family: var(--mono); }

/* ── TECHNOLOGY ── */
.tech-hero {
  padding: 10rem 4rem 5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tech-hero-img img {
  width: 100%;
  max-width: 560px;
  /* white-bg removed: the orange illustration floats on dark bg */
  filter: drop-shadow(0 0 35px rgba(240,112,32,0.2));
  transition: filter 0.5s, transform 0.5s;
}
.tech-hero-img img:hover { filter: drop-shadow(0 0 55px rgba(240,112,32,0.4)); transform: scale(1.02); }

.platform-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent2), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.platform-card:hover::before { transform: scaleY(1); }
.platform-card:hover { background: rgba(240,112,32,0.02); }

.platform-index { display: flex; flex-direction: column; gap: 0.5rem; }
.platform-num { font-family: var(--mono); font-size: 0.6rem; color: var(--accent); letter-spacing: 0.2em; }
.platform-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; line-height: 1.2; margin-top: 0.5rem; }
.platform-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  margin-top: 1rem;
  font-weight: 700;
}
.platform-content { padding-left: 3rem; }
.platform-img { margin-top: 2.5rem; }
.platform-img img {
  max-height: 200px;
  width: auto;
  filter: drop-shadow(0 0 22px rgba(240,112,32,0.22));
  transition: filter 0.5s, transform 0.5s;
}
.platform-img img:hover { filter: drop-shadow(0 0 38px rgba(240,112,32,0.5)); transform: scale(1.03); }
.platform-img img.blue-img { filter: drop-shadow(0 0 22px rgba(26,95,168,0.35)); }
.platform-img img.blue-img:hover { filter: drop-shadow(0 0 38px rgba(26,95,168,0.6)); }
.platform-desc { font-size: 0.97rem; color: rgba(238,242,247,0.68); margin-bottom: 1.8rem; line-height: 1.8; max-width: 580px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.feature-list li { font-size: 0.83rem; color: var(--muted); padding-left: 1.2rem; position: relative; transition: color 0.2s, padding-left 0.2s; }
.feature-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; transition: transform 0.2s; }
.feature-list li:hover { color: var(--text); padding-left: 1.5rem; }
.feature-list li:hover::before { transform: translateX(3px); }

/* ── COMPARISON ── */
.comparison { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 4rem; }
.compare-col { padding: 2.5rem; border: 1px solid var(--border); transition: border-color 0.3s; }
.compare-col:hover { border-color: rgba(255,255,255,0.15); }
.compare-col.highlight { border-color: rgba(240,112,32,0.4); background: rgba(240,112,32,0.03); }
.compare-col.highlight:hover { border-color: var(--accent); }
.compare-col h3 { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.compare-col.highlight h3 { color: var(--accent); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.compare-col ul li { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; color: rgba(238,242,247,0.6); padding-bottom: 1rem; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.compare-col ul li:hover { color: var(--text); }
.compare-col.highlight ul li { color: var(--text); }

/* ── PRINCIPLES ── */
.principles-section { padding: 6rem 4rem; border-bottom: 1px solid var(--border); }

/* ── ABOUT ── */
.about-hero {
  padding: 10rem 4rem 5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hero-body { margin-top: 1.5rem; font-size: 0.97rem; color: rgba(238,242,247,0.62); max-width: 500px; line-height: 1.8; }
.about-logo-block { display: flex; justify-content: center; align-items: center; }
.logo-mark-img {
  max-width: 260px; width: 100%;
  filter: drop-shadow(0 0 40px rgba(240,112,32,0.35));
  transition: filter 0.5s, transform 0.5s;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.logo-mark-img:hover { filter: drop-shadow(0 0 65px rgba(240,112,32,0.6)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 6rem 4rem; border-bottom: 1px solid var(--border); }
.about-block h2 { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.about-block p { font-size: 0.95rem; color: rgba(238,242,247,0.68); line-height: 1.8; margin-bottom: 1rem; }

/* ── TARGETS ── */
.targets-section { padding: 6rem 4rem; background: var(--bg2); border-bottom: 1px solid var(--border); text-align: center; }
.targets-img-wrap { display: flex; justify-content: center; margin-top: 2rem; }
.targets-img-wrap img {
  max-width: 600px; width: 100%;
  filter: drop-shadow(0 0 40px rgba(240,112,32,0.28));
  transition: filter 0.5s, transform 0.5s;
}
.targets-img-wrap img:hover { filter: drop-shadow(0 0 65px rgba(240,112,32,0.5)); transform: scale(1.02); }

/* ── PHILOSOPHY ── */
.philosophy-block { padding: 6rem 4rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.phil-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  max-width: 800px;
  margin: 2.5rem 0;
  color: var(--accent);
}
.phil-body { font-size: 0.95rem; color: rgba(238,242,247,0.62); max-width: 580px; line-height: 1.8; }

/* ── CULTURE GRID ── */
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.culture-item {
  padding: 2rem;
  border: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.culture-item:hover { border-color: var(--accent); transform: translateY(-3px); background: rgba(240,112,32,0.02); }
.culture-item strong { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; }

/* ── REVEAL ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── HORIZONTAL LINE DIVIDER ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,112,32,0.3), transparent);
  margin: 0;
}

/* ── MOBILE ── */
@media (max-width: 800px) {
  #cursor-glow { display: none; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .hero, .tech-hero, .about-hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; gap: 2.5rem; }
  .hero-img-wrap, .tech-hero-img { order: -1; }
  .mol-grid, .mission-grid, .about-grid, .compare-grid { grid-template-columns: 1fr; gap: 3rem; }
  section, .molecules-section, .comparison, .philosophy-block, .about-grid,
  .contact-section, footer, .principles-section, .targets-section, .vision-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .platform-card { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .platform-content { padding-left: 0; margin-top: 1.5rem; }
  .culture-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-row { flex-direction: column; gap: 2rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
