:root {
  --black: #02050a;
  --black-soft: #050a11;
  --navy: #07182e;
  --navy-light: #0b2d59;
  --blue: #2c82ff;
  --blue-bright: #6aa8ff;
  --white: #f7f9fc;
  --muted: #9aa8b9;
  --line: rgba(203, 220, 240, 0.14);
  --gold: #b89a5b;
  --content: min(1180px, calc(100vw - 48px));
  --header-height: 86px;
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  color-scheme: dark;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(20, 76, 143, 0.17), transparent 25rem),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--white));
  box-shadow: 0 0 18px rgba(44, 130, 255, 0.8);
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 5, 10, 0.08);
  transition:
    height 420ms var(--ease-cinematic),
    background 420ms var(--ease-smooth),
    backdrop-filter 420ms var(--ease-smooth);
}

body.is-scrolled .site-header {
  height: 70px;
  background: rgba(2, 5, 10, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(106, 168, 255, 0.45);
  background: linear-gradient(145deg, rgba(44, 130, 255, 0.23), rgba(3, 9, 18, 0.55));
  box-shadow: inset 0 0 20px rgba(44, 130, 255, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.brand-name {
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav a {
  position: relative;
  color: #c6d0dc;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 320ms var(--ease-smooth);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: var(--blue-bright);
  content: "";
  transition: width 420ms var(--ease-cinematic);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="true"]::after {
  width: 100%;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 380ms var(--ease-cinematic);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(transparent, var(--black));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(129, 165, 208, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 165, 208, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 15%;
  right: 14%;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(18, 92, 181, 0.17);
  filter: blur(100px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: var(--content);
  margin: calc(var(--header-height) + 3rem) auto 4rem;
}

.motion-ready .hero-copy > *,
.motion-ready .hero-visual {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .hero-copy .hero-whale {
  transform: translate(-8px, 24px);
}

.motion-ready body.is-ready .hero-copy > *,
.motion-ready body.is-ready .hero-visual {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms var(--ease-cinematic),
    transform 1100ms var(--ease-cinematic);
}

.motion-ready body.is-ready .hero-copy .hero-whale {
  transform: translate(-8px, 0);
}

.motion-ready body.is-ready .hero-copy .eyebrow { transition-delay: 80ms; }
.motion-ready body.is-ready .hero-copy h1 { transition-delay: 150ms; }
.motion-ready body.is-ready .hero-copy .hero-line { transition-delay: 240ms; }
.motion-ready body.is-ready .hero-copy .hero-intro { transition-delay: 310ms; }
.motion-ready body.is-ready .hero-copy .hero-whale { transition-delay: 380ms; }
.motion-ready body.is-ready .hero-copy .hero-actions { transition-delay: 450ms; }
.motion-ready body.is-ready .hero-visual { transition-delay: 120ms; }

.eyebrow,
.section-label {
  color: #bcc8d6;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(184, 154, 91, 0.45);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(5rem, 11vw, 10.5rem);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.73;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1.hero-logo-title {
  width: min(62vw, 760px);
  max-width: 100%;
  line-height: 1;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 48px rgba(15, 96, 198, 0.2));
}

.hero-title-blue {
  margin-left: 0.32em;
  background: linear-gradient(115deg, #f7f9fc 5%, #81b6ff 35%, #226cce 76%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-line {
  margin: 2rem 0 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-intro {
  max-width: 540px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.whale-emblem {
  display: block;
  height: auto;
  object-fit: contain;
  filter: saturate(0.8) brightness(1.05) drop-shadow(0 8px 22px rgba(22, 81, 158, 0.2));
}

.hero-whale {
  width: clamp(150px, 18vw, 245px);
  margin: 0.8rem 0 -0.4rem;
  transform: translateX(-8px);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  transition:
    transform 420ms var(--ease-cinematic),
    border-color 320ms var(--ease-smooth),
    background 320ms var(--ease-smooth),
    box-shadow 420ms var(--ease-cinematic);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.button-primary {
  background: var(--white);
  color: #050910;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dcecff;
}

.button-quiet {
  border-color: rgba(184, 204, 230, 0.22);
  background: rgba(4, 12, 23, 0.44);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(106, 168, 255, 0.62);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 9%;
  right: max(-4rem, calc((100vw - 1420px) / 2));
  width: min(61vw, 920px);
  height: 83%;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(2, 5, 10, 0.72) 14%, transparent 52%),
    linear-gradient(0deg, var(--black) 0%, transparent 33%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  opacity: 0.83;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.82) contrast(1.08);
}

.hero-frame {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 7%;
  width: 54%;
  height: 81%;
  border-top: 1px solid rgba(106, 168, 255, 0.3);
  border-right: 1px solid rgba(106, 168, 255, 0.3);
}

.hero-frame::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.hero-visual p {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: rgba(234, 241, 250, 0.7);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-visual p i {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 2.25rem;
  left: calc((100vw - min(1180px, calc(100vw - 48px))) / 2);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(215, 225, 238, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue span::after {
  position: absolute;
  inset: 0;
  background: var(--blue-bright);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

.brand-ribbon {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(106, 168, 255, 0.18);
  background: linear-gradient(90deg, #06101f, #0b2850 50%, #06101f);
}

.brand-ribbon-track {
  display: flex;
  width: max-content;
  min-height: 58px;
  align-items: center;
  gap: 1.3rem;
  animation: ribbon-slide 26s linear infinite;
}

.brand-ribbon span {
  color: rgba(240, 246, 255, 0.74);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.brand-ribbon i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px rgba(106, 168, 255, 0.85);
}

@keyframes ribbon-slide {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-label {
  color: var(--blue-bright);
}

.section-title {
  margin: 1rem 0 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6.7vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-title span {
  color: var(--blue-bright);
}

.vision {
  min-height: 80vh;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: end;
  margin-top: 1.5rem;
}

.vision-copy {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.vision-copy .lead {
  margin-top: 0;
  color: #e5ebf3;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 600;
  line-height: 1.38;
}

.about {
  position: relative;
}

.about::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -18vw;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(22, 83, 160, 0.13);
  filter: blur(110px);
  content: "";
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.about-copy {
  padding: 2rem 0 0.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.about-copy .lead {
  margin-top: 0;
  color: #e5ebf3;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 620;
  line-height: 1.42;
}

.about-signoff {
  margin: 1.8rem 0 0;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.social-panel {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: 0.46fr 1.54fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(106, 168, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(2, 8, 16, 0.82), rgba(3, 9, 17, 0.92)),
    url("./assets/social-server-room.png") center / cover no-repeat;
  box-shadow: inset 0 0 90px rgba(2, 5, 10, 0.52);
}

.social-kicker {
  margin: 0 0 0.4rem;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.social-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-link {
  position: relative;
  display: grid;
  min-height: 142px;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.7rem;
  align-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(2, 7, 13, 0.66);
}

.social-link > span {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(106, 168, 255, 0.34);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.social-link strong {
  align-self: end;
  font-size: 0.96rem;
}

.social-link small {
  color: var(--muted);
  font-size: 0.76rem;
}

.social-link i {
  position: absolute;
  top: 0.65rem;
  right: 0.8rem;
  color: var(--blue-bright);
  font-style: normal;
}

.social-link-active {
  transition:
    transform 480ms var(--ease-cinematic),
    border-color 360ms var(--ease-smooth),
    background 360ms var(--ease-smooth),
    box-shadow 480ms var(--ease-cinematic);
}

.social-link-active:hover,
.social-link-active:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(106, 168, 255, 0.62);
  background: rgba(8, 32, 63, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.social-link-whatsapp {
  border-color: rgba(37, 211, 102, 0.34);
  background: linear-gradient(135deg, rgba(2, 20, 13, 0.78), rgba(2, 7, 13, 0.74));
}

.social-link-whatsapp > span {
  border-color: rgba(37, 211, 102, 0.58);
  color: #25d366;
}

.social-link-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link-whatsapp small b {
  display: block;
  margin-top: 0.35rem;
  color: #5be58e;
  font-size: 0.72rem;
  letter-spacing: 0.025em;
}

.social-link-whatsapp i {
  color: #25d366;
}

.social-link-whatsapp:hover,
.social-link-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.78);
  background: linear-gradient(135deg, rgba(3, 37, 22, 0.94), rgba(2, 13, 20, 0.9));
  box-shadow: 0 18px 42px rgba(8, 72, 35, 0.24);
}

.social-link-pending {
  opacity: 0.62;
}

.signature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.signature span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.content {
  position: relative;
}

.latest {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.latest-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(106, 168, 255, 0.24);
  background:
    linear-gradient(110deg, rgba(2, 8, 16, 0.84), rgba(3, 10, 19, 0.93)),
    url("./assets/social-server-room.png") center / cover no-repeat;
  box-shadow: inset 0 0 100px rgba(2, 5, 10, 0.56);
}

.latest-panel .section-title {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.latest-badge {
  display: inline-flex;
  margin: 0 0 0.9rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(2, 6, 12, 0.82);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.latest-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3158;
  box-shadow: 0 0 16px rgba(255, 49, 88, 0.78);
}

.latest-intro {
  max-width: 430px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.tiktok-feed {
  min-width: 0;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  overflow: hidden;
  border: 1px solid rgba(106, 168, 255, 0.24);
  background: rgba(1, 5, 10, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.tiktok-feed .tiktok-embed {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.collaborations {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.collaborations-panel {
  display: flex;
  min-height: 340px;
  padding: clamp(2rem, 5vw, 4.5rem);
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid rgba(106, 168, 255, 0.28);
  background:
    radial-gradient(circle at 88% 20%, rgba(44, 130, 255, 0.22), transparent 36%),
    linear-gradient(125deg, rgba(5, 23, 45, 0.96), rgba(2, 7, 14, 0.98) 68%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.collaborations-copy {
  max-width: 800px;
}

.collaborations-copy .section-title {
  margin-top: 0.8rem;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
}

.collaborations-copy > p:not(.social-kicker) {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: #c1ccda;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.collaborations-copy .collaborations-hint {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.collaborations-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.latest-copy {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.latest-copy strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.latest-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.content::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 50%;
  width: 100vw;
  height: 70%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(8, 29, 57, 0.5), transparent);
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 4rem;
  align-items: end;
}

.section-heading > p {
  max-width: 360px;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.content-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(4, 11, 20, 0.82);
  transition:
    transform 560ms var(--ease-cinematic),
    border-color 380ms var(--ease-smooth),
    background 380ms var(--ease-smooth),
    box-shadow 560ms var(--ease-cinematic);
}

.content-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(44, 130, 255, 0.18), transparent 68%);
  content: "";
}

.content-card:hover {
  transform: translateY(-7px);
  border-color: rgba(106, 168, 255, 0.42);
  background: rgba(5, 18, 35, 0.94);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.content-card.featured {
  border-top-color: var(--blue);
  background: linear-gradient(160deg, rgba(12, 45, 88, 0.82), rgba(3, 10, 19, 0.94));
}

.video-showcase {
  position: relative;
}

.video-showcase .section-title span {
  color: var(--blue-bright);
}

.video-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(11, 45, 89, 0.24), rgba(2, 5, 10, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
  transition:
    transform 560ms var(--ease-cinematic),
    border-color 420ms var(--ease-smooth),
    box-shadow 560ms var(--ease-cinematic);
}

.video-card::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  pointer-events: none;
  transition: left 850ms var(--ease-cinematic);
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(106, 168, 255, 0.5);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.38), 0 0 34px rgba(34, 105, 205, 0.09);
}

.video-card:hover::after,
.video-card:focus-within::after {
  left: 138%;
}

.video-card-premium {
  border-color: rgba(184, 154, 91, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px rgba(226, 203, 151, 0.12);
}

.video-card-pirate {
  order: -20;
}

.video-card-dance {
  order: -10;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: var(--black);
  object-fit: cover;
  transition: transform 800ms var(--ease-cinematic), filter 500ms var(--ease-smooth);
}

.video-card:hover video,
.video-card:focus-within video {
  transform: scale(1.018);
  filter: brightness(1.05) contrast(1.02);
}

.video-meta {
  display: flex;
  padding: 1rem 1.05rem 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.video-meta > div {
  display: grid;
  min-width: 0;
  gap: 0.3rem;
}

.video-meta strong {
  font-size: 0.96rem;
}

.video-meta span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-meta a {
  flex: 0 0 auto;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(106, 168, 255, 0.38);
  background: rgba(17, 70, 138, 0.3);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 420ms var(--ease-cinematic),
    border-color 320ms var(--ease-smooth),
    background 320ms var(--ease-smooth);
}

.video-meta a:hover,
.video-meta a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(106, 168, 255, 0.75);
  background: rgba(26, 95, 184, 0.52);
}

.shop-note {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: auto auto minmax(240px, 1fr);
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: center;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(106, 168, 255, 0.28);
  background: linear-gradient(120deg, rgba(11, 45, 89, 0.78), rgba(3, 10, 19, 0.96));
}

.shop-note > div {
  display: grid;
  gap: 0.15rem;
}

.shop-note span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.shop-note strong {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.shop-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.purchase-notice {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(1, 4, 9, 0.94);
}

.purchase-notice strong {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-notice p {
  margin: 0;
  color: rgba(225, 232, 241, 0.78);
  font-size: 0.82rem;
  line-height: 1.6;
}

.purchase-notice a {
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.video-rights {
  margin: 2rem 0 0;
  color: rgba(205, 218, 234, 0.62);
  font-size: 0.86rem;
  text-align: center;
}

.merch-coming {
  position: relative;
  overflow: hidden;
}

.merch-coming::before {
  position: absolute;
  z-index: -1;
  inset: 18% 0;
  background: linear-gradient(90deg, transparent, rgba(9, 36, 70, 0.54), transparent);
  content: "";
}

.merch-coming > :not(.merch-palm) {
  position: relative;
  z-index: 2;
}

.merch-palm {
  position: absolute;
  z-index: 1;
  top: 3rem;
  right: max(-52px, calc((100vw - 1500px) / 2));
  width: clamp(130px, 14vw, 220px);
  height: auto;
  opacity: 0.22;
  filter: saturate(0.65) brightness(0.78) drop-shadow(0 0 22px rgba(44, 130, 255, 0.12));
  pointer-events: none;
}

.merch-grid {
  display: grid;
  margin-top: 3.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.merch-card {
  min-height: 210px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(9, 34, 66, 0.58), rgba(3, 9, 17, 0.96));
}

.merch-card span {
  color: var(--blue-bright);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.merch-card h3 {
  margin: 4.2rem 0 0.5rem;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.merch-card p {
  margin: 0;
  color: var(--muted);
}

.card-number {
  color: rgba(219, 232, 247, 0.48);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.card-line {
  width: 100%;
  height: 1px;
  margin: 1.2rem 0 auto;
  background: var(--line);
}

.content-card h3 {
  margin: 3.3rem 0 0.7rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

.services {
  position: relative;
}

.services::before {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 50%;
  width: 100vw;
  height: 66%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(7, 31, 62, 0.58), transparent);
  content: "";
}

.service-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(1.4rem, 2.7vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(3, 10, 19, 0.88);
  transition:
    transform 560ms var(--ease-cinematic),
    border-color 380ms var(--ease-smooth),
    box-shadow 560ms var(--ease-cinematic);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 168, 255, 0.42);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.3);
}

.service-card-featured {
  border-top-color: var(--blue);
  background: linear-gradient(155deg, rgba(11, 45, 89, 0.78), rgba(3, 10, 19, 0.94));
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(106, 168, 255, 0.38);
  background: rgba(44, 130, 255, 0.08);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.service-for {
  margin: 3.3rem 0 0.55rem;
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.service-cta {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(106, 168, 255, 0.2);
  background: rgba(6, 22, 43, 0.68);
}

.service-cta strong {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.service-cta p {
  max-width: 680px;
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.service-cta .button {
  flex: 0 0 auto;
}

.service-disclaimer {
  margin: 1rem 0 0;
  color: rgba(205, 218, 234, 0.55);
  font-size: 0.78rem;
  text-align: center;
}

.card-tag {
  align-self: flex-start;
  margin-top: 1.6rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(106, 168, 255, 0.24);
  color: #bcd5f7;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.asset-showcase {
  position: relative;
}

.asset-showcase::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -12vw;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(28, 93, 174, 0.12);
  filter: blur(100px);
  content: "";
  pointer-events: none;
}

.asset-stage {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 2.4rem);
  border: 1px solid rgba(106, 168, 255, 0.18);
  background:
    linear-gradient(130deg, rgba(9, 37, 73, 0.56), rgba(3, 9, 17, 0.94) 58%),
    var(--black-soft);
}

.asset-preview {
  position: relative;
  max-width: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 74%, rgba(27, 91, 174, 0.2), transparent 42%),
    linear-gradient(155deg, #07182e, #02050a 70%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(44, 130, 255, 0.1);
}

.asset-preview::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%);
  content: "";
  pointer-events: none;
}

.asset-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.asset-preview figcaption {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 12, 0.82);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.asset-preview figcaption strong {
  color: var(--blue-bright);
}

.asset-copy {
  max-width: 620px;
}

.asset-kicker {
  margin: 0 0 1rem;
  color: var(--blue-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.asset-copy .section-title {
  font-size: clamp(3rem, 6.4vw, 6.4rem);
}

.asset-lead {
  max-width: 520px;
  margin: 1.8rem 0 0;
  color: #b1bdcb;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.asset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.asset-tags span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(106, 168, 255, 0.24);
  color: #c6d9f2;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rights-note {
  display: grid;
  margin-top: 2.3rem;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.rights-note > span {
  color: rgba(106, 168, 255, 0.68);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}

.rights-note strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rights-note p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.community {
  width: min(1320px, calc(100vw - 32px));
}

.community-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.4rem, 6vw, 6rem);
  border: 1px solid rgba(106, 168, 255, 0.2);
  background:
    linear-gradient(115deg, rgba(8, 33, 65, 0.92), rgba(2, 7, 13, 0.95) 56%),
    var(--black-soft);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.35);
}

.community-whale {
  position: absolute;
  right: 3%;
  bottom: 1%;
  width: min(320px, 34vw);
  opacity: 0.055;
  pointer-events: none;
}

.community-copy .section-title {
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
}

.community-copy > p {
  max-width: 520px;
  margin-top: 1.6rem;
  color: #aab7c7;
}

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

.value {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.value > span {
  grid-row: span 2;
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value strong {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.value p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.notice-board {
  display: grid;
  gap: 1rem;
}

.board-post {
  position: relative;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border: 1px solid rgba(106, 168, 255, 0.22);
  background: rgba(1, 5, 10, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.board-post::before {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 14px rgba(106, 168, 255, 0.7);
  content: "";
}

.board-label,
.board-status {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.board-post h3 {
  margin: 0.85rem 0 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.board-post p {
  margin: 0;
  color: var(--muted);
}

.reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.reaction-row button {
  min-width: 72px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(17, 50, 91, 0.42);
  color: var(--white);
  cursor: pointer;
}

.reaction-row button:hover,
.reaction-row button:focus-visible,
.reaction-row button.is-selected {
  border-color: rgba(106, 168, 255, 0.68);
  background: rgba(28, 94, 178, 0.46);
}

.board-poll form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.board-poll label {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #d8e2ef;
  cursor: pointer;
}

.board-poll input {
  accent-color: var(--blue-bright);
}

.board-poll .button {
  width: fit-content;
  margin-top: 0.45rem;
}

.poll-result {
  min-height: 1.3rem;
  color: var(--blue-bright);
  font-size: 0.86rem;
}

.board-status {
  flex: 0 0 auto;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(106, 168, 255, 0.34);
  background: rgba(17, 70, 138, 0.22);
}

.community-join {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.community-join strong {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.community-join p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.closing {
  position: relative;
  display: flex;
  min-height: 82vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 24px;
  text-align: center;
}

.closing::before {
  position: absolute;
  z-index: -1;
  width: min(780px, 90vw);
  height: min(780px, 90vw);
  border: 1px solid rgba(106, 168, 255, 0.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 79, 151, 0.24), transparent 64%);
  content: "";
}

.closing .eyebrow {
  margin-bottom: 1.8rem;
}

.closing-whale {
  width: clamp(190px, 20vw, 280px);
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

.closing h2 {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.closing h2 span {
  color: var(--blue-bright);
}

.closing .button {
  margin-top: 2.6rem;
}

.closing-wordmark {
  position: absolute;
  z-index: -2;
  bottom: -0.25em;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(8rem, 23vw, 25rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.65;
  white-space: nowrap;
}

footer {
  display: grid;
  width: var(--content);
  min-height: 120px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: rgba(205, 218, 234, 0.58);
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.footer-email {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--blue-bright);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.28rem;
  color: rgba(205, 218, 234, 0.62);
  font-size: 0.78rem;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 85% 8%, rgba(20, 76, 143, 0.2), transparent 26rem),
    var(--black);
}

.legal-header {
  display: flex;
  width: var(--content);
  min-height: 86px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-back {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  transition: color 180ms ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--white);
}

.legal-main {
  width: min(760px, calc(100% - 48px));
  min-height: calc(100svh - 206px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.legal-main .section-label {
  margin-bottom: 1.4rem;
}

.legal-main h1 {
  margin: 0 0 2.5rem;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(11, 45, 89, 0.22), rgba(5, 10, 17, 0.74));
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.08rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.legal-card p + h2 {
  margin-top: 2rem;
}

.legal-card a {
  color: var(--blue-bright);
}

.draft-notice {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(106, 168, 255, 0.28);
  color: #cbdcf5;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-footer {
  display: flex;
  width: var(--content);
  min-height: 120px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(205, 218, 234, 0.58);
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-symbols {
  width: 72px;
  opacity: 0.72;
}

.footer-note {
  justify-self: end;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.988);
  transition:
    opacity 780ms var(--ease-smooth),
    transform 950ms var(--ease-cinematic);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.video-card.reveal.is-visible:hover,
.video-card.reveal.is-visible:focus-within {
  transform: translateY(-8px) scale(1.008);
}

.content-card.reveal.is-visible:hover {
  transform: translateY(-7px);
}

.service-card.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.button.reveal.is-visible:hover,
.button.reveal.is-visible:focus-visible {
  transform: translateY(-3px);
}

.video-grid .video-card:nth-child(3n + 2),
.content-grid .content-card:nth-child(3n + 2),
.service-grid .service-card:nth-child(3n + 2) { --reveal-delay: 80ms; }

.video-grid .video-card:nth-child(3n),
.content-grid .content-card:nth-child(3n),
.service-grid .service-card:nth-child(3n) { --reveal-delay: 160ms; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 36px, 720px);
    --header-height: 76px;
  }

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

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(2, 5, 10, 0.97);
    opacity: 0;
    transition:
      opacity 200ms ease,
      visibility 200ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

  .hero-copy {
    margin: 28rem auto 7.5rem;
  }

  .hero-visual {
    top: 5rem;
    right: -12%;
    width: 112%;
    height: 34rem;
  }

  .hero-visual::before {
    background:
      linear-gradient(90deg, rgba(2, 5, 10, 0.5), transparent 75%),
      linear-gradient(0deg, var(--black) 2%, transparent 55%);
  }

  .hero-frame {
    right: 10%;
  }

  .hero-visual p {
    right: 10%;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 20vw, 8rem);
  }

  .hero h1.hero-logo-title {
    width: min(100%, 680px);
  }

  .scroll-cue {
    left: 18px;
  }

  .vision-layout,
  .about-layout,
  .section-heading,
  .latest-panel,
  .asset-stage,
  .community-panel {
    grid-template-columns: 1fr;
  }

  .asset-preview {
    width: min(100%, 430px);
    justify-self: center;
  }

  .asset-copy {
    padding: 0.6rem 0.5rem 1rem;
  }

  .vision-layout {
    gap: 3rem;
  }

  .social-panel {
    grid-template-columns: 1fr;
  }

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

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

  .service-card {
    min-height: 270px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .collaborations-panel {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-note p,
  .shop-note .button {
    grid-column: 1 / -1;
  }

  .purchase-notice {
    grid-template-columns: 1fr;
  }

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

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-link {
    min-height: 104px;
  }

  .content-card {
    min-height: 300px;
  }

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

  .community-join {
    align-items: flex-start;
    flex-direction: column;
  }

  .merch-palm {
    right: -70px;
    opacity: 0.14;
  }

  .community-panel {
    gap: 3.5rem;
  }

  footer {
    padding: 2rem 0;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    text-align: center;
  }

  footer .brand,
  .footer-note,
  .footer-brand {
    justify-self: center;
  }

  .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  :root {
    --content: calc(100% - 28px);
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-copy {
    margin-top: 25rem;
  }

  .hero-visual {
    right: -22%;
    width: 130%;
    height: 31rem;
  }

  .hero-visual p {
    display: none;
  }

  .hero-title-blue {
    margin-left: 0.12em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-whale {
    width: 180px;
    margin-top: 0.6rem;
  }

  .page-noise {
    opacity: 0.025;
  }

  .button {
    width: 100%;
  }

  .video-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .video-meta a {
    text-align: center;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .content-grid {
    margin-top: 2.5rem;
  }

  .service-grid {
    margin-top: 2.5rem;
  }

  .service-cta .button {
    width: 100%;
  }

  .collaborations-button {
    width: 100%;
  }

  .video-grid {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }

  .community {
    width: calc(100% - 16px);
  }

  .community-panel {
    padding: 2.2rem 1.2rem;
  }

  .closing {
    min-height: 70vh;
  }

  .legal-header,
  .legal-footer {
    min-height: 96px;
  }

  .legal-header .brand-name {
    display: none;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 4.5rem 0;
  }

  .legal-footer {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

}

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

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

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

  .brand-ribbon-track {
    animation: none;
  }
}
