:root {
  --bg: #07070b;
  --bg-soft: #10111a;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #a7adbf;
  --line: rgba(255,255,255,.14);
  --red: #ff2b4f;
  --red-2: #ff6b7f;
  --cyan: #58e6ff;
  --purple: #9b5cff;
  --green: #8effa8;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,43,79,.25), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(88,230,255,.16), transparent 30rem),
    radial-gradient(circle at 65% 80%, rgba(155,92,255,.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px 6px;
}

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

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255,43,79,.18), rgba(88,230,255,.08) 42%, transparent 68%);
  filter: blur(10px);
  opacity: .65;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 11, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.brand, .nav-links { display: flex; align-items: center; }
.brand { gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font: 900 17px/1 Space Grotesk, sans-serif;
  background: linear-gradient(135deg, var(--red), var(--purple));
  box-shadow: 0 14px 32px rgba(255, 43, 79, .25);
}
.brand-copy strong { display: block; font-weight: 900; letter-spacing: -.03em; }
.brand-copy small { display: block; color: var(--muted); margin-top: 2px; font-weight: 700; }

.nav-links { gap: 5px; }
.nav-links a {
  padding: 12px 14px;
  color: #d6d9e7;
  font-weight: 800;
  font-size: .92rem;
  border-radius: 999px;
  transition: .25s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  color: #fff !important;
  background: rgba(255, 43, 79, .16);
  border: 1px solid rgba(255, 43, 79, .3);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
  transition: .2s ease;
}

.section-grid,
.section,
.split-section,
.contact-section { margin-bottom: 110px; }

.hero {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 58px;
  align-items: center;
  min-height: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
}
.eyebrow span {
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

h1, h2, h3 { margin: 0; font-family: Space Grotesk, Inter, sans-serif; letter-spacing: -.055em; }
h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 8vw, 6.8rem);
  line-height: .86;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red-2), #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: .94; }
h3 { font-size: 1.35rem; line-height: 1.05; }

.hero-text,
.section-heading p,
.setup-panel p,
.contact-section p,
.video-card p,
.collab-card p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.button:hover { transform: translateY(-3px); }
.button.primary {
  background: linear-gradient(135deg, var(--red), #fb7b4f);
  box-shadow: 0 22px 50px rgba(255, 43, 79, .25);
}
.button.secondary { background: rgba(255,255,255,.08); border: 1px solid var(--line); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: 650px;
}
.stat-card {
  padding: 18px;
  min-height: 116px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.stat-card strong, .stat-card span {
  font-family: Space Grotesk, Inter, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -.05em;
}
.stat-card span { color: var(--red-2); }
.stat-card small { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; }

.hero-visual { position: relative; min-height: 600px; perspective: 1200px; }
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  animation: drift 8s ease-in-out infinite;
}
.orb-one { width: 130px; height: 130px; background: rgba(255,43,79,.55); top: 20px; right: 30px; }
.orb-two { width: 88px; height: 88px; background: rgba(88,230,255,.35); bottom: 88px; left: 12px; animation-delay: -2s; }

.phone-card,
.float-card,
.video-card,
.photo-card,
.collab-card,
.link-pill,
.setup-panel,
.contact-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.phone-card {
  position: absolute;
  right: 28px;
  top: 44px;
  width: min(360px, 78vw);
  padding: 14px;
  border-radius: 44px;
  overflow: hidden;
  transform: rotate(4deg);
}
.phone-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
}
.phone-topbar span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.35); }
.phone-card img { width: 100%; aspect-ratio: 9/14; object-fit: cover; border-radius: 30px; filter: saturate(1.15) contrast(1.05); }
.phone-overlay {
  position: absolute;
  inset: auto 28px 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
}
.phone-overlay p, .phone-overlay h2 { margin: 0; }
.phone-overlay p { color: var(--cyan); font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.phone-overlay h2 { margin-top: 7px; font-size: 1.28rem; letter-spacing: -.04em; }
.phone-overlay a { display: inline-flex; margin-top: 12px; font-weight: 900; color: #fff; }

.float-card {
  position: absolute;
  width: 205px;
  border-radius: 28px;
  padding: 10px;
  overflow: hidden;
  animation: floaty 6s ease-in-out infinite;
}
.float-card img { aspect-ratio: 16/10; object-fit: cover; border-radius: 20px; }
.float-card span { display: block; padding: 10px 6px 2px; color: #fff; font-weight: 900; }
.card-one { left: 4px; top: 92px; transform: rotate(-10deg); }
.card-two { left: 30px; bottom: 72px; transform: rotate(8deg); animation-delay: -2.4s; }

.marquee {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  margin-bottom: 110px;
}
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee span {
  font-family: Space Grotesk, Inter, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.045em;
  color: rgba(255,255,255,.76);
}
.marquee span::after { content: "✦"; color: var(--red-2); margin-left: 30px; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 16px; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.video-card { border-radius: var(--radius); overflow: hidden; min-height: 100%; }
.video-card > a { position: relative; display: block; overflow: hidden; }
.video-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s ease; }
.video-card:hover img { transform: scale(1.08); }
.video-card > div { padding: 20px; }
.tag { color: var(--cyan) !important; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; margin: 0 0 9px !important; }
.video-card h3 { margin-bottom: 10px; }
.video-card p { margin: 0; font-size: .94rem; }
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 43, 79, .92);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.setup-panel { padding: clamp(26px, 5vw, 54px); border-radius: var(--radius); }
.setup-panel h2 { margin-bottom: 18px; }
.feature-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #d8dce9;
  font-weight: 700;
  line-height: 1.5;
}
.feature-list span { color: var(--red-2); font-weight: 900; }
.photo-stack { position: relative; min-height: 540px; }
.photo-card { position: absolute; border-radius: 32px; padding: 12px; overflow: hidden; }
.photo-card img { border-radius: 24px; object-fit: cover; width: 100%; }
.photo-card figcaption { padding: 13px 8px 3px; color: #fff; font-weight: 900; }
.photo-card.large { width: min(560px, 100%); right: 0; top: 0; }
.photo-card.large img { aspect-ratio: 16 / 10; }
.photo-card.small { width: 280px; left: 0; bottom: 0; transform: rotate(-7deg); }
.photo-card.small img { aspect-ratio: 1 / 1; }

.link-section { padding: clamp(24px, 5vw, 54px); border-radius: 36px; background: rgba(255,255,255,.035); border: 1px solid var(--line); }
.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.link-pill {
  min-height: 160px;
  padding: 20px;
  border-radius: 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.link-pill:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.pill-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  font-weight: 900;
}
.link-pill strong { display: block; font-size: 1.18rem; margin-bottom: 6px; }
.link-pill small { color: var(--muted); font-weight: 700; }

.collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collab-card { padding: 28px; border-radius: var(--radius); }
.collab-card span { color: var(--red-2); font: 900 .8rem/1 Space Grotesk, sans-serif; letter-spacing: .16em; }
.collab-card h3 { margin: 18px 0 12px; font-size: 1.55rem; }
.collab-card p { margin: 0; }

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,43,79,.20), rgba(88,230,255,.08)),
    rgba(255,255,255,.055);
}
.contact-section h2 { margin-bottom: 12px; }
.contact-section p { margin: 0; max-width: 650px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 50px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer p { margin: 0; }
.footer a { color: #fff; font-weight: 900; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes drift { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(12px,-18px,0) scale(1.08); } }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -18px; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 600px; }
  .video-grid, .link-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 20px, 1180px); }
  .site-header { top: 10px; border-radius: 24px; align-items: flex-start; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7,7,11,.94);
    backdrop-filter: blur(18px);
    transform-origin: top;
    transform: scaleY(0.75);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-links.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section-grid, .section, .split-section, .contact-section, .marquee { margin-bottom: 72px; }
  .hero-actions, .contact-section, .footer { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .phone-card { right: 0; left: auto; top: 20px; width: min(330px, 84vw); }
  .float-card { width: 165px; }
  .card-one { left: 0; top: 70px; }
  .card-two { left: 12px; bottom: 30px; }
  .video-grid, .link-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: 500px; }
  .photo-card.large { width: 100%; }
  .photo-card.small { width: 210px; }
}

/* Dedicated Beacons link section */
.beacons-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,43,79,.22), transparent 28rem),
    radial-gradient(circle at 85% 80%, rgba(88,230,255,.13), transparent 30rem),
    rgba(255,255,255,.035);
  border: 1px solid var(--line);
}

.beacons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.beacons-layout {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
}

.beacon-feature {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  overflow: hidden;
}

.beacon-feature h3 {
  max-width: 420px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: .88;
  margin-bottom: 18px;
}

.beacon-feature p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow.mini {
  margin-bottom: 16px;
  font-size: .68rem;
}

.beacon-rings {
  position: absolute;
  inset: auto -90px -120px auto;
  width: 390px;
  height: 390px;
  border-radius: 999px;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255,255,255,.08) 0 26%, transparent 27% 42%, rgba(255,255,255,.08) 43% 44%, transparent 45%),
    linear-gradient(135deg, rgba(255,43,79,.55), rgba(155,92,255,.35), rgba(88,230,255,.28));
  animation: spinSlow 18s linear infinite;
}

.beacon-cards {
  display: grid;
  gap: 14px;
}

.beacon-link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.beacon-link-card:hover {
  transform: translateX(8px);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
}

.beacon-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--purple));
  box-shadow: 0 16px 34px rgba(255,43,79,.2);
  font-size: 1.2rem;
  font-weight: 900;
}

.beacon-link-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-size: 1.18rem;
  letter-spacing: -.035em;
}

.beacon-link-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.beacon-link-card b {
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: #fff;
  font-size: .82rem;
}

.quick-link-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-link-strip a {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: #e8ebf6;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.quick-link-strip a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .beacons-layout { grid-template-columns: 1fr; }
  .beacon-feature { min-height: 360px; }
}

@media (max-width: 760px) {
  .beacon-link-card {
    grid-template-columns: auto 1fr;
  }
  .beacon-link-card b {
    grid-column: 2;
    justify-self: start;
  }
  .quick-link-strip a { width: 100%; text-align: center; }
}


/* Small performance and smoothness pass */
.section,
.split-section,
.contact-section,
.beacons-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.cursor-glow {
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.tilt-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.beacon-link-card.media-kit-card {
  border-color: rgba(255,43,79,.38);
  background: linear-gradient(145deg, rgba(255,43,79,.16), rgba(255,255,255,.05));
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .tilt-card:hover,
  .button:hover,
  .beacon-link-card:hover,
  .quick-link-strip a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* Official footer language */
.official-footer div {
  display: grid;
  gap: 8px;
}

.official-footer small {
  display: block;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.6;
}
