:root {
  --background: #262626;
  --background-deep: #1f1f1f;
  --surface: #2d2d2d;
  --surface-soft: #303030;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --text-faint: rgba(255, 255, 255, 0.42);
  --primary: #fa0071;
  --primary-soft: rgba(250, 0, 113, 0.14);
  --border: rgba(255, 255, 255, 0.13);
  --max-width: 1200px;
  --header-height: 78px;
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--primary);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(38, 38, 38, 0.88);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 52px) clamp(22px, 5vw, 72px) 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--background));
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-glow-one {
  width: min(42vw, 620px);
  aspect-ratio: 1;
  top: 8%;
  right: -14%;
  background: radial-gradient(circle, rgba(250, 0, 113, 0.22), transparent 66%);
}

.hero-glow-two {
  width: min(34vw, 460px);
  aspect-ratio: 1;
  bottom: 4%;
  left: -12%;
  background: radial-gradient(circle, rgba(250, 0, 113, 0.14), transparent 68%);
}

.hero-content {
  width: min(100%, 1080px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(100%, 980px);
  height: auto;
  margin: 18px auto 30px;
  mix-blend-mode: normal;
}

.hero-copy {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}


.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(250, 0, 113, 0.38);
  outline-offset: 3px;
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 34px rgba(250, 0, 113, 0.18);
}

.button-primary:hover {
  box-shadow: 0 14px 42px rgba(250, 0, 113, 0.28);
}


.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.section {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) 0;
}

.about {
  border-top: 1px solid var(--border);
}

.about > .section-kicker {
  margin-bottom: 44px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 9vw, 118px);
  align-items: start;
}

.about-heading h2,
.section-heading h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.accent-line {
  width: 110px;
  height: 5px;
  margin-top: 34px;
  background: var(--primary);
  border-radius: 999px;
}

.about-copy {
  padding-top: 4px;
}

.about-copy p {
  margin: 0 0 1.2em;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.8;
}

.about-copy strong {
  color: var(--text);
  font-weight: 750;
}

.listen {
  width: 100%;
  max-width: none;
  padding-right: max(22px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(22px, calc((100vw - var(--max-width)) / 2));
  background: var(--background-deep);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.section-heading .section-kicker,
.contact-intro .section-kicker {
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--text-muted);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.platform-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background 220ms ease;
}

.platform-card:nth-child(2n) {
  border-right: 0;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.platform-card:hover,
.platform-card:focus-visible {
  background: rgba(250, 0, 113, 0.065);
}

.platform-card:hover::before,
.platform-card:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.platform-index {
  grid-column: 1;
  grid-row: 1;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.platform-name {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: end;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.04em;
}

.platform-meta {
  grid-column: 1 / 3;
  grid-row: 3;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.platform-card svg,
.email-link svg,
.submit-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.platform-card > svg {
  grid-column: 3;
  grid-row: 1;
  width: 26px;
  height: 26px;
  color: var(--text-muted);
  transition: color 180ms ease, transform 220ms var(--ease);
}

.platform-card:hover > svg {
  color: var(--primary);
  transform: translate(3px, -3px);
}

.contact {
  width: 100%;
  max-width: none;
  padding-right: max(22px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(22px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 10% 30%, rgba(250,0,113,.10), transparent 34%),
    var(--background);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.contact-intro h2 {
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.contact-intro > p:not(.section-kicker) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--primary);
  font-weight: 760;
  word-break: break-word;
}

.email-link svg {
  width: 20px;
  height: 20px;
}

.submission-form {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.88);
  font-size: 0.88rem;
  font-weight: 720;
}

.field label span {
  color: var(--primary);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #252525;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 148px;
  padding: 15px 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(255,255,255,.22);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(250,0,113,.11);
  background: #232323;
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #ff5b7f;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.form-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

.submit-button {
  flex: 0 0 auto;
  border: 0;
}

.submit-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.submit-button.is-sending {
  pointer-events: none;
  opacity: 0.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--border);
  background: var(--background-deep);
}

.site-footer p {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.78rem;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-brand {
  font-size: 0.82rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 110px 28px 50px;
    background: rgba(31,31,31,.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    font-size: clamp(2rem, 10vw, 4rem);
    font-weight: 780;
    letter-spacing: -0.04em;
  }

  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 680px) {
  .brand span {
    font-size: 0.8rem;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-logo {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }

  .hero-copy br {
    display: none;
  }


  .button {
    width: 100%;
  }

  .section {
    width: min(calc(100% - 36px), var(--max-width));
    padding-block: 86px;
  }

  .listen,
  .contact {
    width: 100%;
    padding-inline: 18px;
  }

  .about > .section-kicker {
    margin-bottom: 28px;
  }

  .about-grid {
    gap: 40px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .platform-card:nth-child(2n) {
    border-right: 0;
  }

  .platform-card {
    min-height: 188px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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