@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Anton', Arial, sans-serif;
  background: #d4161d;
  color: white;
}

.nav {
  position: fixed;
  top: 22px;
  left: 24px;
  z-index: 10;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw;
}

h1 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.9;

  /* UPDATED SPACING */
  letter-spacing: 0em;
}

.word-window {
  height: 1em;
  overflow: hidden;
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

.word-track {
  display: flex;
  flex-direction: column;
  animation: scrollWords 10s infinite ease-in-out;
}

.word {
  height: 1em;
  line-height: 0.9;
  letter-spacing: 0em;
  display: block;
  margin-bottom: 0.3em;
}

@keyframes scrollWords {
  0%, 12% { transform: translateY(0); }

  20%, 32% { transform: translateY(-1.3em); }

  40%, 52% { transform: translateY(-2.6em); }

  60%, 72% { transform: translateY(-3.9em); }

  80%, 92% { transform: translateY(-5.2em); }

  100% { transform: translateY(0); }
}

p {
  max-width: 820px;
  margin: 28px 0 0;
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1.25;
}

@media (max-width: 700px) {
  .nav {
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
  }

  .hero {
    align-items: center;
    text-align: center;
    padding: 90px 22px 40px;
  }

  h1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: normal;
    font-size: clamp(72px, 22vw, 110px);
    line-height: 0.88;

    /* MOBILE SPACING */
    letter-spacing: -0.005em;

    gap: 0.05em;
  }

  p {
    margin-top: 24px;
    font-size: 20px;
  }
}

.science-story {
  min-height: 100vh;
  padding-bottom: 120px;
  background: #d4161d;
  color: white;
  position: relative;
  overflow: hidden;
}

.story-window {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 360px;
  padding-bottom: 80px;
}

.story-icon {
  width: 360px;
  height: 360px;
  border: 6px solid white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 130px;
  box-sizing: border-box;
}

.story-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 86px);
  text-transform: uppercase;
  line-height: 0.9;
}

.story-copy p {
  margin: 0;
  max-width: 620px;
  font-family: Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.2;
}

@media (max-width: 800px) {
  .science-sticky {
    padding: 70px 24px;
  }

  .science-sticky h2 {
    white-space: normal;
    font-size: clamp(50px, 16vw, 88px);
    margin-bottom: 36px;
  }

  .story-panel {
    width: 85vw;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-icon {
    width: 220px;
    height: 220px;
    font-size: 82px;
  }
}

/* =========================
   SCIENCE STORY SECTION
========================= */

.science-story {
  background: #d4161d;
  color: white;
}

.science-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  height: auto;
  overflow: visible;

  padding: 80px 5vw;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.science-sticky h2 {
  margin: 0 0 50px;

  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.2em;

  white-space: nowrap;
  text-transform: uppercase;

  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.9;

  letter-spacing: 0em;
}

/* WORD REEL */

.story-word-window {
  line-height: 1em;
  height: 1em;
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}

.story-word-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.story-word {
  height: 1em;
  line-height: 1em;
  display: block;
  margin: 0;
  padding: 0;
}

/* HORIZONTAL STORY AREA */

.story-window {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  min-height: 360px;
  padding-bottom: 80px;
}

.story-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.story-panel {
  flex: 0 0 90vw;

  max-width: 1200px;
  min-height: 360px;

  margin-right: 6vw;

  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;

  align-items: center;
}

.story-panel:last-child {
  margin-right: 0;
}

/* ICON */

.story-icon {
  width: 360px;
  height: 360px;

  border: 6px solid white;
  border-radius: 28px;

  background: #f4f1ea;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.story-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* COPY */

.story-copy h3 {
  margin: 0 0 18px;

  font-size: clamp(40px, 5vw, 86px);

  text-transform: uppercase;
  line-height: 0.9;
}

.story-copy p {
  margin: 0;

  max-width: 620px;

  font-family: Arial, sans-serif;

  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.2;
}

/* MOBILE */

@media (max-width: 800px) {

  .science-sticky {
    padding: 70px 20px 30px;
    justify-content: flex-start;
  }

  .science-sticky h2 {
    flex-wrap: wrap;
    white-space: normal;
    font-size: clamp(28px, 8.5vw, 64px);
    margin-bottom: 20px;
    gap: 0.1em;
    overflow: visible;
  }

  .story-panel {
    width: 88vw;
    grid-template-columns: auto 1fr;
    gap: 16px;
    min-height: unset;
    align-items: start;
  }

  .story-copy p {
    max-width: 100%;
  }

  .story-icon {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    border-width: 4px;
  }

  .story-copy h3 {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 8px;
  }

  .story-copy p {
    font-size: clamp(14px, 3.8vw, 20px);
    line-height: 1.25;
  }

}

@media (max-width: 480px) {

  .science-sticky {
    padding: 60px 16px 24px;
  }

  .science-sticky h2 {
    font-size: clamp(24px, 7.5vw, 40px);
    margin-bottom: 12px;
  }

  .story-icon {
    width: 100px;
    height: 100px;
  }

}

/* =========================
   ABOUT / MANIFESTO SECTION
========================= */

.about-manifesto {
  background: #f4f1ea;
  color: #111;

  padding: 120px 5vw;

  box-sizing: border-box;
}

.about-inner {
  max-width: 1400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 80px;

  align-items: start;
}

/* LEFT SIDE */

.about-statement h2 {
  margin: 0;

  font-family: 'Anton', Arial, sans-serif;

  font-size: clamp(56px, 8vw, 140px);

  line-height: 0.9;

  text-transform: uppercase;

  letter-spacing: 0em;

  color: #111;
}

/* RIGHT SIDE */

.about-copy {
  max-width: 680px;

  padding-top: 12px;
}

.about-copy p {
  margin: 0 0 28px;

  max-width: none;

  font-family: Arial, sans-serif;

  font-size: clamp(22px, 2.2vw, 34px);

  line-height: 1.18;

  color: #111;
}

/* RED KICKER */

.about-copy .about-kicker {
  font-family: 'Anton', Arial, sans-serif;

  font-size: clamp(32px, 4vw, 64px);

  line-height: 0.95;

  text-transform: uppercase;

  color: #d4161d;
}

/* BIG QUOTE */

.about-copy .about-quote {
  margin: 38px 0;

  font-family: 'Anton', Arial, sans-serif;

  font-size: clamp(36px, 5vw, 82px);

  line-height: 0.95;

  text-transform: uppercase;

  color: #d4161d;
}

/* MOBILE */

@media (max-width: 850px) {

  .about-manifesto {
    padding: 90px 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .about-statement h2 {
    font-size: clamp(52px, 16vw, 96px);
  }

  .about-copy {
    max-width: 100%;
  }

}
.nav {
  transition: color 0.4s ease,
              background-color 0.4s ease,
              opacity 0.4s ease;
}

/* =========================
   COMING SOON SECTION
========================= */

.coming-soon {
  background: #d4161d;
  color: white;
  padding: 120px 5vw;
  box-sizing: border-box;
}

.coming-inner {
  max-width: 900px;
}

.coming-soon h2 {
  margin: 0 0 32px;
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  text-transform: uppercase;
  line-height: 0.9;
}

.coming-soon p {
  margin: 0 0 20px;
  max-width: 720px;
}

.coming-sub {
  opacity: 0.8;
  font-size: clamp(18px, 1.8vw, 26px) !important;
}

.coming-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 18px 40px;
  background: white;
  color: #d4161d;
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.coming-cta:hover {
  background: #f4f1ea;
}

.signup-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.signup-row {
  display: flex;
  gap: 16px;
}

.signup-form input {
  flex: 1;
  padding: 18px 24px;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  border: 3px solid white;
  background: transparent;
  color: white;
  outline: none;
}

.signup-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.signup-form button {
  padding: 18px 40px;
  background: white;
  color: #d4161d;
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.signup-form button:hover {
  background: #f4f1ea;
}

.signup-success {
  display: none;
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

@media (max-width: 600px) {
  .signup-row {
    flex-direction: column;
  }
  .signup-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 90px 24px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #111;
  color: white;
  padding: 60px 5vw;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-links a {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: white;
  text-decoration: none;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}