:root {
  --bg: #030406;
  --surface: rgba(8, 12, 22, 0.72);
  --surface-soft: rgba(12, 18, 34, 0.58);
  --text: #f3fbff;
  --muted: rgba(214, 239, 255, 0.72);
  --cyan: #7bf6ff;
  --cyan-strong: #4fe0ff;
  --violet: #7b32ff;
  --magenta: #d20cff;
  --blue: #4e7cff;
  --white-glow: #d9fdff;
  --border: rgba(123, 246, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --glow: 0 0 22px rgba(123, 246, 255, 0.22), 0 0 44px rgba(210, 12, 255, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 2rem));
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(78, 124, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(210, 12, 255, 0.14), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(123, 246, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #010203 0%, #04060d 32%, #050814 100%);
}

body.is-loading {
  overflow: hidden;
}

a,
button,
iframe {
  font: inherit;
}

button {
  cursor: pointer;
}

.noise,
#particle-canvas,
.cinematic-vignette,
.light-sweep,
.fabric-flow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particle-canvas {
  z-index: 0;
}

.noise {
  z-index: 1;
  opacity: 0.08;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.012) 50%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cinematic-vignette {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 35%, transparent 0%, rgba(4, 8, 20, 0.08) 40%, rgba(4, 8, 20, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.76));
}

.light-sweep {
  z-index: 1;
  opacity: 0.22;
  background: linear-gradient(112deg, transparent 35%, rgba(123, 246, 255, 0.1) 47%, rgba(210, 12, 255, 0.1) 53%, transparent 64%);
  transform: translateX(-42%);
  animation: sweep 10s ease-in-out infinite;
  mix-blend-mode: screen;
}

.fabric-flow {
  z-index: 0;
  width: 34vw;
  height: 120vh;
  top: -10vh;
  filter: blur(10px);
  opacity: 0.13;
}

.fabric-flow--left {
  left: -10vw;
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(78, 124, 255, 0.14), rgba(123, 246, 255, 0.03));
  animation: fabricLeft 18s ease-in-out infinite;
}

.fabric-flow--right {
  right: -12vw;
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px),
    linear-gradient(180deg, rgba(210, 12, 255, 0.16), rgba(123, 246, 255, 0.02));
  animation: fabricRight 20s ease-in-out infinite;
}

.page-shell {
  position: relative;
  z-index: 2;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  gap: 2rem;
  background:
    radial-gradient(circle at center, rgba(78, 124, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(2, 3, 8, 0.96), rgba(4, 8, 18, 0.98));
  transition: opacity 800ms ease, visibility 800ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__core,
.loader__rings span {
  position: absolute;
  border-radius: 50%;
}

.loader__core {
  width: 7rem;
  height: 7rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.84), rgba(123, 246, 255, 0.34) 32%, rgba(210, 12, 255, 0.24) 65%, transparent 76%);
  filter: blur(2px);
  box-shadow: var(--glow);
  animation: loaderPulse 2.4s ease-in-out infinite;
}

.loader__rings {
  position: relative;
  width: 12rem;
  height: 12rem;
}

.loader__rings span {
  inset: 0;
  border: 1px solid rgba(123, 246, 255, 0.16);
  animation: spin 10s linear infinite;
}

.loader__rings span:nth-child(2) {
  inset: 1.3rem;
  border-color: rgba(210, 12, 255, 0.18);
  animation-duration: 8s;
  animation-direction: reverse;
}

.loader__rings span:nth-child(3) {
  inset: 2.7rem;
  border-color: rgba(78, 124, 255, 0.18);
  animation-duration: 6s;
}

.loader__text-wrap {
  text-align: center;
}

.loader__eyebrow,
.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(214, 239, 255, 0.58);
}

.loader__title,
.hero__title,
.section-head h2,
.story__copy h2,
.waitlist__intro h2,
.social__inner h2,
.benefits-panel h3 {
  font-family: "Syne", sans-serif;
}

.loader__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(123, 246, 255, 0.24), 0 0 40px rgba(210, 12, 255, 0.2);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  transition: background 300ms ease;
}

.brand-lockup {
  display: grid;
  gap: 0.12rem;
}

.brand-lockup__name,
.brand-lockup__tag,
.footer span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-lockup__name {
  font-size: 0.8rem;
}

.brand-lockup__tag {
  color: rgba(214, 239, 255, 0.54);
  font-size: 0.64rem;
}

.topbar__cta {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(123, 246, 255, 0.24);
  padding: 0.82rem 1.18rem;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 246, 255, 0.44);
  box-shadow: var(--glow);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__aura,
.hero__grid,
.hero__spotlight {
  position: absolute;
  pointer-events: none;
}

.hero__aura {
  border-radius: 50%;
  filter: blur(10px);
}

.hero__aura--one {
  width: 36rem;
  height: 36rem;
  top: 0;
  left: -12%;
  background: radial-gradient(circle, rgba(123, 246, 255, 0.12), transparent 60%);
}

.hero__aura--two {
  width: 30rem;
  height: 30rem;
  right: -6%;
  top: 16%;
  background: radial-gradient(circle, rgba(210, 12, 255, 0.14), transparent 62%);
}

.hero__spotlight {
  top: 3%;
  width: 28vw;
  max-width: 22rem;
  height: 88vh;
  opacity: 0.14;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 70%);
  filter: blur(28px);
}

.hero__spotlight--left {
  left: -9vw;
  transform: skewX(-12deg);
}

.hero__spotlight--right {
  right: -11vw;
  transform: skewX(12deg);
}

.hero__grid {
  inset: 10% 0 auto;
  height: 40%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
  transform: perspective(900px) rotateX(74deg);
  opacity: 0.22;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #d9fdff 24%, #74f6ff 55%, #b14cff 82%, #f0f6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(123, 246, 255, 0.16);
}

.hero__copy,
.story__copy p,
.waitlist__intro p,
.visual-card p,
.form-note,
.benefits-note {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero__discount {
  max-width: 38rem;
  margin: 1.15rem 0 0;
  color: rgba(233, 247, 255, 0.94);
  font-size: 1rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 42rem;
  margin-top: 1.7rem;
}

.countdown--compact {
  margin-top: 0;
}

.countdown__item {
  padding: 1rem 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.86), rgba(6, 9, 18, 0.72));
  border: 1px solid rgba(123, 246, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 22px rgba(123, 246, 255, 0.08);
  text-align: center;
}

.countdown__value {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white-glow);
  text-shadow: 0 0 22px rgba(123, 246, 255, 0.2), 0 0 30px rgba(123, 50, 255, 0.14);
}

.countdown__label {
  display: block;
  margin-top: 0.44rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(214, 239, 255, 0.62);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.button--primary {
  color: #040913;
  background: linear-gradient(135deg, #e6fbff 0%, #73f6ff 36%, #4e7cff 62%, #d20cff 100%);
  box-shadow: 0 14px 34px rgba(78, 124, 255, 0.28), 0 0 30px rgba(210, 12, 255, 0.16);
}

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

.button--ghost {
  color: var(--text);
  border-color: rgba(123, 246, 255, 0.18);
  background: rgba(8, 12, 22, 0.5);
}

.button--ghost:hover {
  border-color: rgba(123, 246, 255, 0.4);
  box-shadow: var(--glow);
}

.hero__visual {
  display: grid;
  justify-items: center;
}

.runway-scene {
  position: relative;
  width: min(44vw, 560px);
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(123, 246, 255, 0.14);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.86), rgba(4, 6, 14, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 60px rgba(78, 124, 255, 0.1), var(--shadow);
}

.runway-scene__glow,
.runway-scene__frame,
.runway-scene__lines,
.runway-scene__wave,
.runway-scene__crest {
  position: absolute;
  pointer-events: none;
}

.runway-scene__glow {
  border-radius: 50%;
  filter: blur(16px);
}

.runway-scene__glow--one {
  width: 18rem;
  height: 18rem;
  top: -5rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(123, 246, 255, 0.26), transparent 70%);
}

.runway-scene__glow--two {
  width: 16rem;
  height: 16rem;
  left: -4rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(210, 12, 255, 0.22), transparent 70%);
}

.runway-scene__frame {
  inset: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.runway-scene__lines {
  inset: 0;
  overflow: hidden;
}

.runway-scene__lines span {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 246, 255, 0.28), transparent);
}

.runway-scene__lines span:nth-child(1) {
  top: 22%;
}

.runway-scene__lines span:nth-child(2) {
  top: 50%;
}

.runway-scene__lines span:nth-child(3) {
  top: 78%;
}

.runway-scene__wave {
  left: -6%;
  width: 112%;
  border-radius: 50%;
  filter: blur(0.2px);
  transform-origin: center;
}

.runway-scene__wave--one {
  bottom: 18%;
  height: 22%;
  border-top: 4px solid rgba(123, 246, 255, 0.9);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  box-shadow: 0 0 18px rgba(123, 246, 255, 0.3);
  animation: waveDrift 7s ease-in-out infinite;
}

.runway-scene__wave--two {
  bottom: 24%;
  height: 28%;
  border-top: 3px solid rgba(78, 124, 255, 0.8);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  box-shadow: 0 0 18px rgba(78, 124, 255, 0.26);
  animation: waveDrift 9s ease-in-out infinite reverse;
}

.runway-scene__wave--three {
  bottom: 14%;
  height: 34%;
  border-top: 3px solid rgba(210, 12, 255, 0.78);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  box-shadow: 0 0 18px rgba(210, 12, 255, 0.24);
  animation: waveDrift 11s ease-in-out infinite;
}

.runway-scene__crest {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(123, 246, 255, 0.18);
  color: var(--white-glow);
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(78, 124, 255, 0.1), rgba(210, 12, 255, 0.06));
  box-shadow: 0 0 26px rgba(123, 246, 255, 0.16);
}

.floating-card {
  position: absolute;
  width: min(18rem, 42vw);
  padding: 1rem 1.1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: bob 5s ease-in-out infinite;
  pointer-events: none;
}

.floating-card span,
.visual-card span,
.story__point span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(123, 246, 255, 0.74);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.floating-card strong,
.visual-card h3,
.story__point strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.floating-card--top {
  top: 12%;
  left: -2%;
}

.floating-card--bottom {
  right: -4%;
  bottom: 10%;
  animation-delay: -2.5s;
}

.hero__marquee {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 2rem;
}

.hero__marquee span,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 14, 26, 0.48);
  color: rgba(232, 243, 255, 0.84);
  backdrop-filter: blur(12px);
}

.glass {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.76), rgba(7, 10, 18, 0.48));
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow);
}

.visual,
.story,
.waitlist {
  padding: 4rem 0 6rem;
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-head h2,
.story__copy h2,
.waitlist__intro h2,
.social__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.visual__panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.visual__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.42;
  pointer-events: none;
}

.visual__glow--one {
  width: 18rem;
  height: 18rem;
  top: -5rem;
  right: -3rem;
  background: radial-gradient(circle, rgba(123, 246, 255, 0.22), transparent 68%);
}

.visual__glow--two {
  width: 16rem;
  height: 16rem;
  bottom: -5rem;
  left: -3rem;
  background: radial-gradient(circle, rgba(210, 12, 255, 0.22), transparent 68%);
}

.visual__beam {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 50%;
  height: 140%;
  background: linear-gradient(180deg, rgba(123, 246, 255, 0), rgba(123, 246, 255, 0.14), rgba(123, 246, 255, 0));
  transform: rotate(24deg);
  filter: blur(10px);
  animation: beam 7s ease-in-out infinite;
  pointer-events: none;
}

.visual__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

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

.visual-card,
.story__point {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(7, 10, 18, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.6rem;
  align-items: start;
}

.story__copy {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.story__rail {
  display: grid;
  gap: 1rem;
}

.hype {
  padding: 4rem 0;
}

.hype__line {
  overflow: hidden;
  padding: 1.4rem 0;
}

.hype__line span {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: rgba(243, 251, 255, 0.92);
  text-shadow: 0 0 18px rgba(123, 246, 255, 0.08);
  transform: translateY(14px) scale(0.97);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 800ms ease;
}

.hype__line.is-visible span {
  transform: translateY(0) scale(1);
  text-shadow: 0 0 24px rgba(123, 246, 255, 0.14), 0 0 48px rgba(210, 12, 255, 0.14);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.waitlist__form {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}

.waitlist__form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 246, 255, 0.18), transparent 30%, transparent 70%, rgba(210, 12, 255, 0.18));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.9;
  pointer-events: none;
}

.waitlist__countdown {
  margin-bottom: 1.3rem;
}

.benefits-panel {
  margin-top: 1.6rem;
  padding: 1.35rem;
  border-radius: 24px;
}

.benefits-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.benefits-list {
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(235, 247, 255, 0.9);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.78rem;
  height: 0.42rem;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
  box-shadow: 0 0 10px rgba(123, 246, 255, 0.24);
}

.discount-banner {
  margin-top: 1.2rem;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
}

.discount-banner__label {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.discount-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(123, 246, 255, 0.12);
  background: rgba(4, 8, 18, 0.8);
  min-height: 44rem;
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: 44rem;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

a,
button,
iframe,
.topbar__cta,
.button,
.social-link {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.form-note {
  margin: 1rem 0 0;
}

.social {
  padding: 0 0 6rem;
}

.social__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 12rem;
  padding: 1rem 1.15rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(123, 246, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.82), rgba(7, 10, 18, 0.62));
  box-shadow: 0 0 20px rgba(123, 246, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 246, 255, 0.32);
  box-shadow: 0 0 24px rgba(123, 246, 255, 0.16), 0 0 36px rgba(210, 12, 255, 0.12);
}

.social-link__icon {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(123, 246, 255, 0.18), rgba(210, 12, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 20px rgba(123, 246, 255, 0.14);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(214, 239, 255, 0.54);
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tilt {
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.magnetic {
  will-change: transform;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.84; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sweep {
  0%, 100% { transform: translateX(-45%) skewX(-10deg); opacity: 0.08; }
  50% { transform: translateX(45%) skewX(-10deg); opacity: 0.28; }
}

@keyframes fabricLeft {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(2vh) rotate(4deg); }
}

@keyframes fabricRight {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-2vh) rotate(-5deg); }
}

@keyframes beam {
  0%, 100% { transform: translateX(0) rotate(24deg); opacity: 0.24; }
  50% { transform: translateX(70%) rotate(24deg); opacity: 0.52; }
}

@keyframes waveDrift {
  0%, 100% { transform: translateY(0) scaleX(1); }
  50% { transform: translateY(-8px) scaleX(1.02); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero,
  .story,
  .waitlist,
  .visual__columns,
  .social__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__visual {
    order: -1;
  }

  .runway-scene {
    width: min(82vw, 500px);
  }

  .floating-card--top {
    left: 0;
  }

  .floating-card--bottom {
    right: 0;
  }

  .social__links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 1rem 0;
  }

  .topbar__cta {
    display: none;
  }

  .hero__actions,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero__marquee span,
  .chip,
  .social-link {
    width: 100%;
  }

  .visual__panel,
  .story__copy,
  .waitlist__form,
  .social__inner {
    padding: 1.3rem;
  }

  .floating-card {
    position: relative;
    width: 100%;
  }

  .hero__marquee {
    gap: 0.75rem;
  }

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

  .form-frame,
  .form-frame iframe {
    min-height: 40rem;
  }
}

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