:root {
  --bg: #070708;
  --panel: rgba(255, 255, 255, .035);
  --line: rgba(255, 255, 255, .10);
  --text: #f5f5f5;
  --muted: #9b9ca1;
  --red: #ff1010;
  --red-soft: rgba(255, 16, 16, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.65) 60%, transparent 100%);
}

.glow {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  border-radius: 999px;
  filter: blur(110px);
}

.glow-one {
  width: 460px;
  height: 460px;
  top: -180px;
  right: -80px;
  background: rgba(255, 16, 16, .12);
}

.glow-two {
  width: 320px;
  height: 320px;
  left: 12%;
  bottom: -220px;
  background: rgba(255, 16, 16, .07);
}

.shell {
  width: min(1240px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.topbar {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 22vw, 310px);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7c7ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,16,16,.85);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero {
  padding: clamp(86px, 12vh, 150px) 0 clamp(74px, 10vh, 120px);
  max-width: 1060px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #b2b3b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .21em;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  background: var(--red);
  transform: skewX(-22deg);
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(54px, 7.4vw, 110px);
  line-height: .82;
  letter-spacing: -.075em;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}

h1 span { display: inline-block; }

h1 .quiet { color: #efefef; }
h1 .red {
  color: var(--red);
  text-shadow: 0 0 48px rgba(255,16,16,.12);
}

.lead {
  max-width: 720px;
  margin: 46px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}


.hero-tagline {
  margin-top: 38px;
  color: #d5d5d8;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 650;
  line-height: 1.45;
}

.product-line {
  margin: 12px 0 0;
  color: #7f8085;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 700;
  letter-spacing: .035em;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}

.button {
  min-height: 54px;
  padding: 0 22px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  transform: skewX(-6deg);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button > * { transform: skewX(6deg); }

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 36px rgba(255,16,16,.17);
}

.button.primary:hover {
  transform: skewX(-6deg) translateY(-2px);
  box-shadow: 0 17px 42px rgba(255,16,16,.26);
  background: #ff2525;
}

.coming {
  color: #707176;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 166px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 34px 34px 32px 0;
  align-content: start;
}

.principles article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.number {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  padding-top: 3px;
}

.principles h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .10em;
  font-weight: 900;
}

.principles p {
  margin: 0;
  color: #7f8085;
  font-size: 13px;
  line-height: 1.65;
}

footer {
  margin-top: auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #626368;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

footer a {
  color: #98999e;
  text-decoration: none;
  transition: color .2s ease;
}

footer a:hover { color: var(--red); }

@media (max-width: 820px) {
  .shell { width: min(100% - 34px, 1240px); }
  .topbar { min-height: 96px; }
  .brand { width: 205px; }
  .status { font-size: 9px; letter-spacing: .12em; }
  .hero { padding: 64px 0 68px; }
  h1 { font-size: clamp(46px, 9.8vw, 72px); line-height: .86; letter-spacing: -.06em; }
  .lead { margin-top: 34px; }
  .principles { grid-template-columns: 1fr; }
  .principles article,
  .principles article + article {
    min-height: auto;
    padding: 26px 0;
    border-left: 0;
  }
  .principles article + article { border-top: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1240px); }
  .topbar { min-height: 86px; }
  .brand { width: 176px; }
  .status { display: none; }
  .hero { padding: 48px 0 58px; }
  .eyebrow { font-size: 9px; letter-spacing: .16em; margin-bottom: 21px; }
  .eyebrow span { width: 26px; }
  h1 { font-size: clamp(32px, 10vw, 48px); line-height: .9; letter-spacing: -.05em; }
  h1 span { display: block; white-space: nowrap; }
  .lead { font-size: 16px; line-height: 1.62; margin-top: 30px; }
  .actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 34px; }
  .button { width: 100%; justify-content: space-between; }
  .coming { padding-left: 2px; }
  footer { min-height: 110px; gap: 14px; align-items: flex-start; justify-content: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
