:root {
  --ink: #071523;
  --ink-2: #314256;
  --navy: #03070c;
  --blue: #1769a6;
  --pink: #f31248;
  --pink-dark: #d80f43;
  --paper: #fffdfa;
  --paper-alt: #f4efe8;
  --white: #ffffff;
  --muted: #6a7889;
  --line: rgba(7, 21, 35, 0.12);
  --soft: rgba(255, 255, 255, 0.78);
  --radius: 18px;
  --shadow: 0 22px 58px rgba(7, 15, 24, 0.1);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 18px 28px;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) auto minmax(240px, 0.72fr);
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 14px 0;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--pink);
}

.platform-link,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pink);
  border-radius: 999px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.platform-link {
  min-height: 54px;
  padding: 0 28px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.language-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
}

.language-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn.primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 22, 84, 0.28);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover,
.platform-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  height: min(calc(100svh - var(--header-height)), 860px);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 32, 0.88), rgba(3, 20, 32, 0.48) 48%, rgba(3, 20, 32, 0.72)),
    linear-gradient(0deg, rgba(3, 20, 32, 0.45), rgba(3, 20, 32, 0.1));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px 56px;
  padding: 54px 0;
  align-items: end;
}

.hero-copy,
.hero-side,
.hero-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
}

h1,
h2 {
  font-family: "Krona One", Montserrat, Arial, sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 58px;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 900;
}

.hero-side {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: 52px;
  align-self: center;
}

.hero-side p {
  max-width: 520px;
  font-size: 18px;
  font-weight: 500;
}

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

.hero-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(4, 18, 30, 0.58);
  backdrop-filter: blur(12px);
}

.hero-card h2 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 28px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card.secondary {
  background: rgba(255, 255, 255, 0.16);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 14px;
}

.countdown div {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.countdown strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.countdown span {
  display: block;
  margin-top: -8px;
  font-size: 11px;
  font-weight: 800;
}

.section {
  padding: 94px 0;
}

.section.compact {
  padding: 40px 0;
}

.section.light {
  background: var(--paper);
}

.section.dark {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #02070d 0%, #071927 52%, #132a62 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.section.platform-teaser {
  background: #061927;
  color: var(--white);
}

.section.network {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(140deg, #03070c 0%, #06111d 46%, #071923 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.home-app-strip {
  padding: 72px 0 46px;
}

.home-app-strip + .section {
  padding-top: 48px;
}

.center {
  text-align: center;
}

.section-lead {
  width: min(760px, 100%);
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 18px;
}

.dark .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-intro p:last-child {
  padding-left: 52px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
}

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

.metric {
  min-height: 142px;
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  color: var(--pink);
  font-size: 46px;
  font-weight: 900;
}

.metric span {
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.feature-card div {
  padding: 26px;
}

.feature-card p,
.two-col-card p,
.category-card li,
.layer-grid p,
.step-card p,
.contact-card,
.legal-card p {
  color: var(--muted);
}

.two-col-card,
.platform-preview,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.two-col-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-card {
  overflow: hidden;
  border-radius: 22px;
  background: #e8ecef;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 9px;
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(-45deg);
}

.layer-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.layer-grid article,
.step-card,
.category-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.layer-grid span,
.step-card span,
.category-card .number {
  display: inline-flex;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.platform-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-card p {
  color: rgba(255, 255, 255, 0.74);
}

.platform-preview {
  padding: 44px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card {
  scroll-margin-top: 100px;
}

.category-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.category-card li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.mini-category-grid,
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.mini-category-grid a,
.city-grid div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-weight: 900;
}

.mini-category-grid span,
.city-grid span {
  display: block;
  color: var(--pink);
  font-size: 12px;
}

.split-payout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.split-payout p {
  color: rgba(255, 255, 255, 0.76);
}

.payout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payout-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.payout-grid span {
  display: block;
  color: var(--pink);
  font-size: 54px;
  font-weight: 900;
}

.network-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.inline-mail-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: end;
}

.inline-mail-form label {
  display: grid;
  gap: 8px;
  min-width: min(320px, 100%);
  color: var(--white);
  font-weight: 800;
}

.inline-mail-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
}

.inline-mail-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.city-grid div {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.manifesto-card {
  padding: 54px;
  border-left: 7px solid var(--pink);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.manifesto-card p:last-child {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.contact-grid {
  align-items: start;
}

.contact-card,
.form-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card span {
  display: block;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-card a {
  font-size: 21px;
  font-weight: 900;
}

.form-card {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.form-card label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.site-footer {
  padding: 58px 0 34px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-top nav,
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-page {
  min-height: 60vh;
}

.legal-card {
  padding: 44px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-lead.left {
  margin-left: 0;
  margin-right: 0;
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.editorial-split > div {
  min-width: 0;
}

.editorial-split p {
  color: var(--muted);
  font-size: 18px;
}

.dark .editorial-split p,
.network .editorial-split p {
  color: rgba(255, 255, 255, 0.78);
}

.article-panel {
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.app-badges img {
  width: auto;
  height: 48px;
  padding: 3px;
  border: 1px solid rgba(6, 25, 39, 0.16);
  border-radius: 10px;
  background: #050505;
  box-shadow: 0 12px 28px rgba(6, 25, 39, 0.12);
}

.article-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.logo-strip img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
}

.home-card-grid,
.location-grid,
.membership-grid,
.event-grid,
.chapter-grid {
  display: grid;
  gap: 22px;
}

.home-card-grid.four,
.location-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-card-grid.three,
.membership-grid,
.chapter-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offset-grid {
  margin-top: 44px;
}

.home-tile,
.location-card,
.membership-card,
.event-card,
.chapter-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-tile,
.feature-card,
.chapter-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.home-tile img,
.location-card img,
.event-card img,
.chapter-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.home-tile div,
.location-card div,
.event-card div,
.chapter-card div,
.membership-card {
  padding: 24px;
}

.home-tile div,
.feature-card div,
.chapter-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-tile .btn,
.feature-card .btn,
.chapter-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.home-tile p,
.location-card p,
.event-card p,
.chapter-card p,
.membership-card p,
.membership-card li {
  color: var(--muted);
}

.home-tile span,
.location-card span,
.membership-card span,
.membership-card small {
  display: block;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.dark-tile {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark-tile h3,
.dark-tile p {
  color: var(--white);
}

.statement-panel {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  padding: 34px;
  border-left: 7px solid var(--pink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.statement-panel p {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.statement-panel .btn,
.manifesto-card .btn {
  justify-self: start;
}

.membership-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.membership-card strong {
  display: block;
  margin: 14px 0 4px;
  color: var(--pink);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.membership-card small {
  margin: 10px 0 20px;
  color: var(--ink);
}

.membership-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-card li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

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

.event-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: stretch;
}

.event-card img {
  height: 100%;
  min-height: 260px;
}

.event-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.chapter-card {
  margin-top: 36px;
}

.anchor-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.crays-paper-card {
  border-top: 4px solid var(--pink);
}

.two-col-card.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.creator-opening {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%);
}

.creator-proof {
  border-top: 4px solid var(--pink);
}

.creator-proof p {
  color: var(--muted);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mini-stat-grid span {
  display: grid;
  gap: 2px;
  min-height: 92px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.mini-stat-grid strong {
  color: var(--pink);
  font-size: 24px;
  line-height: 1;
}

.creator-economy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.creator-economy-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.creator-economy-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.creator-economy-grid span,
.creator-economy-grid h3,
.creator-economy-grid p {
  margin-inline: 22px;
}

.creator-economy-grid span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.creator-economy-grid p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.light-checks li {
  color: rgba(255, 255, 255, 0.86);
}

.content-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 18px;
  margin-top: 42px;
}

.content-collage img {
  width: 100%;
  min-height: 310px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.content-collage img:first-child {
  grid-row: span 2;
  min-height: 640px;
}

.destination-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.destination-columns > div {
  min-width: 0;
}

.compact-location-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.compact-location-grid .location-card img {
  aspect-ratio: 1.55 / 1;
}

.dark-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dark-contact-card span {
  color: var(--pink);
}

.dark .form-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.dark .form-card label {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(150px, 0.55fr) auto minmax(220px, 0.55fr);
    gap: 22px;
  }

  .brand {
    width: 152px;
  }

  .site-nav {
    gap: 22px;
    font-size: 13px;
  }

  .platform-link {
    padding: 0 22px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-card h2 {
    font-size: 25px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    max-height: none;
  }

  .hero-grid {
    gap: 18px;
    padding: 34px 0;
    align-content: center;
  }

  .hero-card {
    min-height: 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    gap: 12px;
    padding-top: 10px;
  }

  body.nav-open .header-actions {
    display: flex;
  }

  .platform-link {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .language-link {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .hero-grid,
  .split-intro,
  .two-col-card,
  .platform-preview,
  .split-payout,
  .network-layout,
  .contact-grid,
  .editorial-split,
  .two-col-card.reverse,
  .destination-columns {
    grid-template-columns: 1fr;
  }

  .hero-side {
    padding-left: 0;
    border-left: 0;
  }

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

  .platform-head .btn {
    justify-self: start;
  }

  .metric-grid,
  .feature-grid,
  .category-grid,
  .layer-grid,
  .step-grid,
  .payout-grid,
  .mini-category-grid,
  .city-grid,
    .home-card-grid.four,
    .home-card-grid.three,
    .location-grid,
    .compact-location-grid,
    .membership-grid,
    .chapter-grid,
    .creator-economy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-collage {
    grid-template-columns: 1fr 1fr;
  }

  .content-collage img:first-child {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .event-grid,
  .event-card {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 0;
    max-height: none;
  }

  .hero-grid {
    gap: 18px 42px;
    padding: 32px 0;
  }

  h1 {
    font-size: 56px;
  }

  .hero-side p {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-card {
    min-height: 154px;
    padding: 18px;
  }

  .hero-card h2 {
    font-size: 24px;
  }

  .countdown {
    margin-top: 10px;
  }

  .countdown div {
    min-height: 48px;
  }

  .countdown strong {
    font-size: 19px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 124px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 0;
  }

  .hero-grid {
    padding: 24px 0;
    gap: 14px;
  }

  .hero-side p {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-card h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .hero-card p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .countdown {
    margin-top: 10px;
  }

  .countdown div {
    min-height: 44px;
    padding: 5px;
  }

  .countdown strong {
    font-size: 17px;
  }

  .countdown span {
    margin-top: 0;
    font-size: 9px;
  }

  .section {
    padding: 66px 0;
  }

  .metric-grid,
  .feature-grid,
  .category-grid,
  .layer-grid,
  .step-grid,
  .payout-grid,
  .mini-category-grid,
  .city-grid,
    .home-card-grid.four,
    .home-card-grid.three,
    .location-grid,
    .compact-location-grid,
    .membership-grid,
    .event-grid,
    .chapter-grid,
    .creator-economy-grid,
    .mini-stat-grid,
    .content-collage {
    grid-template-columns: 1fr;
  }

  .content-collage img,
  .content-collage img:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }

  .two-col-card,
  .platform-panel,
  .platform-preview,
  .manifesto-card,
  .legal-card,
  .statement-panel,
  .article-panel {
    padding: 24px;
  }

  .home-tile div,
  .location-card div,
  .event-card div,
  .chapter-card div,
  .membership-card {
    padding: 20px;
  }

  .event-card img {
    min-height: 210px;
  }

  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-intro p:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  h1 {
    font-size: 30px;
  }

  .hero-grid {
    padding: 18px 0;
    gap: 10px;
  }

  .hero-side p {
    font-size: 14px;
  }

  .hero-card h2 {
    font-size: 18px;
  }

  .hero-card.secondary {
    display: none;
  }

  .countdown {
    display: none;
  }
}

@font-face {
  font-family: "Caustenround Regular";
  src: url("https://cdn.prod.website-files.com/6486f424f96e22d43c4d3612/64871f80e4fc3e7d258d557b_CaustenRound-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Caustenround Medium";
  src: url("https://cdn.prod.website-files.com/6486f424f96e22d43c4d3612/64871f8c51bb7220376ee969_CaustenRound-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matrixtype Display";
  src: url("https://cdn.prod.website-files.com/6486f424f96e22d43c4d3612/6911e752e67cf52813f35b13_MatrixtypeDisplay-9MyE5.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #06111d;
  --ink-2: #24364a;
  --navy: #02070d;
  --midnight: #071523;
  --blue: #004fba;
  --pink: #f31248;
  --pink-dark: #c80d38;
  --coral: #ff4f23;
  --ice-blue: #69c9ff;
  --teal: #1bb7a8;
  --paper: #fffaf0;
  --paper-alt: #f0ece2;
  --muted: #5d6f84;
  --line: rgba(6, 17, 29, 0.14);
  --soft: rgba(255, 250, 240, 0.82);
  --radius: 24px;
  --shadow: 0 34px 90px rgba(6, 17, 29, 0.13);
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0 0%, #fffdfa 44%, #f3ede4 100%);
  background-size: 44px 44px, auto;
  color: var(--ink);
  font-family: "Caustenround Regular", Montserrat, Arial, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
.btn,
.platform-link,
.site-nav {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Krona One", "Caustenround Medium", Montserrat, Arial, sans-serif;
}

h1 {
  max-width: 980px;
  font-size: clamp(54px, 6.15vw, 98px);
  line-height: 0.98;
}

h1 span:last-child {
  color: var(--pink);
  text-shadow: 0 18px 44px rgba(243, 18, 72, 0.32);
}

h2 {
  font-size: clamp(36px, 3.72vw, 58px);
  line-height: 1.04;
}

h3 {
  font-family: "Caustenround Medium", Montserrat, Arial, sans-serif;
  font-weight: 900;
}

.site-header {
  min-height: 88px;
  padding: 18px 28px;
  grid-template-columns: minmax(172px, 0.72fr) auto minmax(268px, 0.72fr);
  background: rgba(255, 255, 255, 0.965);
  box-shadow: 0 12px 40px rgba(6, 17, 29, 0.045);
}

.brand {
  width: 170px;
}

.site-nav {
  gap: clamp(18px, 2vw, 30px);
  font-family: "Caustenround Medium", Montserrat, Arial, sans-serif;
  font-size: 15px;
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.platform-link {
  min-height: 54px;
  border-width: 1.5px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(243, 18, 72, 0.02);
}

.btn,
.platform-link {
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--pink) 0%, #ff386b 52%, var(--coral) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0);
  box-shadow: 0 18px 44px rgba(243, 18, 72, 0.34);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.hero {
  isolation: isolate;
  height: min(calc(100svh - var(--header-height)), 900px);
  min-height: 640px;
  background-position: center 46%;
}

.hero::after {
  content: "CRAYS";
  position: absolute;
  z-index: 0;
  left: -0.04em;
  bottom: -0.2em;
  color: rgba(243, 18, 72, 0.16);
  font-family: "Krona One", Montserrat, Arial, sans-serif;
  font-size: clamp(140px, 22vw, 420px);
  line-height: 1;
  pointer-events: none;
}

.hero-shade {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(3, 18, 31, 0.78) 43%, rgba(3, 18, 31, 0.52) 70%, rgba(2, 7, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.2) 0%, rgba(2, 7, 13, 0.88) 100%),
    linear-gradient(132deg, rgba(243, 18, 72, 0.38) 0%, transparent 38%, rgba(0, 79, 186, 0.24) 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 24px 58px;
  align-items: center;
}

.home-hero .hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 42px;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.home-hero .hero-copy,
.home-hero .hero-side {
  grid-column: 1 / -1;
  justify-items: center;
}

.home-hero .hero-copy {
  display: grid;
  width: 100%;
}

.home-hero h1 {
  max-width: min(94vw, 1380px);
  margin: 0 auto;
  font-size: clamp(54px, 5.15vw, 98px);
  line-height: 1.03;
  text-align: center;
}

.home-hero h1 span {
  white-space: nowrap;
}

.home-hero .hero-side {
  display: grid;
  max-width: 790px;
  padding: 0;
  border: 0;
}

.home-hero .hero-side p {
  max-width: 790px;
  text-align: center;
}

.home-hero .hero-actions {
  justify-content: center;
}

.home-hero .hero-card {
  width: min(100%, 640px);
  text-align: left;
}

.hero-copy .eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-side {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-side p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.28vw, 23px);
  line-height: 1.33;
}

.hero-card {
  min-height: 198px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 4px solid var(--pink);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 21, 35, 0.76), rgba(7, 21, 35, 0.46)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-card.secondary {
  border-top-color: var(--ice-blue);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(7, 21, 35, 0.32);
}

.hero-card h2 {
  font-family: "Caustenround Medium", Montserrat, Arial, sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
}

.countdown {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.countdown div {
  background: rgba(255, 255, 255, 0.11);
}

.countdown strong {
  font-family: "Matrixtype Display", "Krona One", Montserrat, Arial, sans-serif;
  font-size: 31px;
  font-weight: 400;
}

.creator-signal-strip {
  position: relative;
  overflow: hidden;
  min-height: 66px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(6, 17, 29, 0.13);
  border-bottom: 1px solid rgba(6, 17, 29, 0.13);
  background: #f0ece2;
  color: var(--ink);
}

.creator-signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  font-family: "Matrixtype Display", "Krona One", monospace;
  font-size: clamp(19px, 2.2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
  animation: creator-signal-scroll 44s linear infinite;
}

.creator-signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.creator-signal-track span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
}

.creator-signal-track .signal-hot {
  color: var(--pink);
}

@keyframes creator-signal-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.section {
  padding: 82px 0;
}

.section.light {
  background:
    linear-gradient(90deg, rgba(6, 17, 29, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #fffdfa 100%);
  background-size: 44px 44px, auto;
}

.section.dark,
.section.network {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(140deg, #02070d 0%, #06111d 44%, #11276a 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.section.network {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #02070d 0%, #071523 52%, #042e42 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.creator-editorial {
  padding-top: 88px;
}

.creator-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 64px;
  align-items: center;
}

.creator-editorial-copy h2 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.04;
}

.creator-editorial-copy .section-lead {
  max-width: 660px;
  font-size: 20px;
}

.creator-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.creator-pills span {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.creator-visual-stack {
  position: relative;
  display: grid;
  gap: 0;
}

.creator-visual-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  box-shadow: 0 40px 110px rgba(6, 17, 29, 0.18);
}

.creator-visual-main img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transform: scale(1.01);
}

.creator-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 7, 13, 0.58) 100%);
}

.creator-visual-main figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.creator-proof {
  position: relative;
  z-index: 2;
  width: min(92%, 640px);
  margin: -74px 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--pink);
  background:
    linear-gradient(135deg, rgba(6, 17, 29, 0.98), rgba(17, 39, 106, 0.92));
  color: #fff;
  box-shadow: 0 36px 100px rgba(6, 17, 29, 0.24);
}

.creator-proof h3,
.creator-proof p {
  color: #fff;
}

.creator-proof p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.mini-stat-grid span {
  min-height: 104px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.mini-stat-grid strong {
  color: var(--pink);
}

.two-col-card {
  gap: 48px;
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.crays-paper-card {
  border-top: 0;
  box-shadow: inset 8px 0 0 var(--pink), var(--shadow);
}

.media-card {
  border-radius: 28px;
}

.media-card img {
  aspect-ratio: 1.18 / 1;
}

.fan-moment {
  padding-top: 40px;
}

.fan-heading {
  margin-bottom: 36px;
}

.fan-heading p {
  font-size: 20px;
}

.fan-bento-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.86fr 0.86fr;
  gap: 18px;
}

.fan-bento-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 88px rgba(6, 17, 29, 0.16);
}

.fan-bento-card.wide {
  grid-row: span 2;
  min-height: 678px;
}

.fan-bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.fan-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 7, 13, 0.04) 0%, rgba(2, 7, 13, 0.82) 88%);
}

.fan-bento-card:hover img {
  transform: scale(1.035);
}

.fan-bento-card div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.fan-bento-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.fan-bento-card h3 {
  max-width: 360px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 36px);
}

.fan-bento-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.platform-panel {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.22);
}

.platform-head {
  background:
    linear-gradient(135deg, rgba(243, 18, 72, 0.18), rgba(255, 255, 255, 0.075));
}

.creator-economy-grid article,
.step-card,
.payout-grid article,
.mechanics-grid article,
.app-layer-grid article {
  border-radius: 24px;
}

.creator-economy-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.creator-economy-grid img {
  aspect-ratio: 1.25 / 1;
}

.step-card {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
}

.step-card span {
  color: var(--pink);
  font-family: "Matrixtype Display", "Krona One", monospace;
  font-size: 26px;
}

.payout-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
}

.payout-grid span {
  color: var(--pink);
  font-family: "Matrixtype Display", "Krona One", monospace;
  font-weight: 400;
}

.home-tile,
.feature-card,
.category-card,
.event-card,
.chapter-card,
.membership-card,
.contact-card,
.form-card {
  border: 1px solid rgba(6, 17, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.home-tile img,
.feature-card img,
.event-card img,
.chapter-card img {
  aspect-ratio: 1.22 / 1;
}

.feature-card img,
.home-tile img,
.event-card img,
.creator-economy-grid img,
.mechanics-grid img,
.app-layer-grid img {
  filter: saturate(1.06) contrast(1.02);
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.category-card {
  border-top: 4px solid var(--pink);
  box-shadow: 0 22px 64px rgba(6, 17, 29, 0.095);
}

.category-card .number {
  font-family: "Matrixtype Display", "Krona One", monospace;
  color: var(--pink);
  font-size: 28px;
  font-weight: 400;
}

.section.association-section {
  padding-top: 0;
  padding-bottom: 86px;
}

.association-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  min-height: 196px;
  padding: clamp(24px, 3.1vw, 40px);
  border: 1px solid rgba(243, 18, 72, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 233, 239, 0.82) 100%),
    linear-gradient(135deg, rgba(243, 18, 72, 0.08), rgba(23, 105, 166, 0.07));
  box-shadow: 0 32px 86px rgba(6, 17, 29, 0.12);
}

.association-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--pink);
  pointer-events: none;
}

.association-copy {
  max-width: 930px;
}

.association-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.05;
}

.association-copy h2 span {
  display: block;
}

.association-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.association-copy strong {
  color: var(--ink);
}

.association-equation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 230px;
  padding: 18px;
  border: 1px solid rgba(6, 17, 29, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.association-equation span {
  color: var(--ink);
  font-family: "Caustenround Medium", Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.association-equation strong {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: "Matrixtype Display", "Krona One", monospace;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.association-cta {
  justify-self: end;
  min-width: 178px;
  gap: 8px;
}

.content-collage img {
  border-radius: 28px;
}

.content-collage {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  grid-auto-rows: clamp(190px, 17vw, 260px);
  align-items: stretch;
}

.content-collage figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.content-collage figure.feature {
  grid-row: span 2;
}

.content-collage figure:nth-child(4) {
  grid-column: span 2;
}

.content-collage figure:nth-child(6) {
  grid-column: span 2;
}

.content-collage figure img,
.content-collage figure:first-child img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
}

.content-collage figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(2, 7, 13, 0.62);
  color: #fff;
  font-family: "Caustenround Medium", Montserrat, Arial, sans-serif;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.mechanics-grid,
.app-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.mechanics-grid article,
.app-layer-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.mechanics-grid img,
.app-layer-grid img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.mechanics-grid div,
.app-layer-grid div {
  padding: 24px;
}

.mechanics-grid span,
.app-layer-grid span {
  display: inline-flex;
  color: var(--pink);
  font-family: "Matrixtype Display", "Krona One", monospace;
  font-size: 26px;
}

.mechanics-grid h3,
.app-layer-grid h3 {
  color: #fff;
}

.mechanics-grid p,
.app-layer-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background: #fff;
}

.dark-contact-card {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: none;
}

.dark-contact-card span {
  color: var(--pink);
}

.dark-contact-card a {
  color: #fff;
}

body.legal-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #fffdfa;
  color: #071a2d;
  font-family: Montserrat, Arial, sans-serif;
}

.legal-shell {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(243, 18, 72, 0.12), transparent 32%),
    radial-gradient(ellipse at 88% 10%, rgba(94, 207, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #f8f3ee 44%, #fffdfa 100%);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(7, 26, 45, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(7, 26, 45, 0.04);
  backdrop-filter: blur(16px);
}

.legal-header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
}

.legal-brand img {
  width: 174px;
  height: auto;
}

.legal-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.legal-nav a {
  position: relative;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  color: #13273b;
}

.legal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--pink);
  transition: transform 180ms ease;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--pink);
}

.legal-nav a:hover::after,
.legal-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.legal-investor-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f8 100%);
  color: #13273b;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(243, 18, 72, 0.12);
}

.legal-investor-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ff2e66 0%, #f31248 100%);
  color: #fff;
}

.legal-main {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0 clamp(82px, 8vw, 126px);
}

.legal-hero {
  max-width: 880px;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.legal-kicker,
.award-legal-kicker,
.award-legal-card-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-title {
  max-width: 13ch;
  margin: 0;
  color: #071a2d;
  font-family: "Krona One", Montserrat, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.legal-subtitle {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(7, 26, 45, 0.7);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

body.legal-page .legal-card {
  overflow: hidden;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 86% 0%, rgba(243, 18, 72, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 250, 0.96));
  box-shadow: 0 34px 90px rgba(7, 15, 23, 0.12);
}

.legal-content {
  max-width: 920px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content p {
  letter-spacing: 0;
}

.legal-content h1 {
  max-width: 100%;
  margin: 0 0 22px;
  color: #071a2d;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.08;
}

.legal-content h2 {
  margin: 34px 0 14px;
  color: #071a2d;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.16;
}

.legal-content p {
  color: rgba(7, 26, 45, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--pink);
  font-weight: 900;
}

.award-legal-entities {
  margin: 34px 0 0;
}

.award-legal-entities-head {
  display: block;
  margin-bottom: 18px;
}

.award-legal-entities-head .award-legal-kicker {
  margin: 0;
  max-width: 100%;
  font-size: clamp(9px, 2.7vw, 12px);
  white-space: nowrap;
}

.award-legal-entities-head h2,
.award-legal-entities-head h3 {
  max-width: 14ch;
  margin: 0;
  color: #071a2d;
  font-family: "Krona One", Montserrat, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.legal-content .award-legal-kicker,
.legal-content .award-legal-card-kicker,
.award-legal-entities--contact .award-legal-kicker,
.award-legal-entities--contact .award-legal-card-kicker {
  color: var(--pink);
}

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

.award-legal-entity-card {
  position: relative;
  min-height: 284px;
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 18, 72, 0.055), rgba(255, 255, 255, 0.98) 34%, rgba(255, 253, 250, 0.96) 100%);
  box-shadow: 0 30px 84px rgba(7, 21, 35, 0.13);
}

.award-legal-entity-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), rgba(94, 207, 255, 0.86));
}

.award-legal-entity-card--dark {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 18, 72, 0.2), transparent 42%),
    linear-gradient(180deg, #151223 0%, #071725 68%, #06111d 100%);
  color: #fff;
  box-shadow: 0 30px 84px rgba(6, 17, 29, 0.26);
}

.award-legal-entity-card h3 {
  margin: 14px 0 16px;
  color: #071a2d;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.12;
}

.award-legal-entity-card--dark h3,
.award-legal-entity-card--dark address,
.award-legal-entity-card--dark .award-legal-entity-email,
.award-legal-entity-card--dark .award-legal-entity-email a {
  color: #fff;
}

.award-legal-entity-card address {
  color: rgba(7, 26, 45, 0.72);
  font-style: normal;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.7;
}

.award-legal-entity-card--dark address {
  color: rgba(255, 255, 255, 0.78);
}

.award-legal-entity-email {
  display: grid;
  gap: 5px;
  margin: 24px 0 0;
  line-height: 1.25;
}

.award-legal-entity-email span {
  display: block;
  color: var(--pink);
  font-weight: 900;
}

.award-legal-entity-email a {
  color: #071a2d;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.award-legal-entities--contact {
  margin-top: 26px;
}

.award-legal-entities--contact .award-legal-entities-head {
  display: block;
}

.award-legal-entities--contact .award-legal-entities-head h3 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(26px, 2.7vw, 38px);
}

.award-legal-entities--contact .award-legal-entity-grid {
  grid-template-columns: 1fr;
}

.award-legal-entities--contact .award-legal-entity-card {
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: none;
}

.award-legal-entities--contact .award-legal-entity-card h3,
.award-legal-entities--contact .award-legal-entity-card address,
.award-legal-entities--contact .award-legal-entity-email a {
  color: #fff;
}

.award-legal-entities--contact .award-legal-entity-card address {
  color: rgba(255, 255, 255, 0.78);
}

.legal-footer {
  margin-top: auto;
  background:
    radial-gradient(circle at 20% 120%, rgba(30, 136, 229, 0.35), transparent 55%),
    radial-gradient(circle at 95% 10%, rgba(243, 18, 72, 0.16), transparent 48%),
    linear-gradient(180deg, #031321 0%, #061b2e 100%);
  color: #d9e2f3;
}

.legal-footer-inner {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px) 0 clamp(18px, 3vw, 26px);
}

.legal-footer-top,
.legal-footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer-top {
  border-bottom: 1px solid rgba(217, 226, 243, 0.2);
  padding-bottom: 20px;
}

.legal-footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.legal-footer-logo {
  display: block;
  width: clamp(122px, 12vw, 148px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.legal-footer-tagline {
  margin: 8px 0 0;
  color: #8fa3bd;
  font-size: 14px;
  line-height: 1.5;
}

.legal-footer-social {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  gap: 8px;
  margin-left: auto;
  align-self: flex-end;
  padding-bottom: 2px;
}

.legal-footer-social a {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.legal-footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 18, 72, 0.7);
  background: rgba(243, 18, 72, 0.92);
  box-shadow: 0 14px 28px rgba(243, 18, 72, 0.24);
}

.legal-footer-social img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

.legal-footer-bottom {
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
  color: rgba(217, 226, 243, 0.76);
}

.legal-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.legal-footer-links a,
.crays-consent-footer-button {
  color: #d9e2f3;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.legal-footer-links a:hover,
.crays-consent-footer-button:hover {
  color: #fff;
  opacity: 1;
}

.legal-footer-copy {
  color: rgba(217, 226, 243, 0.76);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.crays-consent-footer-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

.crays-consent-footer-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crays-consent-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483000;
  width: min(480px, calc(100vw - 28px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 17, 29, 0.96);
  color: #f6f8fb;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.crays-consent-panel[hidden] {
  display: none;
}

.crays-consent-kicker {
  margin: 0 0 5px;
  color: #ff6f96;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crays-consent-title {
  margin: 0;
  color: #f6f8fb;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
}

.crays-consent-copy {
  margin: 8px 0 0;
  color: rgba(246, 248, 251, 0.82);
  font-size: 11.5px;
  line-height: 1.5;
}

.crays-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.crays-consent-button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.crays-consent-button-primary {
  border-color: #fff;
  background: #fff;
  color: #06111d;
}

.crays-consent-button-reject {
  background: #101d2b;
}

.crays-consent-button-text {
  background: transparent;
}

.crays-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.crays-consent-links a {
  color: rgba(246, 248, 251, 0.72);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.crays-live-text-preserve {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(150px, 0.45fr) auto minmax(230px, 0.45fr);
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero-grid {
    gap: 22px 42px;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(38px, 8.6vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 6vw, 46px);
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    width: 142px;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 0;
  }

  .hero::after {
    font-size: 32vw;
    bottom: -0.08em;
  }

  .hero-grid,
  .creator-editorial-grid,
  .fan-bento-grid,
  .mechanics-grid,
  .app-layer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-content: center;
    gap: 14px;
    padding: 26px 0;
  }

  .hero-side {
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .hero-side p {
    font-size: 17px;
  }

  .hero-card {
    min-height: 0;
    padding: 18px;
  }

  .hero-card.secondary {
    display: none;
  }

  .creator-editorial-grid {
    gap: 34px;
  }

  .creator-proof {
    width: 100%;
    margin-top: 18px;
  }

  .fan-bento-card,
  .fan-bento-card.wide {
    min-height: 360px;
    grid-row: auto;
  }

  .association-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .association-equation {
    width: min(100%, 520px);
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    align-items: center;
  }

  .association-equation span {
    text-align: center;
  }

  .association-equation strong,
  .association-cta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.05;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 29px;
  }

  .section {
    padding: 58px 0;
  }

  .section.association-section {
    padding-top: 0;
    padding-bottom: 58px;
  }

  .association-banner {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .association-copy h2 {
    font-size: 26px;
  }

  .association-equation {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .association-equation strong {
    justify-self: center;
  }

  .association-cta {
    width: 100%;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    background-position: center;
  }

  .hero-grid {
    padding: 18px 0;
    gap: 10px;
  }

  .hero-copy .eyebrow {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero-side p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.34;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-card {
    display: none;
  }

  .hero-card h2 {
    font-size: 18px;
  }

  .countdown strong {
    font-size: 18px;
  }

  .creator-signal-strip {
    min-height: 52px;
  }

  .creator-signal-track {
    gap: 28px;
    font-size: 18px;
  }

  .creator-editorial {
    padding-top: 54px;
  }

  .creator-editorial-copy h2 {
    font-size: 31px;
  }

  .creator-editorial-copy .section-lead,
  .fan-heading p {
    font-size: 17px;
  }

  .app-badges img {
    height: 42px;
  }

  .creator-visual-main,
  .fan-bento-card {
    border-radius: 22px;
  }

  .fan-bento-card,
  .fan-bento-card.wide {
    min-height: 300px;
  }

  .fan-bento-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .fan-bento-card h3 {
    font-size: 24px;
  }

  .two-col-card,
  .platform-panel,
  .platform-head,
  .article-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .crays-paper-card {
    box-shadow: inset 0 5px 0 var(--pink), var(--shadow);
  }

  .mini-stat-grid span {
    min-height: 84px;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .hero-card {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-hero .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .home-hero .hero-side {
    padding: 0;
    border: 0;
  }

  .home-hero .hero-card {
    text-align: left;
  }

  .content-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px;
  }

  .content-collage figure.feature,
  .content-collage figure:nth-child(4),
  .content-collage figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .home-hero h1 {
    font-size: clamp(27px, 7.2vw, 34px);
    line-height: 1.08;
  }

  .home-hero h1 span {
    white-space: nowrap;
  }

  .home-hero .hero-side p {
    max-width: 92vw;
    text-align: center;
  }

  .content-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .content-collage figure,
  .content-collage figure.feature,
  .content-collage figure:nth-child(4),
  .content-collage figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .content-collage figure img,
  .content-collage figure:first-child img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .legal-header-inner {
    width: min(100% - 28px, 760px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .legal-brand,
  .legal-header-actions {
    justify-self: center;
  }

  .legal-nav {
    justify-content: center;
    gap: 10px 18px;
    flex-wrap: wrap;
  }

  .legal-nav a {
    min-height: 30px;
  }

  .legal-nav a::after {
    bottom: -2px;
  }

  .legal-main,
  .legal-footer-inner {
    width: min(100% - 28px, 760px);
  }

  .award-legal-entities-head,
  .legal-footer-top,
  .legal-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .award-legal-entity-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer-social {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: 0;
  }

  .legal-footer-social a {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .legal-footer-social img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .legal-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .legal-subtitle,
  .legal-content p {
    font-size: 15px;
  }

  body.legal-page .legal-card,
  .award-legal-entity-card {
    padding: 22px;
  }

  .award-legal-entities-head h2,
  .award-legal-entities-head h3 {
    max-width: none;
    font-size: 30px;
  }

  .award-legal-entity-email a {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .crays-consent-panel {
    right: 14px;
    bottom: 14px;
  }
}
