/* Real Tadka — lightweight, dependency-free website styles */
:root {
  --bg: #08080c;
  --bg-deep: #050507;
  --surface: #101016;
  --surface-2: #15151d;
  --surface-3: #1b1a25;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f8f7fb;
  --muted: #aaa8b4;
  --soft: #d9d7df;
  --pink: #ff1aa8;
  --rose: #ff4769;
  --orange: #ff8d32;
  --yellow: #ffd43b;
  --purple: #8b4dff;
  --cyan: #59dff0;
  --success: #58d68d;
  --danger: #ff6d7d;
  --brand: linear-gradient(
    105deg,
    var(--pink),
    var(--rose) 50%,
    var(--orange) 76%,
    var(--yellow)
  );
  --brand-soft: linear-gradient(
    135deg,
    rgba(255, 26, 168, 0.18),
    rgba(255, 141, 50, 0.1)
  );
  --shadow-sm: 0 12px 35px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(
      circle at 8% -10%,
      rgba(255, 26, 168, 0.13),
      transparent 28rem
    ),
    radial-gradient(
      circle at 100% 18%,
      rgba(139, 77, 255, 0.1),
      transparent 34rem
    ),
    var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(255, 50, 146, 0.35);
  color: #fff;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.75rem;
  z-index: 200;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #09090d;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 2.5rem), 820px);
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(5.25rem, 9vw, 8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.section-sm {
  padding: clamp(3.75rem, 7vw, 6rem) 0;
}
.section-line {
  border-top: 1px solid var(--line);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #ffc9e4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: var(--brand);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #e9e5ed;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.8rem;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.kicker-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 0.35rem rgba(255, 26, 168, 0.12);
}
.title-xl,
.title-lg,
.title-md,
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.title-xl {
  font-size: clamp(3.15rem, 7vw, 6.6rem);
}
.title-lg {
  font-size: clamp(2.3rem, 4.5vw, 4.55rem);
}
.title-md {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}
.section-copy {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}
.gradient-text {
  color: transparent;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
}
.muted {
  color: var(--muted);
}
.soft {
  color: var(--soft);
}
.center {
  text-align: center;
}
.center .section-copy {
  margin-inline: auto;
}
.center .eyebrow {
  justify-content: center;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}
.icon-lg {
  width: 1.6rem;
  height: 1.6rem;
}
.icon-box {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: #ffd6e8;
  background: var(--brand-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.78rem 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.btn:hover::after {
  transform: translateX(130%);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  border-color: transparent;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 40px rgba(255, 35, 138, 0.23);
}
.btn-primary:hover {
  box-shadow: 0 18px 48px rgba(255, 35, 138, 0.32);
}
.btn-ghost {
  background: transparent;
}
.btn-small {
  min-height: 2.55rem;
  padding: 0.58rem 0.95rem;
  font-size: 0.84rem;
}
.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
  pointer-events: none;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffd1e7;
  font-weight: 800;
}
.link-arrow .icon {
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover .icon {
  transform: translateX(0.25rem);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 12, 0.92),
    rgba(8, 8, 12, 0.42),
    transparent
  );
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 12, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 186px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.site-nav a {
  position: relative;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: #c8c5cf;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  display: none;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 12, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  display: block;
  animation: menu-in 0.25s var(--ease);
}
.mobile-menu nav {
  display: grid;
  gap: 0.3rem;
}
.mobile-menu a {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  color: #ddd9e2;
  font-weight: 760;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}
.mobile-menu .btn {
  margin-top: 0.7rem;
  width: 100%;
}
@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
}

/* Hero */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 3.25rem) 0 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 44rem;
  height: 44rem;
  top: -14rem;
  left: -17rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 20, 155, 0.23),
    rgba(255, 20, 155, 0) 68%
  );
  filter: blur(6px);
  animation: glow-float 10s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  width: 35rem;
  height: 35rem;
  right: -9rem;
  bottom: -10rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 148, 42, 0.15),
    rgba(129, 65, 255, 0.06) 45%,
    transparent 72%
  );
  animation: glow-float 13s ease-in-out infinite alternate-reverse;
}
@keyframes glow-float {
  to {
    transform: translate3d(2rem, 1.5rem, 0) scale(1.06);
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-copy {
  max-width: 720px;
}
.hero h1 {
  margin: 1.25rem 0 1.35rem;
  font-size: clamp(3.2rem, 6.75vw, 6.6rem);
}
.hero-lead {
  max-width: 650px;
  margin: 0 0 2rem;
  color: #b9b6c1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1.2rem;
  color: #8f8c98;
  font-size: 0.84rem;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-note .dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--pink);
}

.phone-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.018),
    0 0 0 8rem rgba(255, 255, 255, 0.012);
  animation: spin-slow 28s linear infinite;
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
.device {
  position: relative;
  z-index: 2;
  width: min(305px, 78vw);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 49px;
  background: linear-gradient(145deg, #24232a, #050507 42%, #16151b);
  box-shadow:
    0 44px 95px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
  transform: rotateY(-8deg) rotateX(2deg) rotateZ(1.5deg);
  transition: transform 0.35s var(--ease);
  animation: phone-float 5.5s ease-in-out infinite;
}
.phone-stage:hover .device {
  transform: rotateY(-2deg) rotateX(0) rotateZ(0) translateY(-4px);
}
@keyframes phone-float {
  50% {
    translate: 0 -10px;
  }
}
.device::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #050507;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.device::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 120px;
  width: 3px;
  height: 72px;
  border-radius: 0 4px 4px 0;
  background: #393840;
}
.device-screen {
  overflow: hidden;
  border-radius: 40px;
  background: #0d0d12;
}
.device-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 346 / 765;
  object-fit: cover;
}
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(19, 18, 25, 0.77);
  -webkit-backdrop-filter: blur(15px) saturate(140%);
  backdrop-filter: blur(15px) saturate(140%);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f4f1f6;
  font-size: 0.82rem;
  font-weight: 780;
  animation: card-float 4.5s ease-in-out infinite;
}
.float-card .icon-box {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
}
.float-card strong {
  display: block;
  font-size: 0.92rem;
}
.float-card small {
  display: block;
  margin-top: 0.05rem;
  color: #9e9ba5;
  font-weight: 600;
}
.float-card.one {
  left: -6%;
  top: 17%;
  animation-delay: -0.5s;
}
.float-card.two {
  right: -6%;
  top: 36%;
  animation-delay: -1.7s;
}
.float-card.three {
  left: -2%;
  bottom: 12%;
  animation-delay: -3s;
}
@keyframes card-float {
  50% {
    transform: translateY(-9px) rotate(0.6deg);
  }
}

/* Feature ticker */
.ticker-wrap {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset-block: 0;
  width: 9rem;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-set {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.15rem 1.2rem;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  color: #d7d4dd;
  font-weight: 760;
}
.ticker-item .spark {
  color: var(--pink);
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Shared cards and grids */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head > div:first-child {
  max-width: 720px;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.card-hover {
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.19);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  min-height: 250px;
  padding: 1.4rem;
}
.feature-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 31, 157, 0.2), transparent 68%);
  transition: transform 0.4s var(--ease);
}
.feature-card:hover::after {
  transform: scale(1.28);
}
.feature-card h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.18rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.feature-number {
  position: absolute;
  right: 1.15rem;
  top: 1.1rem;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* Feed showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}
.feed-panel {
  padding: 1rem;
  border-radius: var(--radius-lg);
}
.feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.55rem 1rem;
}
.feed-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.avatar {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff2c9e, #ff9837);
  color: #fff;
  font-weight: 900;
  box-shadow:
    0 0 0 2px #111,
    0 0 0 4px rgba(255, 69, 143, 0.55);
}
.feed-user strong {
  display: block;
  font-size: 0.92rem;
}
.feed-user small {
  color: var(--muted);
}
.follow-pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 820;
}
.feed-image {
  position: relative;
  min-height: 390px;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #32104f url("../images/share-story.png") center / cover no-repeat;
}
.feed-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.35rem 0.25rem;
  color: #d9d5df;
  font-size: 0.85rem;
}
.feed-actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.feed-caption {
  padding: 0.25rem 0.35rem 0.7rem;
  color: #bbb7c2;
  font-size: 0.88rem;
}
.feature-list {
  display: grid;
  gap: 1.15rem;
  margin: 2rem 0 0;
}
.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.feature-row .icon-box {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
}
.feature-row h3 {
  margin: 0.05rem 0 0.3rem;
  font-size: 1rem;
  letter-spacing: -0.015em;
}
.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Experience tabs */
.experience {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}
.tabs {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}
.tab {
  flex: 1;
  min-height: 2.8rem;
  border: 0;
  border-radius: 0.9rem;
  background: transparent;
  color: #9f9ca7;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.tab:hover {
  color: #fff;
}
.tab[aria-selected="true"] {
  color: #fff;
  background: linear-gradient(
    105deg,
    rgba(255, 31, 162, 0.25),
    rgba(116, 67, 255, 0.18)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.tab-panel {
  display: none;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.tab-panel.active {
  display: grid;
  animation: panel-in 0.35s var(--ease);
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
.tab-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  margin-bottom: 0.85rem;
}
.tab-copy p {
  color: var(--muted);
}
.tab-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.tab-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #d5d2db;
  font-size: 0.92rem;
}
.tab-points .icon {
  color: var(--success);
  margin-top: 0.15rem;
}
.preview-stack {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
}
.preview-card {
  position: absolute;
  width: min(310px, 80%);
  aspect-ratio: 4/5;
  border-radius: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.preview-card:nth-child(1) {
  transform: translateX(-25%) rotate(-8deg) scale(0.88);
  opacity: 0.58;
}
.preview-card:nth-child(2) {
  z-index: 2;
  transform: translateY(-0.5rem);
}
.preview-card:nth-child(3) {
  transform: translateX(25%) rotate(8deg) scale(0.88);
  opacity: 0.58;
}
.preview-a {
  background:
    radial-gradient(circle at 65% 20%, #ffd46d, transparent 25%),
    linear-gradient(145deg, #5a154a, #f23f75 58%, #ff9a3e);
}
.preview-b {
  background:
    radial-gradient(circle at 25% 18%, #78e7ff, transparent 24%),
    linear-gradient(145deg, #0b2442, #30206f 60%, #ed337e);
}
.preview-c {
  background:
    radial-gradient(circle at 75% 12%, #d3ff74, transparent 23%),
    linear-gradient(145deg, #16352a, #3a215e 60%, #f0635e);
}
.tab-panel .preview-card:nth-child(1) {
  background: #1a1020 url("../images/trending1.png") center / cover no-repeat;
}
.tab-panel .preview-card:nth-child(2) {
  background: #1a1020 url("../images/trending2.png") center / cover no-repeat;
}
.tab-panel .preview-card:nth-child(3) {
  background: #1a1020 url("../images/trending3.png") center / cover no-repeat;
}
.preview-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.92), transparent);
}
.preview-label {
  position: absolute;
  z-index: 3;
  inset: auto 1rem 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.preview-label small {
  display: block;
  color: #c8c5cf;
  font-weight: 650;
  font-size: 0.74rem;
}

/* Drama rail */
.drama-section {
  overflow: hidden;
}
.drama-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 28%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.3rem max(1.25rem, calc((100vw - var(--container)) / 2)) 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}
.drama-rail::-webkit-scrollbar {
  height: 7px;
}
.drama-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
}
.drama-card {
  scroll-snap-align: start;
  min-width: 0;
}
.drama-poster {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 2/3;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: var(--shadow-sm);
}
.drama-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s var(--ease),
    filter 0.4s ease;
}
.drama-card:hover .drama-poster img {
  transform: scale(1.035);
  filter: saturate(1.08);
}
.premium-badge {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.67);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 3.9rem;
  height: 3.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(8, 8, 12, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease);
}
.drama-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.drama-meta {
  padding: 0.85rem 0.2rem 0;
}
.drama-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}
.drama-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.drama-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.drama-tag {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7c3cd;
  font-size: 0.68rem;
}

/* Premium explanation */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
}
.premium-visual {
  position: relative;
  min-height: 470px;
}
.ticket-card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(420px, 90%);
  min-height: 290px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 27, 163, 0.24),
    rgba(255, 141, 50, 0.07) 56%,
    rgba(255, 255, 255, 0.035)
  );
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) rotate(-3deg);
}
.ticket-card::before,
.ticket-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bg);
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px var(--line);
}
.ticket-card::before {
  left: -1rem;
}
.ticket-card::after {
  right: -1rem;
}
.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ticket-mark {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
.ticket-chip {
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe1ef;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticket-card h3 {
  margin: 2rem 0 0.4rem;
  font-size: 2rem;
}
.ticket-card p {
  margin: 0;
  color: #c5c1cb;
}
.ticket-divider {
  margin: 1.3rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.ticket-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #f2eaf0;
  font-size: 0.83rem;
  font-weight: 780;
}
.orbit-dot {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 30px var(--pink);
}
.orbit-dot.a {
  left: 7%;
  top: 15%;
  animation: orbit-a 7s ease-in-out infinite;
}
.orbit-dot.b {
  right: 10%;
  bottom: 12%;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--yellow);
  box-shadow: 0 0 28px var(--yellow);
  animation: orbit-b 8s ease-in-out infinite;
}
@keyframes orbit-a {
  50% {
    transform: translate(18px, 25px) scale(0.7);
  }
}
@keyframes orbit-b {
  50% {
    transform: translate(-25px, -18px) scale(1.3);
  }
}

/* Profile and personalization */
.profile-card {
  padding: 1.25rem;
}
.profile-cover {
  height: 120px;
  border-radius: 1.1rem;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(255, 218, 88, 0.9),
      transparent 22%
    ),
    linear-gradient(135deg, #5b195c, #ec3f73 55%, #ff9939);
}
.profile-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: -2.2rem;
  padding: 0 0.4rem;
}
.profile-avatar {
  width: 5rem;
  height: 5rem;
  border: 5px solid var(--surface);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb65b, #ff4d8e);
  display: block;
  object-fit: cover;
}
.profile-info {
  padding: 0.9rem 0.4rem 1rem;
}
.profile-info h3 {
  margin: 0 0 0.15rem;
}
.profile-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.8rem 0;
  border-block: 1px solid var(--line);
}
.profile-stat {
  text-align: center;
}
.profile-stat strong {
  display: block;
  font-size: 1.08rem;
}
.profile-stat span {
  color: var(--muted);
  font-size: 0.75rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding-top: 1rem;
}
.profile-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.65rem;
}

/* Safety */
.safety-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 5vw, 4rem);
  background: linear-gradient(
    145deg,
    rgba(91, 49, 173, 0.17),
    rgba(255, 26, 168, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}
.safety-wrap::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: -7rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 3rem rgba(255, 255, 255, 0.015),
    0 0 0 6rem rgba(255, 255, 255, 0.01);
}
.safety-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}
.safety-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.safety-item {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(8, 8, 12, 0.35);
}
.safety-item h3 {
  margin: 0.85rem 0 0.4rem;
  font-size: 1rem;
}
.safety-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  min-height: 250px;
  padding: 1.4rem;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 2.8rem;
  color: transparent;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 900;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.2rem;
  right: -1.1rem;
  width: 2.2rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}
.step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}
.step p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 780;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  transition: transform 0.25s var(--ease);
  color: #c7c3ce;
}
.faq-item[open] summary .icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}
.faq-answer p {
  margin: 0;
}

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    120deg,
    rgba(255, 24, 164, 0.18),
    rgba(120, 57, 232, 0.11) 48%,
    rgba(255, 149, 49, 0.12)
  );
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -7rem;
  top: -11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 56, 0.3), transparent 66%);
}
.cta-copy {
  position: relative;
  z-index: 1;
}
.cta-copy h2 {
  margin-bottom: 1rem;
}
.store-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}
.store-btn {
  width: min(100%, 270px);
  min-height: 4.25rem;
  justify-content: flex-start;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
}
.store-btn .icon {
  width: 1.7rem;
  height: 1.7rem;
}
.store-text {
  line-height: 1.15;
  text-align: left;
}
.store-text small {
  display: block;
  color: #aaa6b1;
  font-size: 0.68rem;
  font-weight: 650;
}
.store-text strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 1.7rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.58);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.75fr;
  gap: 2.2rem;
}
.footer-brand img {
  width: 190px;
}
.footer-brand p {
  max-width: 330px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-title {
  margin: 0 0 0.9rem;
  color: #f0edf3;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links {
  display: grid;
  gap: 0.55rem;
}
.footer-links a {
  color: #9f9ca6;
  font-size: 0.87rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(0.15rem);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: #777581;
  font-size: 0.78rem;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom > span a {
  color: #ff1aa8;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 71, 0.5);
  text-underline-offset: 0.2em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}
.footer-bottom > span a:hover {
  color: #ffd18a;
  text-decoration-color: #ffd18a;
}
.footer-bottom a:hover {
  color: #c9c6cf;
}

/* Legal and content pages */
.page-hero {
  padding: calc(var(--header-h) + 5rem) 0 4.5rem;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(
    circle at 20% 10%,
    rgba(255, 24, 164, 0.12),
    transparent 28rem
  );
}
.page-hero .title-lg {
  max-width: 860px;
  margin-bottom: 1.1rem;
}
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  color: #8e8b96;
  font-size: 0.86rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  color: #96939d;
  font-size: 0.84rem;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: #65636c;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.025);
}
.legal-toc strong {
  display: block;
  margin: 0.1rem 0.55rem 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d7d4dc;
}
.legal-toc nav {
  display: grid;
  gap: 0.18rem;
}
.legal-toc a {
  padding: 0.45rem 0.55rem;
  border-radius: 0.65rem;
  color: #8f8c96;
  font-size: 0.79rem;
  line-height: 1.35;
}
.legal-toc a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}
.prose {
  min-width: 0;
}
.prose > :first-child {
  margin-top: 0;
}
.prose h2 {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
  margin: 3.1rem 0 1rem;
  padding-top: 0.25rem;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}
.prose h3 {
  margin: 1.8rem 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.prose p {
  color: #bbb8c2;
}
.prose ul,
.prose ol {
  color: #bbb8c2;
  padding-left: 1.25rem;
}
.prose li + li {
  margin-top: 0.45rem;
}
.prose strong {
  color: #f3f0f5;
}
.prose a {
  color: #ffafd2;
  text-decoration: underline;
  text-decoration-color: rgba(255, 175, 210, 0.35);
  text-underline-offset: 0.2em;
}
.notice {
  margin: 1.5rem 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 184, 61, 0.24);
  border-radius: 1rem;
  background: rgba(255, 184, 61, 0.065);
  color: #e9ddca;
}
.info-card {
  padding: 1.25rem;
}
.info-card h3 {
  margin: 0.85rem 0 0.5rem;
}
.info-card p {
  margin: 0;
  color: var(--muted);
}
.about-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}
.brand-art {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 43, 148, 0.28),
      transparent 27%
    ),
    linear-gradient(145deg, #15101d, #0c0b11);
}
.brand-art::before,
.brand-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: spin-slow 22s linear infinite;
}
.brand-art::before {
  width: 320px;
  height: 320px;
}
.brand-art::after {
  width: 430px;
  height: 430px;
  animation-direction: reverse;
}
.brand-art img {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(255, 43, 148, 0.18));
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-card {
  padding: 1.4rem;
}
.value-card h3 {
  margin: 1.2rem 0 0.5rem;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.5rem;
}
.contact-card {
  padding: 1.5rem;
}
.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.75rem;
}
.contact-card p {
  color: var(--muted);
}
.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}
.contact-item strong {
  display: block;
  font-size: 0.9rem;
}
.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 0.84rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  color: #d9d5df;
  font-size: 0.84rem;
  font-weight: 750;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  padding: 0.85rem 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 59, 155, 0.6);
  box-shadow: 0 0 0 0.25rem rgba(255, 59, 155, 0.1);
}
.form-status {
  min-height: 1.4rem;
  color: #bdb9c4;
  font-size: 0.82rem;
}

/* Cookie notice */
.cookie-banner {
  position: fixed;
  z-index: 140;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: min(720px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.25rem;
  background: rgba(15, 14, 20, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}
.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: cookie-in 0.35s var(--ease);
}
.cookie-banner p {
  margin: 0;
  color: #b8b5be;
  font-size: 0.83rem;
}
.cookie-banner a {
  color: #ffd0e6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}
@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
}

/* Reveal on scroll: content stays visible without JS */
html.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
html.js .reveal.visible {
  opacity: 1;
  transform: none;
}
html.js .reveal.delay-1 {
  transition-delay: 0.08s;
}
html.js .reveal.delay-2 {
  transition-delay: 0.16s;
}
html.js .reveal.delay-3 {
  transition-delay: 0.24s;
}

/* Accessibility */
:focus-visible {
  outline: 3px solid rgba(255, 76, 163, 0.6);
  outline-offset: 3px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Responsive */
@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 2rem;
  }
  .phone-stage {
    min-height: 600px;
  }
  .float-card.one {
    left: -11%;
  }
  .float-card.two {
    right: -10%;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 1.4rem;
  }
  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 70px;
  }
  .container,
  .narrow {
    width: min(calc(100% - 1.5rem), var(--container));
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 3rem);
  }
  .hero-grid,
  .showcase-grid,
  .premium-grid,
  .safety-grid,
  .about-story,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero .kicker {
    margin-inline: auto;
  }
  .hero .btn-row,
  .hero-note {
    justify-content: center;
  }
  .phone-stage {
    min-height: 630px;
    margin-top: 1.5rem;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .tab-panel {
    grid-template-columns: 1fr;
  }
  .preview-stack {
    min-height: 340px;
    order: -1;
  }
  .drama-rail {
    grid-auto-columns: minmax(225px, 44%);
  }
  .premium-visual {
    min-height: 430px;
    order: -1;
  }
  .safety-points {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    min-height: 0;
  }
  .step::before {
    margin-bottom: 1.5rem;
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .cta-box {
    text-align: center;
  }
  .cta-box .btn-row {
    justify-content: center;
  }
  .store-row {
    justify-items: center;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
  }
  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }
  .brand img {
    width: 165px;
  }
  .nav-actions > .btn {
    display: none;
  }
  .title-xl {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }
  .hero .btn {
    flex: 1 1 100%;
  }
  .phone-stage {
    min-height: 570px;
  }
  .device {
    width: min(270px, 76vw);
    border-radius: 44px;
  }
  .device-screen {
    border-radius: 36px;
  }
  .float-card {
    padding: 0.55rem 0.65rem;
    font-size: 0.74rem;
  }
  .float-card .icon-box {
    width: 2rem;
    height: 2rem;
  }
  .float-card strong {
    font-size: 0.78rem;
  }
  .float-card small {
    font-size: 0.65rem;
  }
  .float-card.one {
    left: -2%;
    top: 12%;
  }
  .float-card.two {
    right: -2%;
    top: 41%;
  }
  .float-card.three {
    left: 1%;
    bottom: 7%;
  }
  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 3rem;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .feed-image {
    min-height: 330px;
  }
  .tabs {
    overflow-x: auto;
  }
  .tab {
    min-width: 92px;
  }
  .preview-stack {
    min-height: 300px;
  }
  .preview-card {
    width: 72%;
  }
  .drama-rail {
    grid-auto-columns: minmax(215px, 75%);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .premium-visual {
    min-height: 380px;
  }
  .ticket-card {
    width: 86%;
    min-height: 260px;
    padding: 1.2rem;
  }
  .ticket-card h3 {
    font-size: 1.55rem;
    margin-top: 1.35rem;
  }
  .ticket-mark {
    width: 3.2rem;
    height: 3.2rem;
  }
  .safety-points {
    grid-template-columns: 1fr;
  }
  .profile-stats {
    gap: 0.2rem;
  }
  .cta-box {
    padding: 2rem 1.15rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-toc nav {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding-top: calc(var(--header-h) + 3.7rem);
  }
  .brand-art {
    min-height: 350px;
  }
  .brand-art img {
    width: 170px;
    height: 170px;
  }
  .cookie-banner.show {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions .btn {
    flex: 1;
  }
}

@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;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
