:root {
  color-scheme: dark;
  --browser-surface: #011b33;
  --accent: #fed201;
  --accent-strong: #ffe66a;
  --accent-blue: #0172d8;
  --accent-cyan: #01d0f8;
  --ink: #011b33;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --panel: rgba(255, 255, 255, 0.12);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.44);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  overscroll-behavior-y: none;
  scrollbar-color: rgba(254, 210, 1, 0.76) #011b33;
  background: var(--browser-surface);
}

html.is-slide-animating {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

html.has-directed-slides,
html.has-directed-slides body {
  touch-action: pan-x pinch-zoom;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: linear-gradient(135deg, #020914 0%, #013668 42%, #011b33 64%, #02488a 100%);
  background-color: var(--browser-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.page-shell {
  min-height: 300vh;
  min-height: 300dvh;
  background: #011b33;
}

.section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--panel), var(--panel-soft));
  box-shadow: 0 24px 70px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(34px) saturate(170%);
  -webkit-backdrop-filter: blur(34px) saturate(170%);
}

.glass::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(310deg, rgba(1, 208, 248, 0.14), transparent 56%);
}

.brand-pill {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + clamp(11px, 2.2vw, 22px));
  left: 50%;
  z-index: 30;
  display: block;
  width: min(72vw, 330px);
  height: clamp(38px, 6.5vw, 48px);
  padding: 6px 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  animation: liquidWordmarkHeader 5.2s ease-in-out infinite;
  transition:
    width 620ms cubic-bezier(0.22, 1, 0.36, 1),
    height 620ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 620ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.brand-pill__wordmark,
.brand-pill__sun {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  height: auto;
  object-fit: contain;
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    width 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-pill__wordmark {
  width: min(calc(100% - 34px), 286px);
  max-height: 27px;
  transform: translate(-50%, -50%);
}

.brand-pill__sun {
  width: 54px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62) rotate(-18deg);
  filter: drop-shadow(0 10px 24px rgba(254, 210, 1, 0.24));
}

body:not(.is-home) .brand-pill {
  width: 76px;
  height: 68px;
  padding: 6px;
  border-radius: 40px 50px 42px 48px;
  animation: liquidHeader 5s ease-in-out infinite;
}

body:not(.is-home) .brand-pill__wordmark {
  width: 92px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.38);
}

body:not(.is-home) .brand-pill__sun {
  width: 57px;
  max-width: 57px;
  max-height: 57px;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  animation: liquidSun 4.8s ease-in-out infinite;
}

.slide-nav {
  position: fixed;
  top: 50%;
  right: max(14px, calc((100vw - 1200px) / 2));
  z-index: 28;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 7px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(2, 17, 31, 0.46);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

body.is-home .slide-nav {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.slide-nav__dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slide-nav__dot span {
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.slide-nav__dot.is-active {
  color: #071827;
  border-color: rgba(255, 255, 255, 0.52);
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(254, 210, 1, 0.32);
}

.hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #011b33;
}

.hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #011b33;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.07), transparent 42%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 50% 58%, transparent 36%, rgba(0, 20, 38, 0.12) 100%);
}

.scroll-cue {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(24px, 5.5svh, 50px));
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff;
  background: rgba(1, 27, 51, 0.44);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.scroll-cue__text {
  position: relative;
  z-index: 1;
  font-size: clamp(0.72rem, 1.7vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.scroll-cue__arrow {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #071827;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  background: var(--accent);
  animation: ctaArrow 1.5s ease-in-out infinite;
}

.social-section,
.links-section {
  display: grid;
  place-items: center;
  overflow: clip;
  padding:
    calc(env(safe-area-inset-top, 0px) + clamp(94px, 13svh, 116px))
    clamp(16px, 4vw, 54px)
    calc(env(safe-area-inset-bottom, 0px) + clamp(32px, 5svh, 54px));
}

.social-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(254, 210, 1, 0.18), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(1, 208, 248, 0.2), transparent 30%),
    linear-gradient(145deg, #020914, #013668 50%, #012746 100%);
}

.social-section::before,
.social-section::after,
.links-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.social-section::before {
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}

.social-section::after {
  width: 60vw;
  height: 60vw;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.012), 0 0 0 17vw rgba(1, 208, 248, 0.018);
}

.social-hub {
  z-index: 1;
  width: min(100%, 860px);
  padding: clamp(18px, 3vw, 28px);
  border-radius: 30px;
}

.social-header {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto clamp(16px, 2.5svh, 24px);
  text-align: center;
}

.section-kicker,
.profile__handle {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.72rem, 1.7vw, 0.86rem);
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.social-header h1,
.profile h2 {
  margin: 5px 0 6px;
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.social-header p:last-child {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.86rem, 2vw, 1rem);
  font-weight: 650;
  line-height: 1.4;
}

.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(9px, 1.5vw, 13px);
}

.platform-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 116px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.platform-card::after {
  position: absolute;
  right: -26px;
  bottom: -36px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  content: "";
  background: var(--platform-glow, rgba(255, 255, 255, 0.1));
  filter: blur(28px);
  opacity: 0.42;
}

.platform-card--featured {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-column: 1 / -1;
  align-items: center;
  min-height: 142px;
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(255, 255, 255, 0.25);
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 30, 30, 0.24), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.platform-card--icon-only {
  min-height: 88px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px;
}

.platform-card--youtube {
  --platform-glow: rgba(255, 0, 0, 0.74);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.platform-card--instagram {
  --platform-glow: rgba(225, 48, 108, 0.82);
}

.platform-card--tiktok {
  --platform-glow: rgba(37, 244, 238, 0.68);
}

.platform-card--soundcloud {
  --platform-glow: rgba(255, 85, 0, 0.82);
}

.platform-card--twitch {
  --platform-glow: rgba(145, 70, 255, 0.82);
}

.platform-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.platform-card--featured .platform-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(255, 0, 51, 0.28);
}

.platform-card--icon-only .platform-icon {
  width: 100%;
  height: 100%;
  max-width: 62px;
  max-height: 62px;
  border-radius: 18px;
}

.platform-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.platform-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.platform-copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
  text-overflow: ellipsis;
}

.platform-copy > span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.25;
}

.platform-card--featured .platform-copy {
  gap: 4px;
}

.platform-card--featured .platform-copy strong {
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  letter-spacing: -0.035em;
}

.platform-card--featured .platform-copy > span:last-child {
  font-size: clamp(0.82rem, 2vw, 0.96rem);
}

.platform-eyebrow {
  color: #ffb5bd !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 900;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.11);
}

.card-arrow {
  position: absolute;
  top: 13px;
  right: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.equalizer {
  position: absolute;
  right: 12%;
  bottom: -8px;
  z-index: 0;
  display: flex;
  height: 72px;
  align-items: flex-end;
  gap: 7px;
  opacity: 0.12;
  transform: skewX(-8deg);
}

.equalizer i {
  display: block;
  width: 7px;
  height: var(--bar-height, 42%);
  border-radius: 99px 99px 0 0;
  background: #fff;
}

.equalizer i:nth-child(2) { --bar-height: 78%; }
.equalizer i:nth-child(3) { --bar-height: 54%; }
.equalizer i:nth-child(4) { --bar-height: 94%; }
.equalizer i:nth-child(5) { --bar-height: 65%; }
.equalizer i:nth-child(6) { --bar-height: 86%; }
.equalizer i:nth-child(7) { --bar-height: 44%; }
.equalizer i:nth-child(8) { --bar-height: 72%; }

.social-funnel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(14px, 2.2svh, 20px);
  padding-top: clamp(13px, 2svh, 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.055);
}

.funnel-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  color: #071827;
  font-size: 0.83rem;
  font-weight: 950;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 28px rgba(254, 210, 1, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.links-section {
  background:
    linear-gradient(145deg, rgba(2, 9, 20, 0.98), rgba(1, 54, 104, 0.94) 48%, rgba(2, 72, 138, 0.92)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
}

.links-section::before {
  background:
    linear-gradient(90deg, rgba(254, 210, 1, 0.12), transparent 28%, rgba(1, 208, 248, 0.11) 68%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%);
  filter: blur(20px);
  opacity: 0.72;
}

.linktree {
  z-index: 1;
  width: min(100%, 540px);
  padding: clamp(16px, 3.4vw, 23px);
  border-radius: 26px;
}

.profile {
  position: relative;
  z-index: 1;
  text-align: center;
}

.profile h2 {
  font-size: clamp(1.85rem, 5.2vw, 2.6rem);
}

.profile__seo {
  max-width: 390px;
  margin: 0 auto clamp(14px, 2.4svh, 19px);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.82rem, 2.4vw, 0.96rem);
  font-weight: 720;
  line-height: 1.35;
}

.contact-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(9px, 1.5svh, 12px);
}

.contact-card {
  padding: clamp(13px, 2.2svh, 17px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-card--primary {
  border-color: rgba(254, 210, 1, 0.72);
  background:
    linear-gradient(135deg, rgba(254, 210, 1, 0.22), rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(254, 210, 1, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.contact-card--secondary {
  opacity: 0.88;
}

.contact-card__eyebrow {
  display: inline-flex;
  margin: 0 0 7px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #090909;
  background: var(--accent);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card--secondary .contact-card__eyebrow {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
}

.contact-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 3.8vw, 1.42rem);
  line-height: 1.08;
}

.contact-card__note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.76rem, 2.3vw, 0.86rem);
  font-weight: 700;
}

.contact-card__number {
  margin: 7px 0 11px;
  color: var(--accent);
  font-size: clamp(1.48rem, 6vw, 2.08rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.025em;
}

.contact-card--secondary .contact-card__number {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.22rem, 5vw, 1.62rem);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 9px;
}

.action-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  font-size: clamp(0.78rem, 2.3vw, 0.92rem);
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.action-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.action-button--whatsapp {
  color: #071008;
  border-color: rgba(254, 210, 1, 0.72);
  background: linear-gradient(135deg, #fed201, #ffe875);
}

.action-button--call {
  color: #fff;
  border-color: rgba(1, 208, 248, 0.48);
  background: rgba(1, 208, 248, 0.16);
}

.action-button--ghost {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.booking-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: clamp(11px, 2svh, 15px);
  padding-top: clamp(10px, 1.8svh, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 700;
}

.booking-footer a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(254, 210, 1, 0.52);
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (hover: hover) {
  .slide-nav__dot:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
  }

  .platform-card:hover,
  .platform-card:focus-visible {
    z-index: 3;
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  .funnel-button:hover,
  .action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  }
}

@media (max-width: 760px) {
  .slide-nav {
    top: auto;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    left: 50%;
    flex-direction: row;
    transform: translateX(-50%);
    background: rgba(2, 17, 31, 0.66);
  }

  .slide-nav__dot {
    width: 36px;
    height: 32px;
    border-radius: 999px;
  }

  .social-section,
  .links-section {
    padding:
      calc(env(safe-area-inset-top, 0px) + 92px)
      14px
      calc(env(safe-area-inset-bottom, 0px) + 78px);
  }

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

  .platform-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero__video {
    object-position: center top;
  }

  .brand-pill {
    top: calc(env(safe-area-inset-top, 0px) + 16px);
    width: min(74vw, 292px);
    height: 38px;
    padding: 5px 16px;
  }

  .brand-pill__wordmark {
    max-height: 23px;
  }

  body:not(.is-home) .brand-pill {
    width: 68px;
    height: 61px;
    padding: 5px;
  }

  body:not(.is-home) .brand-pill__sun {
    width: 52px;
    max-width: 52px;
    max-height: 52px;
  }

  .social-hub,
  .linktree {
    padding: 14px;
    border-radius: 23px;
  }

  .social-header {
    margin-bottom: 11px;
  }

  .social-header h1 {
    font-size: clamp(1.5rem, 7.2vw, 1.88rem);
  }

  .social-header p:last-child {
    display: none;
  }

  .platform-grid {
    gap: 8px;
  }

  .platform-card {
    min-height: 104px;
    gap: 11px;
    padding: 12px;
    border-radius: 16px;
  }

  .platform-card--icon-only {
    min-height: 66px;
    aspect-ratio: 1;
    gap: 0;
    padding: 8px;
  }

  .platform-card--featured {
    min-height: 128px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
  }

  .platform-card--featured .platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  .platform-card--icon-only .platform-icon {
    width: 100%;
    height: 100%;
    max-width: 50px;
    max-height: 50px;
    border-radius: 14px;
  }

  .platform-card--featured .platform-copy strong {
    font-size: 1.48rem;
  }

  .platform-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 39px;
    justify-content: center;
    padding: 8px 11px;
  }

  .platform-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .platform-copy strong {
    font-size: 0.92rem;
  }

  .platform-copy > span:last-child {
    font-size: 0.68rem;
  }

  .social-funnel {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .service-tags {
    justify-content: center;
  }

  .funnel-button {
    width: 100%;
  }

  .contact-card {
    padding: 12px;
    border-radius: 18px;
  }

  .contact-actions {
    grid-template-columns: 1.3fr 1fr;
    gap: 8px;
  }

  .action-button {
    min-height: 44px;
    padding: 9px 8px;
  }

  .action-button svg {
    width: 16px;
    height: 16px;
  }

  .booking-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .platform-copy > span:last-child {
    display: none;
  }

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

  .platform-card--icon-only {
    min-height: 64px;
  }

  .platform-card--featured {
    min-height: 124px;
  }

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

@media (max-height: 700px) and (min-width: 561px) {
  .social-section,
  .links-section {
    padding-top: calc(env(safe-area-inset-top, 0px) + 82px);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 28px);
  }

  .social-hub {
    padding-block: 16px;
  }

  .social-header {
    margin-bottom: 13px;
  }

  .platform-card--featured {
    min-height: 120px;
  }

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: rgba(5, 35, 60, 0.94);
  }
}

@keyframes ctaArrow {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(3px); }
}

@keyframes liquidHeader {
  0%, 100% { border-radius: 40px 50px 42px 48px; }
  50% { border-radius: 50px 40px 48px 42px; }
}

@keyframes liquidWordmarkHeader {
  0%, 100% { border-radius: 999px; }
  50% { border-radius: 30px 42px 32px 44px; }
}

@keyframes liquidSun {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%, -50%) scale(1.035) rotate(4deg); }
}

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

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