:root {
  --bg: #0d0d10;
  --bg-soft: #141419;
  --panel: #18181e;
  --panel-light: #202027;
  --ink: #fffaf7;
  --muted: #bdb7b5;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff4778;
  --accent-bright: #ff779a;
  --violet: #9b77ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 71, 120, 0.08), transparent 32rem),
    radial-gradient(circle at 90% 35%, rgba(155, 119, 255, 0.07), transparent 34rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 16, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

nav a:hover {
  color: var(--ink);
}

.header-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 119, 154, 0.48);
  border-radius: 999px;
  color: #ffd5df;
  font-size: 0.85rem;
  font-weight: 750;
}

.header-cta:hover {
  border-color: var(--accent-bright);
  background: rgba(255, 71, 120, 0.1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  min-height: 100svh;
  padding: 130px clamp(20px, 6vw, 96px) 80px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6.6vw, 7.1rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #df2966);
  box-shadow: 0 14px 38px rgba(255, 71, 120, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(255, 71, 120, 0.36);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 29px;
  color: #d6cfcd;
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-quicklinks a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e8e1df;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.8rem;
  font-weight: 750;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.hero-quicklinks a:hover {
  border-color: rgba(255, 119, 154, 0.58);
  color: white;
  background: rgba(255, 71, 120, 0.11);
}

.hero-quicklinks span {
  color: var(--accent-bright);
}

.hero-points span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent-bright);
}

.hero-stack {
  position: relative;
  height: min(72vh, 730px);
  min-height: 520px;
}

.hero-card {
  position: absolute;
  top: 50%;
  width: clamp(210px, 20vw, 340px);
  aspect-ratio: 3 / 4.35;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 220ms ease;
}

.hero-card::after {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: rgba(8, 8, 11, 0.78);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  content: attr(data-label);
  font-size: 0.75rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-card:hover,
.hero-card:focus-visible {
  border-color: rgba(255, 119, 154, 0.9);
  box-shadow: 0 30px 90px rgba(255, 71, 120, 0.3), 0 0 0 3px rgba(255, 71, 120, 0.16);
  filter: brightness(1.05);
}

.hero-card:hover img,
.hero-card:focus-visible img {
  transform: scale(1.045);
}

.hero-card:hover::after,
.hero-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-card-main {
  z-index: 3;
  left: 50%;
  width: clamp(255px, 24vw, 410px);
  transform: translate(-50%, -50%);
}

.hero-card-left {
  z-index: 1;
  left: 4%;
  transform: translateY(-46%) rotate(-8deg);
}

.hero-card-right {
  z-index: 2;
  right: 2%;
  transform: translateY(-47%) rotate(8deg);
}

.hero-card-main img {
  object-position: 51% center;
}

.hero-card-left img {
  object-position: center 25%;
}

.hero-card-right img {
  object-position: center 24%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: 9%;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 71, 120, 0.16);
}

.hero-glow-two {
  right: 36%;
  bottom: 4%;
  width: 22rem;
  height: 22rem;
  background: rgba(155, 119, 255, 0.11);
}

.channel-section,
.about-section {
  scroll-margin-top: 92px;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 78px);
}

.channel-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2,
.about-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 1500px;
  margin: 0 auto;
}

.channel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.channel-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 119, 154, 0.46);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34);
}

.channel-image {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: var(--panel-light);
}

.channel-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(13, 13, 16, 0.78));
  content: "";
}

.channel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.channel-card:hover .channel-image img {
  transform: scale(1.025);
}

.channel-mia .channel-image img {
  object-position: 50% 18%;
}

.channel-lilli .channel-image img,
.channel-nina .channel-image img {
  object-position: 50% 22%;
}

.channel-badge {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 17px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
}

.channel-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 32px);
}

.channel-kicker {
  margin: 0 0 7px;
  color: var(--accent-bright) !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.channel-content h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  letter-spacing: -0.04em;
}

.channel-content p {
  margin: 16px 0 25px;
  color: var(--muted);
  line-height: 1.65;
}

.channel-button {
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  border-color: rgba(255, 119, 154, 0.3);
  color: white;
  background: rgba(255, 71, 120, 0.1);
}

.channel-button:hover {
  background: rgba(255, 71, 120, 0.2);
}

.channel-button span {
  font-size: 1.2rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 130px);
  max-width: 1500px;
  margin: auto;
}

.about-grid {
  display: grid;
  gap: 18px;
}

.about-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.about-grid span {
  grid-row: span 2;
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 800;
}

.about-grid h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  max-width: 1500px;
  margin: 0 auto clamp(30px, 5vw, 70px);
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 119, 154, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 71, 120, 0.17), transparent 23rem),
    var(--panel);
}

.final-cta > img {
  width: clamp(75px, 9vw, 125px);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 78px);
  border-top: 1px solid var(--line);
  color: #8f8988;
  font-size: 0.78rem;
}

.mobile-channel-bar {
  display: none;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-quicklinks {
    justify-content: center;
  }

  .hero-stack {
    width: min(100%, 780px);
    height: 610px;
    margin: -15px auto 0;
  }

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

  .channel-nina {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 9px));
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    min-height: 64px;
  }

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

  .brand span,
  nav {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: auto;
    min-height: 0;
    margin-top: 24px;
  }

  .hero-card,
  .hero-card-main {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: none;
    border-radius: 14px;
    transform: none;
  }

  .hero-card::after {
    right: 5px;
    bottom: 5px;
    left: 5px;
    padding: 6px 4px;
    overflow: hidden;
    font-size: 0.59rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 1;
    transform: none;
  }

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

  .channel-nina {
    grid-column: auto;
    width: 100%;
  }

  .channel-image {
    aspect-ratio: 4 / 4.1;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    margin-inline: 16px;
    text-align: center;
  }

  .final-cta > img {
    margin: auto;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mobile-channel-bar {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(18, 18, 22, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
  }

  .mobile-channel-bar a {
    display: grid;
    min-height: 43px;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: rgba(255, 71, 120, 0.12);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-channel-bar a:hover {
    background: rgba(255, 71, 120, 0.24);
  }
}

@media (hover: none) {
  .hero-card::after {
    opacity: 1;
    transform: none;
  }

  .hero-card:active {
    border-color: var(--accent-bright);
    filter: brightness(1.08);
  }
}

@media (max-width: 520px) {
  .hero-stack {
    height: 385px;
  }

  .hero-points {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
