:root {
  --color-black: #050505;
  --color-charcoal: #111113;
  --color-ink: #18181b;
  --color-white: #f7f4ef;
  --color-muted: #aaa49a;
  --color-line: rgba(247, 244, 239, 0.14);
  --color-red: #ff233d;
  --color-blue: #38bdf8;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::selection {
  background: var(--color-red);
  color: white;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0));
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px max(16px, calc((100vw - 1160px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand-lockup,
.site-nav {
  align-items: center;
  display: flex;
}

.brand-lockup {
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  display: grid;
  height: 36px;
  overflow: hidden;
  place-items: center;
  width: 36px;
}

.brand-mark img {
  height: 74%;
  object-fit: contain;
  width: 74%;
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--color-white);
}

.hero {
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero picture {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.32) 0%, rgba(5, 5, 5, 0.2) 54%, #050505 100%);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 112px 0 76px;
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 15vw, 12rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: 26px;
  max-width: 980px;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 span:first-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 239, 0.72);
}

.hero-copy {
  color: rgba(247, 244, 239, 0.78);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-red);
  color: white;
}

.button-primary:hover {
  background: white;
  color: var(--color-black);
}

.button-ghost {
  border-color: var(--color-line);
  color: var(--color-white);
}

.button-ghost:hover {
  border-color: var(--color-white);
}

.drop-meter {
  align-items: end;
  border-left: 1px solid var(--color-red);
  bottom: 38px;
  display: grid;
  gap: 4px;
  padding-left: 16px;
  position: absolute;
  right: max(16px, calc((100vw - 1160px) / 2));
  text-transform: uppercase;
}

.drop-meter span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.drop-meter strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 0.9;
}

.section-band {
  border-top: 1px solid var(--color-line);
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-grid {
  display: grid;
  gap: clamp(32px, 6vw, 76px);
  grid-template-columns: 180px 1fr;
  margin: 0 auto;
  width: var(--container);
}

.section-kicker {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--color-red);
  display: block;
  margin-bottom: 12px;
}

.story-content h2,
.section-heading h2,
.waitlist h2,
.social-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 920px;
  text-transform: uppercase;
}

.story-content > p,
.section-heading p,
.waitlist-panel > p,
.social-header p {
  color: rgba(247, 244, 239, 0.72);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 760px;
}

.answer-grid,
.product-grid {
  display: grid;
  gap: 1px;
  margin-top: 42px;
}

.answer-grid {
  background: var(--color-line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.answer-grid article,
.product-card {
  background: var(--color-charcoal);
  padding: clamp(24px, 4vw, 34px);
}

.answer-grid h3,
.product-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.answer-grid p,
.product-card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.signals {
  background: radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.1), transparent 28%), var(--color-black);
}

.signal-grid,
.faq-grid {
  display: grid;
  gap: 1px;
  margin-top: 42px;
}

.signal-grid {
  background: var(--color-line);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.signal-card,
.faq-item {
  background: var(--color-charcoal);
  padding: clamp(24px, 4vw, 34px);
}

.signal-card h3,
.faq-item h3 {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.signal-card p,
.faq-item p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.keyword-cloud span {
  border: 1px solid var(--color-line);
  color: rgba(247, 244, 239, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.visual-break {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 66vh;
  overflow: hidden;
}

.visual-break img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.visual-break:hover img {
  transform: scale(1.035);
}

.drop {
  background:
    linear-gradient(180deg, #050505 0%, #111113 100%);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  min-height: 280px;
  position: relative;
}

.product-card span {
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
}

.product-card h3 {
  margin-top: 56px;
}

.faq {
  background: linear-gradient(180deg, #111113 0%, #050505 100%);
}

.faq-grid {
  background: var(--color-line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.waitlist {
  background:
    linear-gradient(rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.82)),
    url("https://images.pexels.com/photos/16564733/pexels-photo-16564733.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
  padding: clamp(82px, 12vw, 150px) 0;
}

.waitlist-panel {
  margin: 0 auto;
  width: var(--container);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 34px;
  max-width: 720px;
}

.waitlist-form input {
  background: rgba(247, 244, 239, 0.08);
  border: 1px solid var(--color-line);
  color: var(--color-white);
  font: inherit;
  min-height: 54px;
  outline: none;
  padding: 0 18px;
  transition: border-color 180ms ease, background 180ms ease;
}

.waitlist-form input:focus {
  background: rgba(247, 244, 239, 0.12);
  border-color: var(--color-blue);
}

.waitlist-form input::placeholder {
  color: rgba(247, 244, 239, 0.44);
}

.form-message {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin: 14px 0 0;
  min-height: 24px;
}

.form-message.is-error {
  color: #ff8a9a;
}

.form-message.is-success {
  color: var(--color-blue);
}

.social {
  overflow: hidden;
}

.social-header,
.social-grid {
  margin: 0 auto;
  width: var(--container);
}

.social-header {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin-bottom: 38px;
}

.social-header a {
  color: var(--color-blue);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-tile {
  aspect-ratio: 4 / 5;
  background: var(--color-ink);
  overflow: hidden;
  position: relative;
}

.social-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
  width: 100%;
}

.social-tile::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.82) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.social-tile span {
  bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  left: 18px;
  line-height: 0.9;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.social-tile:hover img {
  filter: contrast(1.08);
  transform: scale(1.045);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0;
  width: var(--container);
}

.site-footer strong {
  color: var(--color-white);
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-brand img {
  height: auto;
  max-width: 280px;
  width: min(280px, 72vw);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--color-white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: 16px;
  }

  .site-nav {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.66) 0%, rgba(5, 5, 5, 0.64) 48%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.3));
  }

  .drop-meter {
    bottom: 24px;
    left: 16px;
    right: auto;
  }

  .section-grid,
  .answer-grid,
  .product-grid,
  .signal-grid,
  .faq-grid,
  .visual-break,
  .social-header,
  .social-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    border-left: 1px solid var(--color-red);
    padding-left: 14px;
  }

  .visual-break img {
    min-height: 360px;
  }

  .product-card {
    min-height: 230px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-form .button {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    display: grid;
    gap: 22px;
  }

  .keyword-cloud span {
    flex: 1 1 100%;
  }
}

@media (max-width: 520px) {
  .brand-lockup {
    font-size: 0.68rem;
    max-width: 100%;
  }

  .brand-mark {
    height: 32px;
    width: 32px;
  }

  .hero-content {
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
