/* roamgigs — digital neon / gen-z landing */

:root {
  --bg-deep: #14122a;
  --bg-card: #1e1c2e;
  --lavender: #c4b5fd;
  --lavender-bright: #ede9fe;
  --cyber: #5eead4;
  --cyber-dim: #2dd4bf;
  --hot: #f472b6;
  --text: #fafafa;
  --text-muted: #b4b4c0;
  --line: rgba(196, 181, 253, 0.22);
  --glow-lav: rgba(196, 181, 253, 0.38);
  --glow-cyber: rgba(94, 234, 212, 0.28);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Syne", system-ui, sans-serif;
  --font-bubble: "Fredoka", system-ui, sans-serif;
  --radius: 1rem;
  --radius-pill: 999px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.grid-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 20%, transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(20, 18, 42, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-bubble);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--lavender-bright);
  text-shadow: 0 0 24px var(--glow-lav);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--lavender);
  color: var(--lavender-bright) !important;
  box-shadow: 0 0 20px var(--glow-lav);
}

.nav-cta:hover {
  color: var(--bg-deep) !important;
  background: var(--lavender-bright);
  border-color: var(--lavender-bright);
  box-shadow: 0 0 28px var(--glow-lav);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
}

.menu-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--lavender);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 0.25rem;
}

.mobile-nav-cta {
  color: var(--cyber) !important;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  max-width: min(92rem, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(3rem, 6vw, 4rem);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -20%;
  right: -5%;
  width: min(55vw, 32rem);
  height: min(55vw, 32rem);
  background: radial-gradient(circle, var(--glow-lav) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 5%;
  left: -5%;
  width: min(45vw, 22rem);
  height: min(45vw, 22rem);
  background: radial-gradient(circle, var(--glow-cyber) 0%, transparent 65%);
  filter: blur(48px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-media {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 4.5vw, 3.5rem);
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

/* Square video (1:1): no need to re-export — frame matches aspect ratio */
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: min(100%, min(75vh, 50rem));
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(196, 181, 253, 0.06), var(--bg-card));
  box-shadow:
    0 0 0 1px rgba(196, 181, 253, 0.1),
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(196, 181, 253, 0.14);
}

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-video:focus-visible {
  outline: 2px solid var(--cyber);
  outline-offset: 4px;
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyber);
  border: 1px solid rgba(94, 234, 212, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(30, 28, 46, 0.88);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyber);
  box-shadow: 0 0 12px var(--cyber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.65rem, 9vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  background: linear-gradient(105deg, var(--lavender-bright), var(--hot), var(--cyber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(196, 181, 253, 0.35));
}

.hero-lede {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--lavender-bright), var(--lavender));
  box-shadow: 0 0 32px var(--glow-lav);
}

.btn-primary:hover {
  box-shadow: 0 0 48px var(--glow-lav);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--cyber);
  color: var(--cyber);
  box-shadow: 0 0 20px var(--glow-cyber);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 36rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lavender-bright);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--bg-card), rgba(30, 28, 46, 0.65), var(--bg-card));
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--font-bubble);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--hot);
  text-transform: lowercase;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyber);
}

.how .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .how .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.06), transparent 50%);
  pointer-events: none;
}

.step-num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--lavender), var(--cyber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-card h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.step-card p {
  position: relative;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.vibes {
  padding-top: 0;
}

.vibes-inner {
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(244, 114, 182, 0.08), transparent 45%),
    var(--bg-card);
}

.pill-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pill-list li {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 181, 253, 0.2);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pullquote {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.pullquote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.35;
  color: var(--lavender-bright);
}

.careers {
  padding-top: 0;
}

.careers-inner {
  max-width: 40rem;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(94, 234, 212, 0.06), transparent 50%),
    var(--bg-card);
}

.careers-lede {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.careers-mail {
  display: inline-flex;
}

.cta-block {
  padding-bottom: clamp(4rem, 12vw, 7rem);
}

.cta-card {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid rgba(196, 181, 253, 0.35);
  background: linear-gradient(180deg, rgba(196, 181, 253, 0.12), var(--bg-card));
  box-shadow: 0 0 80px rgba(196, 181, 253, 0.12);
}

.cta-card h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.cta-copy {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.inline-email {
  font-weight: 700;
  color: var(--cyber);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 234, 212, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-email:hover {
  color: var(--lavender-bright);
  border-color: var(--lavender-bright);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: stretch;
}

@media (min-width: 520px) {
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.fine-print {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.fine-print a {
  font-weight: 600;
  color: var(--cyber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fine-print a:hover {
  color: var(--lavender-bright);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-logo {
  font-size: 1.15rem;
}

.footer-tag {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-address {
  margin: 0;
  font-size: 0.85rem;
  font-style: normal;
}

.footer-address a {
  font-weight: 600;
  color: var(--cyber);
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyber);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-inner {
    animation: none;
  }

  .pulse {
    animation: none;
  }
}
