:root {
  --bg: #030303;
  --ink: #f8f8f5;
  --muted: #b9bbc2;
  --line: rgba(255, 255, 255, 0.14);
  --panel: #101014;
  --panel-2: #17171d;
  --lime: #d7ff3f;
  --aqua: #58f3ff;
  --pink: #ff3bd4;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 59, 212, 0.16), transparent 26rem),
    radial-gradient(circle at 88% 0%, rgba(88, 243, 255, 0.14), transparent 28rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(3, 3, 3, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #030303;
  background: var(--lime);
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-links {
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.site-footer a:hover,
.portal-dropdown a:hover,
.portal-trigger:hover,
.email-link:hover {
  color: var(--lime);
}

.header-actions {
  gap: 12px;
}

.portal-menu {
  position: relative;
}

.portal-trigger {
  min-height: 40px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.portal-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 8px;
  background: rgba(16, 16, 20, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.portal-menu:hover .portal-dropdown,
.portal-menu:focus-within .portal-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portal-dropdown a {
  padding: 11px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta,
.button.primary {
  color: #030303;
  background: var(--lime);
}

.header-cta {
  padding: 11px 17px;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.header-cta.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button {
  padding: 13px 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button.dark {
  margin-top: 20px;
  color: #fff;
  background: #030303;
  border-color: #030303;
}

.button.dark.outline {
  margin-left: 10px;
  color: #030303;
  background: transparent;
  border-color: #030303;
}

.hero {
  padding: clamp(36px, 5vw, 68px) clamp(18px, 5vw, 64px) clamp(64px, 8vw, 110px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy p,
.about p,
.brand-section p,
.press-card p,
.apply-section p,
.perk-grid p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 40%, rgba(3, 3, 3, 0.78)),
    radial-gradient(circle at 72% 16%, rgba(88, 243, 255, 0.24), transparent 20rem);
}

.media-badge {
  position: absolute;
  z-index: 2;
  max-width: 210px;
  padding: 13px 15px;
  color: #030303;
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.media-badge.top {
  top: 18px;
  right: 18px;
}

.media-badge.bottom {
  bottom: 18px;
  left: 18px;
  background: #fff;
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 64px);
}

.about {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.about p:last-child {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.logo-proof {
  padding-top: 0;
}

.logo-proof .eyebrow {
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-grid span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: #fff;
  background: #0b0b0d;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.perk-grid article,
.press-card,
.apply-form {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.perk-grid article {
  min-height: 245px;
  padding: 24px;
}

.perk-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--aqua);
  font-weight: 900;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(66px, 8vw, 108px) clamp(18px, 5vw, 64px);
  color: #030303;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
}

.brand-section .eyebrow,
.brand-section p {
  color: #0c0c0c;
}

.brand-access {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.brand-access .section-heading {
  margin-bottom: 0;
}

.brand-access .section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.brand-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-form .wide {
  grid-column: 1 / -1;
}

.press {
  padding-bottom: 0;
}

.press-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 72px);
  text-align: center;
}

.press-card p:last-child {
  max-width: 730px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.press-card .button {
  margin-top: 26px;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 64px);
}

.email-link {
  display: inline-flex;
  margin-top: 16px;
  color: #fff;
  font-weight: 900;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #e9e9e9;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

select {
  appearance: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer div {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .perk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-card,
  .brand-section,
  .brand-access,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .portal-trigger {
    min-height: 42px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .portal-dropdown {
    right: -54px;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 12px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-card {
    padding: 18px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .logo-grid,
  .perk-grid,
  .brand-form {
    grid-template-columns: 1fr;
  }

  .perk-grid article {
    min-height: auto;
  }

  .perk-grid span {
    margin-bottom: 24px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .site-footer,
  .site-footer div {
    flex-direction: column;
  }
}
