﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap");

    :root {
      --bg: #16141f;
      --bg-elevated: #1b1828;
      --bg-soft: #261f35;
      --surface: rgba(255, 255, 255, 0.068);
      --surface-strong: rgba(255, 255, 255, 0.11);
      --line: rgba(255, 255, 255, 0.07);
      --line-strong: rgba(255, 255, 255, 0.12);
      --text: #ffffff;
      --muted: #d2c7de;
      --muted-soft: rgba(244, 239, 248, 0.76);
      --brand: #662d91;
      --brand-rgb: 102, 45, 145;
      --brand-deep: #4f226f;
      --brand-deep-rgb: 79, 34, 111;
      --brand-light: #8a64ad;
      --brand-light-rgb: 138, 100, 173;
      --brand-2: #7a4ca1;
      --brand-3: #b496cf;
      --brand-soft: #d8c9e6;
      --brand-soft-rgb: 216, 201, 230;
      --brand-4: #f7f3fb;
      --gold: #c7a86d;
      --shadow: 0 28px 80px rgba(9, 6, 18, 0.34);
      --shadow-soft: 0 18px 44px rgba(9, 6, 18, 0.24);
      --glow-soft: 0 0 0 1px rgba(var(--brand-soft-rgb), 0.14), 0 18px 48px rgba(var(--brand-rgb), 0.18);
      --glow-strong: 0 0 0 1px rgba(var(--brand-soft-rgb), 0.2), 0 24px 60px rgba(var(--brand-rgb), 0.28);
      --radius-xl: 30px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: 1200px;
      --header-height: 94px;
      --motion-slow: 16s;
      --motion-medium: 10s;
      --motion-fast: 6.8s;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    ::selection {
      background: rgba(var(--brand-rgb), 0.28);
      color: #ffffff;
    }

    body {
      margin: 0;
      font-family: "Manrope", "Noto Sans SC", sans-serif;
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      background:
        radial-gradient(circle at 12% 0%, rgba(var(--brand-rgb), 0.22), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(var(--brand-soft-rgb), 0.12), transparent 22%),
        radial-gradient(circle at 50% 20%, rgba(var(--brand-light-rgb), 0.08), transparent 18%),
        linear-gradient(180deg, #16141f 0%, #1a1826 34%, #231d31 100%);
      min-height: 100vh;
      letter-spacing: 0.01em;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.12;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 120px 120px;
      mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.06), transparent 34%),
        radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.04), transparent 28%);
      opacity: 0.42;
      mix-blend-mode: screen;
    }

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

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

    button {
      border: 0;
      background: none;
      color: inherit;
      font: inherit;
      padding: 0;
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    .video-frame:focus-visible {
      outline: none;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 0 4px rgba(var(--brand-rgb), 0.18),
        0 16px 36px rgba(var(--brand-rgb), 0.18);
    }

    .page-shell {
      position: relative;
      overflow: clip;
    }

    .page-shell::before,
    .page-shell::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(96px);
      pointer-events: none;
      z-index: 0;
    }

    .page-shell::before {
      width: 420px;
      height: 420px;
      top: 120px;
      left: -140px;
      background: rgba(var(--brand-rgb), 0.24);
    }

    .page-shell::after {
      width: 360px;
      height: 360px;
      top: 960px;
      right: -140px;
      background: rgba(var(--brand-soft-rgb), 0.16);
    }

    .page-shell .design-orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.8;
      transform: translate3d(0, var(--orb-shift, 0px), 0);
      transition: transform 0.2s linear;
      animation: orbPulse 15s ease-in-out infinite;
    }

    .page-shell .design-orb.orb-a {
      width: 260px;
      height: 260px;
      top: 560px;
      right: 8%;
      background: rgba(var(--brand-rgb), 0.16);
    }

    .page-shell .design-orb.orb-b {
      width: 220px;
      height: 220px;
      top: 1760px;
      left: 6%;
      background: rgba(var(--brand-soft-rgb), 0.12);
      animation-delay: -7s;
    }

    .container {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 48px), var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      transition: backdrop-filter 0.24s ease, background 0.24s ease, border-color 0.24s ease;
    }

    .site-header.scrolled {
      backdrop-filter: blur(22px);
      background:
        linear-gradient(180deg, rgba(24, 21, 35, 0.88), rgba(20, 18, 29, 0.74)),
        rgba(22, 20, 31, 0.74);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 12px 30px rgba(8, 5, 16, 0.14);
    }

    .header-inner {
      min-height: var(--header-height);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .brand:hover {
      transform: translateY(-1px);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      padding: 2px 0;
    }

    .brand-mark img {
      display: block;
      width: auto;
      height: 92px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.35))
        drop-shadow(0 12px 26px rgba(var(--brand-rgb), 0.24));
      transition: transform 0.24s ease, filter 0.24s ease;
    }

    .brand:hover .brand-mark img {
      transform: translateY(-1px);
      filter:
        drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.35))
        drop-shadow(0 16px 30px rgba(var(--brand-rgb), 0.3));
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-copy strong {
      font-size: 1.06rem;
      letter-spacing: 0.18em;
      color: var(--brand-4);
      font-weight: 700;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .brand-copy .brand-secondary {
      color: rgba(var(--brand-soft-rgb), 0.9);
      font-size: 0.74rem;
      letter-spacing: 0.22em;
    }

    .footer-brand .brand-mark img {
      height: 118px;
    }

    .footer-brand .brand-copy strong {
      font-size: 1.18rem;
    }

    .nav-shell {
      justify-self: center;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--text);
      transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .nav-toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(var(--brand-soft-rgb), 0.24);
      background: rgba(var(--brand-soft-rgb), 0.08);
      box-shadow: 0 14px 30px rgba(var(--brand-rgb), 0.16);
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 34px rgba(8, 5, 16, 0.24);
    }

    .site-nav a {
      position: relative;
      padding: 11px 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.92rem;
      transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    .site-nav a::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 8px;
      height: 1px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, rgba(var(--brand-soft-rgb), 0.88), transparent);
      opacity: 0;
      transform: scaleX(0.55);
      transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .site-nav a:hover {
      color: var(--text);
      background: rgba(var(--brand-soft-rgb), 0.08);
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.16);
    }

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

    .site-nav a.active {
      color: var(--text);
      background: rgba(var(--brand-soft-rgb), 0.1);
      box-shadow: 0 14px 30px rgba(var(--brand-rgb), 0.18);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-join-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid rgba(var(--brand-soft-rgb), 0.16);
      background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.92) 0%, rgba(var(--brand-light-rgb), 0.82) 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 16px 34px rgba(var(--brand-rgb), 0.2);
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      white-space: nowrap;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .header-join-link:hover {
      transform: translateY(-1px);
      border-color: rgba(var(--brand-soft-rgb), 0.28);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 38px rgba(var(--brand-rgb), 0.26);
    }

    .lang-switch {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      min-width: 150px;
      padding: 6px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028));
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
      transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
    }

    .lang-switch:hover {
      border-color: rgba(var(--brand-soft-rgb), 0.18);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 34px rgba(var(--brand-rgb), 0.12);
    }

    .lang-switch::before {
      content: "";
      position: absolute;
      inset: 6px auto 6px 6px;
      width: calc(50% - 6px);
      border-radius: 999px;
      background: linear-gradient(135deg, #7e4baa 0%, var(--brand) 58%, var(--brand-deep) 100%);
      box-shadow: 0 16px 36px rgba(var(--brand-rgb), 0.26);
      transform: translateX(0);
      transition: transform 0.28s ease, box-shadow 0.28s ease;
      z-index: -1;
    }

    .lang-switch[data-active="en"]::before {
      transform: translateX(calc(100% + 6px));
    }

    .lang-btn {
      position: relative;
      z-index: 1;
      min-width: 0;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.92rem;
      transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
    }

    .lang-btn:hover {
      transform: translateY(-1px);
      color: var(--text);
    }

    .lang-btn.active {
      color: var(--text);
      background: transparent;
      box-shadow: none;
    }

    .lang-btn:active {
      transform: scale(0.98);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
      min-height: 54px;
      padding: 14px 25px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      white-space: nowrap;
      text-wrap: nowrap;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease, filter 0.24s ease;
      will-change: transform, box-shadow;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 44%);
      opacity: 0;
      transform: translateX(-26%);
      transition: opacity 0.28s ease, transform 0.4s ease;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: -20% auto -20% -36%;
      width: 28%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
      transform: skewX(-18deg) translateX(-160%);
      transition: transform 0.55s ease;
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.014);
    }

    .btn:hover::before {
      opacity: 1;
      transform: translateX(16%);
    }

    .btn:hover::after {
      transform: skewX(-18deg) translateX(480%);
    }

    .btn:active {
      transform: translateY(-1px) scale(0.985);
    }

    .btn:focus-visible {
      outline: none;
      border-color: rgba(var(--brand-soft-rgb), 0.4);
      box-shadow:
        0 0 0 1px rgba(var(--brand-soft-rgb), 0.36),
        0 0 0 6px rgba(var(--brand-rgb), 0.12);
    }

    .btn-primary {
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #8d5bb8 0%, #7a43a9 26%, var(--brand) 58%, var(--brand-deep) 100%);
      box-shadow:
        0 18px 40px rgba(var(--brand-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -10px 22px rgba(51, 24, 73, 0.16);
    }

    .btn-primary:hover {
      box-shadow:
        0 22px 48px rgba(var(--brand-rgb), 0.28),
        0 0 0 1px rgba(199, 168, 109, 0.18),
        0 0 46px rgba(var(--brand-soft-rgb), 0.24);
      filter: saturate(1.06) brightness(1.02);
    }

    .btn-primary:active {
      box-shadow:
        0 12px 28px rgba(var(--brand-rgb), 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -8px 16px rgba(51, 24, 73, 0.2);
    }

    .btn-secondary {
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 12% 0%, rgba(var(--brand-rgb), 0.08), transparent 36%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(8, 5, 16, 0.12);
    }

    .btn-secondary:hover {
      border-color: rgba(var(--brand-soft-rgb), 0.34);
      box-shadow:
        0 16px 36px rgba(var(--brand-rgb), 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 28px rgba(var(--brand-soft-rgb), 0.12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.036)),
        radial-gradient(circle at 12% 0%, rgba(var(--brand-rgb), 0.1), transparent 38%);
    }

    .btn-secondary:active {
      box-shadow:
        0 8px 18px rgba(var(--brand-rgb), 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .hero {
      position: relative;
      min-height: 96svh;
      display: flex;
      align-items: stretch;
      isolation: isolate;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: -2;
    }

    .hero::before {
      top: -2%;
      left: 10%;
      width: 56vw;
      height: 33vw;
      min-width: 380px;
      min-height: 240px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(var(--brand-rgb), 0.32) 0%, rgba(var(--brand-light-rgb), 0.16) 34%, transparent 74%);
      filter: blur(90px);
      opacity: 0.92;
    }

    .hero::after {
      top: 18%;
      right: 16%;
      width: 340px;
      height: 340px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(var(--brand-soft-rgb), 0.18) 0%, transparent 70%);
      filter: blur(74px);
      opacity: 0.84;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      pointer-events: none;
      contain: paint;
    }

    .hero-media::before {
      content: "";
      position: absolute;
      inset: -8% -6%;
      background:
        radial-gradient(circle at 18% 28%, rgba(var(--brand-soft-rgb), 0.16), transparent 18%),
        radial-gradient(circle at 72% 24%, rgba(var(--brand-rgb), 0.14), transparent 24%),
        radial-gradient(circle at 52% 72%, rgba(255, 255, 255, 0.04), transparent 20%);
      filter: blur(42px);
      opacity: 0.72;
    }

    .hero-media-art {
      position: absolute;
      inset: -4%;
      background:
        radial-gradient(circle at 50% 38%, rgba(var(--brand-rgb), 0.16), transparent 20%),
        radial-gradient(circle at 80% 26%, rgba(var(--brand-soft-rgb), 0.08), transparent 18%),
        radial-gradient(circle at 20% 76%, rgba(255, 255, 255, 0.04), transparent 16%),
        linear-gradient(180deg, rgba(21, 19, 30, 0.44), rgba(18, 16, 25, 0.62));
    }

    .hero-petal {
      position: absolute;
      border-radius: 58% 42% 60% 40% / 44% 60% 40% 56%;
      background:
        radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.14), transparent 22%),
        radial-gradient(circle at 52% 50%, rgba(var(--brand-soft-rgb), 0.1), transparent 54%),
        linear-gradient(145deg, rgba(120, 60, 152, 0.32), rgba(71, 33, 100, 0.26) 54%, rgba(28, 23, 38, 0.16));
      opacity: 0.9;
      mix-blend-mode: screen;
      filter: blur(2px);
    }

    .hero-petal-main {
      width: 34vw;
      height: 26vw;
      min-width: 420px;
      min-height: 320px;
      left: 43%;
      top: 26%;
      transform: rotate(-12deg);
      filter: blur(1px);
    }

    .hero-petal-second {
      width: 28vw;
      height: 22vw;
      min-width: 340px;
      min-height: 260px;
      left: 56%;
      top: 8%;
      opacity: 0.54;
      transform: rotate(22deg);
    }

    .hero-petal-third {
      width: 24vw;
      height: 19vw;
      min-width: 280px;
      min-height: 220px;
      left: 28%;
      bottom: -3%;
      opacity: 0.42;
      transform: rotate(-26deg);
    }

    .hero-petal-core {
      position: absolute;
      width: 8vw;
      height: 8vw;
      min-width: 92px;
      min-height: 92px;
      left: 57%;
      top: 49%;
      border-radius: 999px;
      background:
        radial-gradient(circle, rgba(255, 214, 120, 0.22) 0%, rgba(255, 214, 120, 0.08) 34%, transparent 72%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 66%);
      filter: blur(8px);
      opacity: 0.88;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 46% 34%, rgba(var(--brand-light-rgb), 0.22), transparent 28%),
        radial-gradient(circle at 72% 42%, rgba(var(--brand-rgb), 0.16), transparent 24%),
        linear-gradient(180deg, rgba(20, 18, 29, 0.28) 0%, rgba(20, 18, 29, 0.24) 16%, rgba(20, 18, 29, 0.76) 100%);
    }

    .hero-grid {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
      gap: clamp(18px, 2.2vw, 32px);
      align-items: center;
      min-height: 94svh;
      padding: calc(var(--header-height) + 10px) 0 20px;
    }

    .hero-copy {
      max-width: 760px;
      padding-left: clamp(44px, 6vw, 104px);
      padding-top: 0;
      align-self: center;
      justify-self: start;
      transform: translateY(var(--hero-copy-shift, 0px));
      transition: transform 0.16s linear;
    }

    .hero-brand {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      margin-bottom: 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 32px rgba(10, 6, 18, 0.18);
      max-width: max-content;
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .hero-brand::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 36%),
        radial-gradient(circle at 82% 40%, rgba(var(--brand-rgb), 0.16), transparent 28%);
      opacity: 0.72;
      pointer-events: none;
      z-index: -1;
      animation: panelAuraFloat var(--motion-slow) ease-in-out infinite;
    }

    .hero-brand:hover {
      transform: translateY(-2px);
      border-color: rgba(var(--brand-soft-rgb), 0.18);
      box-shadow: 0 18px 34px rgba(var(--brand-rgb), 0.16);
    }

    .hero-brand-copy {
      display: grid;
      gap: 4px;
    }

    html[lang="en"] .hero-brand-copy {
      gap: 0;
    }

    .hero-kicker,
    .hero-kicker-sub {
      display: block;
      color: rgba(255, 255, 255, 0.78);
    }

    .hero-kicker {
      font-size: 0.96rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--brand-4);
      text-transform: uppercase;
    }

    .hero-kicker-sub {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      color: var(--muted-soft);
      text-transform: uppercase;
    }

    html[lang="en"] .hero-kicker-sub {
      display: none;
    }

    .hero-nameplate {
      position: relative;
      display: grid;
      gap: 12px;
      margin-bottom: 18px;
    }

    .hero-nameplate::before {
      content: "";
      position: absolute;
      left: -4%;
      top: 4%;
      width: 82%;
      height: 86%;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(var(--brand-light-rgb), 0.2), rgba(var(--brand-rgb), 0.08) 42%, transparent 78%);
      filter: blur(40px);
      pointer-events: none;
      z-index: -1;
    }

    .hero-wordmark {
      display: inline-flex;
      align-items: flex-end;
      gap: clamp(8px, 1vw, 16px);
      line-height: 0.9;
      isolation: isolate;
      position: relative;
    }

    .hero-wordmark::after {
      content: "";
      position: absolute;
      left: 0;
      right: 4%;
      bottom: -10px;
      height: 1px;
      background: linear-gradient(90deg, rgba(var(--brand-soft-rgb), 0.18), rgba(var(--brand-rgb), 0.72), transparent);
      opacity: 0.72;
    }

    .hero-char {
      position: relative;
      display: inline-block;
      font-family: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
      font-size: clamp(5.7rem, 10.8vw, 9.7rem);
      font-weight: 800;
      font-synthesis: none;
      letter-spacing: -0.028em;
      line-height: 0.94;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      will-change: auto;
      text-shadow: 0 6px 14px rgba(var(--brand-rgb), 0.04);
    }

    .hero-char::before {
      content: attr(data-char);
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      color: transparent;
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      background-size: 100% 100%;
      opacity: var(--char-sheen-opacity, 0.58);
    }

    .hero-char::after {
      content: "";
      position: absolute;
      inset: 12% 14% auto 14%;
      height: 24%;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
      opacity: 0.22;
      filter: blur(10px);
      pointer-events: none;
      z-index: -1;
    }

    .hero-char.wang {
      color: #f7f3fb;
      text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 18px rgba(var(--brand-rgb), 0.04),
        0 -1px 0 rgba(var(--brand-light-rgb), 0.05);
      --char-sheen-opacity: 0.34;
    }

    .hero-char.wang::before {
      background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 238, 248, 0.94) 42%, rgba(223, 210, 234, 0.82) 100%),
        linear-gradient(140deg, rgba(var(--brand-light-rgb), 0.18) 0%, rgba(255, 255, 255, 0) 38%);
    }

    .hero-char.bao {
      color: var(--brand-deep);
      text-shadow:
        0 8px 18px rgba(var(--brand-rgb), 0.08),
        0 0 10px rgba(var(--brand-soft-rgb), 0.03);
      --char-sheen-opacity: 0.72;
    }

    .hero-char.bao::before {
      background-image:
        linear-gradient(184deg, #f1e9f9 0%, #b894d2 18%, #7e4baa 42%, var(--brand) 63%, var(--brand-deep) 100%),
        linear-gradient(144deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 32%);
    }

    .hero-char.bao::after {
      opacity: 0.34;
    }

    .hero-slogan {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      margin: 0;
      padding-left: 6px;
      font-size: clamp(1rem, 1.6vw, 1.16rem);
      font-weight: 600;
      line-height: 1.7;
      letter-spacing: 0.12em;
      color: rgba(247, 243, 251, 0.9);
      text-shadow:
        0 0 16px rgba(var(--brand-rgb), 0.08),
        0 0 28px rgba(var(--brand-soft-rgb), 0.08);
      transition: text-shadow 0.35s ease, color 0.35s ease;
      animation: sloganBreathe 3.8s ease-in-out infinite;
    }

    .hero-slogan::before {
      content: "";
      display: inline-block;
      width: 44px;
      height: 1px;
      margin-right: 14px;
      margin-bottom: 0.35em;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(var(--brand-rgb), 0.84));
      vertical-align: middle;
    }

    .hero-slogan::after {
      content: "";
      position: absolute;
      left: 48px;
      right: -12px;
      top: 52%;
      height: 74%;
      border-radius: 999px;
      background: radial-gradient(circle at 18% 50%, rgba(var(--brand-rgb), 0.2), rgba(var(--brand-light-rgb), 0.12) 34%, transparent 74%);
      filter: blur(18px);
      opacity: 0.24;
      transform: translateY(-50%);
      pointer-events: none;
      z-index: -1;
      mix-blend-mode: screen;
      animation: sloganAura 3.8s ease-in-out infinite;
    }

    .hero-slogan:hover {
      color: rgba(247, 243, 251, 0.96);
      text-shadow:
        0 0 20px rgba(var(--brand-rgb), 0.12),
        0 0 34px rgba(var(--brand-soft-rgb), 0.1);
    }

    .hero-slogan:hover::after {
      opacity: 0.34;
    }

    .hero-title,
    .section-head h2,
    .story-copy h2,
    .cta-copy h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Noto Sans SC", serif;
      letter-spacing: -0.03em;
      line-height: 0.92;
      color: var(--brand-4);
    }

    .hero-title {
      font-size: clamp(3.6rem, 6.4vw, 7rem);
      font-weight: 700;
      max-width: 8.1ch;
      letter-spacing: -0.055em;
      line-height: 0.9;
      color: var(--brand-4);
    }

    .hero-title .title-line {
      display: block;
      overflow: hidden;
      padding-bottom: 0.04em;
    }

    .hero-title .title-line-inner {
      display: block;
      transform: translateY(112%);
      filter: blur(10px);
      opacity: 0.02;
      transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.9s ease;
      transition-delay: calc(var(--reveal-delay, 0ms) + 60ms);
    }

    .hero-title .title-line:nth-child(2) .title-line-inner {
      transition-delay: calc(var(--reveal-delay, 0ms) + 150ms);
    }

    .hero-title.visible .title-line-inner {
      transform: translateY(0);
      filter: blur(0);
      opacity: 1;
    }

    .hero-title span,
    .section-head h2 span,
    .story-copy h2 span,
    .cta-copy h2 span {
      color: transparent;
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      background-image: linear-gradient(180deg, var(--brand-3) 0%, var(--brand) 58%, var(--brand-deep) 100%);
      background-size: 100% 100%;
      background-position: 50% 50%;
      text-shadow: none;
      filter:
        drop-shadow(0 0 10px rgba(var(--brand-rgb), 0.12))
        drop-shadow(0 0 22px rgba(var(--brand-rgb), 0.04));
    }

    .hero-subtitle {
      max-width: 36ch;
      margin: 18px 0 0;
      color: rgba(247, 243, 251, 0.88);
      font-size: 0.98rem;
      font-weight: 300;
      line-height: 1.92;
      letter-spacing: 0.03em;
    }

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

    .scroll-hint {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
      color: rgba(var(--brand-soft-rgb), 0.82);
      font-size: 0.8rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .scroll-hint::before {
      content: "";
      width: 42px;
      height: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .hero-aside {
      position: relative;
      display: grid;
      gap: 14px;
      margin-left: 0;
      align-self: center;
      justify-self: start;
      width: min(100%, 760px);
      transform: translateY(var(--hero-aside-shift, 0px));
      transition: transform 0.16s linear;
    }

    .hero-aside::before {
      content: "";
      position: absolute;
      inset: 6% -4% -4% 14%;
      border-radius: 40px;
      background:
        radial-gradient(circle at 18% 18%, rgba(var(--brand-soft-rgb), 0.14), transparent 28%),
        radial-gradient(circle at 82% 28%, rgba(var(--brand-rgb), 0.16), transparent 32%);
      filter: blur(48px);
      opacity: 0.84;
      pointer-events: none;
      z-index: -1;
    }

    .glass-card,
    .video-card,
    .story-panel,
    .story-note,
    .impact-card,
    .cta-panel,
    .footer-shell {
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.03), transparent 36%);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      position: relative;
      overflow: hidden;
    }

    .glass-card::before,
    .video-card::before,
    .story-panel::before,
    .story-note::before,
    .cta-panel::before,
    .footer-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 16%),
        radial-gradient(circle at 12% 8%, rgba(var(--brand-soft-rgb), 0.08), transparent 28%);
      opacity: 0.75;
      animation: panelAuraFloat var(--motion-slow) ease-in-out infinite;
    }

    .quote-card {
      --reveal-end-transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1);
      --reveal-start-transform: translate3d(0, calc(var(--parallax-shift, 0px) + 36px), 0) scale(0.97);
      padding: 28px 28px 26px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
        radial-gradient(circle at 0% 0%, rgba(var(--brand-rgb), 0.16), transparent 42%);
      box-shadow: var(--shadow-soft), 0 0 0 1px rgba(var(--brand-soft-rgb), 0.08);
      transform: translate3d(0, var(--parallax-shift, 0px), 0);
      max-width: 500px;
    }

    .quote-card::after,
    .video-card::after,
    .story-panel::after,
    .story-note::after,
    .cta-panel::after,
    .footer-shell::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.045);
      pointer-events: none;
      mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
      opacity: 0.9;
    }

    .quote-card,
    .hero-image-card,
    .story-panel,
    .cta-panel,
    .footer-shell {
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .quote-card:hover {
      transform: translate3d(0, calc(var(--parallax-shift, 0px) - 4px), 0);
      border-color: rgba(var(--brand-soft-rgb), 0.26);
      box-shadow: var(--glow-soft), 0 20px 52px rgba(var(--brand-rgb), 0.16);
    }

    .hero-image-card:hover,
    .story-panel:hover,
    .cta-panel:hover,
    .footer-shell:hover {
      transform: translateY(-4px);
      border-color: rgba(var(--brand-soft-rgb), 0.22);
      box-shadow: var(--glow-soft);
    }

    .quote-card .section-tag {
      margin-bottom: 18px;
    }

    .hero-quote {
      margin: 0;
      font-family: "Cormorant Garamond", "Noto Sans SC", serif;
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
    }

    .hero-note {
      margin: 14px 0 0;
      max-width: 31rem;
      color: rgba(247, 243, 251, 0.84);
      font-size: 0.97rem;
      line-height: 1.9;
      text-wrap: pretty;
    }

    .hero-image-card {
      --reveal-end-transform: translateY(-8px) scale(1);
      --reveal-start-transform: translateY(30px) scale(0.96);
      position: relative;
      min-height: 0;
      aspect-ratio: var(--hero-video-ratio, 16 / 10);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-right: 0;
      margin-left: 0;
      transform: translateY(-8px);
      box-shadow:
        0 22px 54px rgba(9, 6, 18, 0.24),
        0 0 0 1px rgba(var(--brand-soft-rgb), 0.08);
    }

    .hero-image-card:hover {
      transform: translateY(-12px);
    }

    .media-asset,
    .hero-feature-media {
      position: absolute;
      inset: 0;
      overflow: hidden;
      transform: translateY(var(--media-shift, 0px)) scale(calc(1.03 + var(--media-scale, 0)));
      transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
      filter: saturate(1.02) brightness(0.88);
    }

    .media-asset::before,
    .media-asset::after,
    .hero-feature-media::before,
    .hero-feature-media::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .media-asset::before,
    .hero-feature-media::before {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.11), transparent 14%),
        radial-gradient(circle at 78% 18%, rgba(var(--brand-rgb), 0.22), transparent 22%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 20px);
      opacity: 0.82;
      mix-blend-mode: screen;
    }

    .media-asset::after,
    .hero-feature-media::after {
      inset: 12%;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 30% 26%, rgba(var(--brand-soft-rgb), 0.18), transparent 24%),
        radial-gradient(circle at 74% 68%, rgba(var(--brand-rgb), 0.12), transparent 24%);
      opacity: 0.86;
      animation: panelAuraDrift 15s ease-in-out infinite;
    }

    .media-asset .media-badge,
    .media-asset .media-word,
    .hero-feature-media .media-badge,
    .hero-feature-media .media-word {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }

    .media-asset .media-badge,
    .hero-feature-media .media-badge {
      top: 18px;
      right: 26px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(12, 11, 18, 0.34);
      backdrop-filter: blur(12px);
      color: rgba(248, 244, 251, 0.88);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .media-asset .media-word,
    .hero-feature-media .media-word {
      left: 18px;
      bottom: 18px;
      font-family: "Cormorant Garamond", "Noto Sans SC", serif;
      font-size: clamp(2.3rem, 5vw, 4rem);
      line-height: 0.9;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.16);
      text-shadow: 0 0 24px rgba(var(--brand-rgb), 0.08);
    }

    .hero-image-card:hover .media-asset,
    .story-panel:hover .media-asset {
      transform: translateY(var(--media-shift, 0px)) scale(calc(1.07 + var(--media-scale, 0)));
      filter: saturate(1.06) brightness(0.94);
    }

    .hero-feature-media {
      background:
        radial-gradient(circle at 18% 20%, rgba(var(--brand-soft-rgb), 0.16), transparent 18%),
        radial-gradient(circle at 74% 22%, rgba(var(--brand-rgb), 0.16), transparent 24%),
        linear-gradient(142deg, #2b2538 0%, #1d1a2b 48%, #14131b 100%);
      isolation: isolate;
      z-index: 0;
      transform: none;
      filter: brightness(0.92);
    }

    .hero-feature-media::before {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(var(--brand-soft-rgb), 0.16), transparent 18%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 22px);
      mix-blend-mode: screen;
    }

    .hero-feature-media::after {
      inset: 10%;
      border-radius: 24px;
    }

    .hero-feature-video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      filter: brightness(0.86);
      transform: none;
      transition: filter 0.35s ease;
      background: linear-gradient(135deg, rgba(17, 17, 24, 0.82), rgba(30, 25, 44, 0.78));
      will-change: auto;
    }

    .hero-image-card:hover .hero-feature-video {
      filter: brightness(0.9);
    }

    .hero-image-card:hover .hero-feature-media {
      transform: none;
      filter: brightness(0.95);
    }

    .hero-feature-media .media-badge {
      left: 20px;
      right: auto;
    }

    .hero-feature-media .media-word {
      font-size: clamp(2rem, 4.6vw, 3.2rem);
      letter-spacing: 0.09em;
      color: rgba(255, 255, 255, 0.12);
    }

    .hero-media-controls {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 3;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      max-width: calc(100% - 36px);
      pointer-events: auto;
    }

    .hero-media-control {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 13px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(12, 11, 18, 0.46);
      backdrop-filter: blur(12px);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .hero-media-control .control-label {
      white-space: nowrap;
    }

    .hero-media-control:hover {
      transform: translateY(-2px);
      border-color: rgba(var(--brand-rgb), 0.34);
      background: rgba(18, 16, 28, 0.64);
      box-shadow: 0 16px 32px rgba(var(--brand-rgb), 0.18);
    }

    .hero-media-control:focus-visible {
      outline: 2px solid rgba(var(--brand-soft-rgb), 0.5);
      outline-offset: 2px;
    }

    .hero-media-control:active {
      transform: translateY(0) scale(0.98);
    }

    .hero-media-control .control-icon {
      display: none;
    }

    .hero-image-card.is-unmuted .hero-media-control.sound {
      border-color: rgba(var(--brand-rgb), 0.34);
      background: rgba(var(--brand-rgb), 0.2);
      box-shadow: 0 16px 34px rgba(var(--brand-rgb), 0.18);
    }

    .asset-hero {
      background:
        radial-gradient(circle at 18% 20%, rgba(var(--brand-soft-rgb), 0.26), transparent 18%),
        radial-gradient(circle at 74% 22%, rgba(var(--brand-rgb), 0.22), transparent 24%),
        linear-gradient(142deg, #2b2538 0%, #1d1a2b 48%, #14131b 100%);
    }

    .asset-hero::before {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(var(--brand-soft-rgb), 0.18), transparent 18%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 22px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 22px);
    }

    .asset-story {
      background:
        radial-gradient(circle at 76% 18%, rgba(var(--brand-rgb), 0.24), transparent 24%),
        radial-gradient(circle at 24% 74%, rgba(var(--brand-soft-rgb), 0.18), transparent 20%),
        linear-gradient(148deg, #1b1828 0%, #2a223a 44%, #14131b 100%);
    }

    .asset-story::before {
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.09), transparent 36%),
        radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.08), transparent 14%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 18px);
    }

    .asset-story .media-word {
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      letter-spacing: 0.08em;
    }

    .hero-image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(13, 13, 18, 0.08), rgba(13, 13, 18, 0.7)),
        radial-gradient(circle at 70% 20%, rgba(var(--brand-light-rgb), 0.24), transparent 30%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-image-copy {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 2;
    }

    .hero-image-copy strong {
      display: block;
      margin: 0 0 8px;
      font-size: 1.12rem;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .video-brand-kicker {
      display: inline-flex;
      align-items: center;
      margin: 0 0 8px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .hero-image-copy .video-brand-kicker {
      margin-bottom: 10px;
    }

    .hero-feature-title,
    .video-copy h3 {
      margin: 0 0 8px;
      font-size: 1.24rem;
      font-weight: 600;
      line-height: 1.18;
      letter-spacing: -0.02em;
    }

    .hero-feature-title {
      font-size: clamp(1.26rem, 1.8vw, 1.52rem);
    }

    .video-title-person,
    .video-title-topic {
      display: inline;
      color: transparent;
      -webkit-text-fill-color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      background-image: linear-gradient(92deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 226, 245, 0.94) 46%, rgba(var(--brand-soft-rgb), 0.98) 100%);
    }

    .video-title-person {
      font-weight: 650;
    }

    .video-title-topic {
      font-weight: 500;
    }

    .video-title-dot {
      display: inline;
      margin: 0 0.38em;
      color: rgba(var(--brand-soft-rgb), 0.78);
      -webkit-text-fill-color: rgba(var(--brand-soft-rgb), 0.78);
      font-weight: 500;
    }

    .hero-image-copy p {
      margin: 0;
      max-width: 27rem;
      color: rgba(247, 243, 251, 0.82);
      line-height: 1.82;
      font-size: 0.94rem;
      text-wrap: pretty;
    }

    section {
      position: relative;
      padding: 84px 0;
    }

    section:not(.hero)::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1120px, calc(100% - 48px));
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(var(--brand-soft-rgb), 0.2), transparent);
      opacity: 0.72;
      pointer-events: none;
    }

    #causes {
      padding-top: 74px;
      padding-bottom: 64px;
    }

    #causes,
    #story {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
    }

    #videos,
    #impact,
    .cta {
      background:
        radial-gradient(circle at 14% 10%, rgba(var(--brand-rgb), 0.07), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
    }

    #causes::after,
    #videos::after,
    #story::after,
    #impact::after,
    .cta::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.7;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18%, transparent 80%, rgba(255, 255, 255, 0.012)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 42%);
      mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
      gap: 28px;
      align-items: end;
      margin-bottom: 32px;
    }

    .section-head > div:first-child {
      position: relative;
    }

    .section-tag {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      max-width: max-content;
      padding: 9px 14px;
      margin-bottom: 14px;
      border-radius: 999px;
      border: 1px solid rgba(var(--brand-soft-rgb), 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 0% 50%, rgba(var(--brand-rgb), 0.18), transparent 56%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 28px rgba(var(--brand-rgb), 0.12);
      backdrop-filter: blur(14px);
      color: rgba(247, 243, 251, 0.96);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.19em;
      text-transform: uppercase;
      text-shadow: 0 0 18px rgba(var(--brand-rgb), 0.14);
      overflow: hidden;
    }

    .section-tag::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--brand-3), var(--brand));
      box-shadow:
        0 0 0 1px rgba(var(--brand-soft-rgb), 0.18),
        0 0 12px rgba(var(--brand-rgb), 0.3);
      flex: 0 0 auto;
      animation: tagPulse var(--motion-fast) ease-in-out infinite;
    }

    .section-tag::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 42%);
      opacity: 0.72;
      pointer-events: none;
      z-index: -1;
      animation: tagSheen var(--motion-slow) ease-in-out infinite;
    }

    .section-head h2 {
      font-size: clamp(3rem, 5.8vw, 5rem);
      font-weight: 700;
      line-height: 0.9;
      text-wrap: balance;
    }

    .section-lead {
      margin: 0;
      max-width: 38ch;
      color: rgba(247, 243, 251, 0.86);
      font-size: 0.99rem;
      font-weight: 300;
      line-height: 1.92;
      letter-spacing: 0.015em;
      text-wrap: pretty;
    }

    .section-head > * {
      transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease, filter 0.9s ease;
    }

    .section-head:not(.visible) > *:first-child {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(12px);
    }

    .section-head:not(.visible) > .section-lead {
      opacity: 0;
      transform: translateY(34px);
      filter: blur(10px);
    }

    .section-head.visible > *:first-child {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      transition-delay: 40ms;
    }

    .section-head.visible > .section-lead {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      transition-delay: 140ms;
    }

    #causes .section-head > div:first-child {
      transform: none;
    }

    #videos .section-head > div:first-child,
    #impact .section-head > div:first-child {
      transform: translateX(8px);
    }

    #causes .section-lead {
      transform: none;
    }

    #videos,
    #impact {
      position: relative;
    }

    #videos::before,
    #impact::before {
      content: "";
      position: absolute;
      inset: auto;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      filter: blur(80px);
      pointer-events: none;
      opacity: 0.9;
    }

    #videos::before {
      top: 70px;
      right: 8%;
      background: rgba(var(--brand-rgb), 0.15);
    }

    #impact::before {
      top: 120px;
      left: 4%;
      background: rgba(var(--brand-soft-rgb), 0.1);
    }

    #causes .section-head {
      margin-bottom: 20px;
      gap: 22px 30px;
      grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    }

    #causes .section-head h2 {
      max-width: none;
      font-size: clamp(2.5rem, 4.7vw, 4.1rem);
      line-height: 0.9;
      white-space: nowrap;
    }

    #causes .section-lead {
      max-width: 38ch;
      justify-self: end;
    }

    .cause-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px 28px;
      align-items: start;
      perspective: 1400px;
      transform-style: preserve-3d;
    }

    .cause-card {
      --cause-accent: rgba(var(--brand-rgb), 0.18);
      --cause-tilt-x: 0deg;
      --cause-tilt-y: 0deg;
      --cause-shift-x: 0px;
      --cause-shift-y: 0px;
      grid-column: span 6;
      position: relative;
      min-height: auto;
      padding: 20px 20px 22px 28px;
      border: 1px solid rgba(255, 255, 255, 0.035);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
        radial-gradient(circle at 18% 0%, rgba(var(--brand-rgb), 0.05), transparent 40%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.018),
        0 12px 28px rgba(8, 5, 16, 0.09);
      border-radius: 26px;
      overflow: hidden;
      display: grid;
      gap: 0;
      align-content: start;
      isolation: isolate;
      transform-style: preserve-3d;
      transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), filter 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease, background 0.34s ease;
      transform: perspective(1400px) translate3d(var(--cause-shift-x), var(--cause-shift-y), 0) rotateX(var(--cause-tilt-x)) rotateY(var(--cause-tilt-y));
    }

    .cause-card-body {
      display: grid;
      gap: 0;
      animation: causeFloatA 8.2s ease-in-out infinite;
      will-change: transform;
      position: relative;
      z-index: 1;
    }

    .cause-card:nth-child(1) {
      grid-column: 1 / span 5;
    }

    .cause-card:nth-child(2) {
      grid-column: 7 / span 6;
      margin-top: 28px;
    }

    .cause-card:nth-child(3) {
      grid-column: 2 / span 5;
      margin-top: 6px;
    }

    .cause-card:nth-child(4) {
      grid-column: 8 / span 5;
      margin-top: 34px;
    }

    .cause-card:nth-child(2) .cause-card-body {
      animation-name: causeFloatB;
      animation-duration: 9.1s;
      animation-delay: -1.1s;
    }

    .cause-card:nth-child(3) .cause-card-body {
      animation-name: causeFloatC;
      animation-duration: 8.8s;
      animation-delay: -2s;
    }

    .cause-card:nth-child(4) .cause-card-body {
      animation-name: causeFloatD;
      animation-duration: 9.6s;
      animation-delay: -2.6s;
    }

    .cause-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01) 62%),
        radial-gradient(circle at 18% 24%, var(--cause-accent), transparent 26%);
      opacity: 0.34;
      transition: opacity 0.32s ease, border-color 0.32s ease, background 0.32s ease;
      z-index: -2;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .cause-card-body::before {
      content: "";
      position: absolute;
      inset: -14px -10px auto auto;
      width: 88px;
      height: 88px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(var(--brand-soft-rgb), 0.12), transparent 72%);
      opacity: 0.64;
      filter: blur(18px);
      pointer-events: none;
      z-index: -1;
    }

    .cause-card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 18px;
      bottom: 18px;
      width: 1px;
      background: linear-gradient(180deg, rgba(var(--brand-soft-rgb), 0.22), rgba(var(--brand-rgb), 0.74), rgba(255, 255, 255, 0.06));
      opacity: 0.4;
      transition: opacity 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
    }

    .cause-card:hover {
      filter: saturate(1.03);
      border-color: rgba(var(--brand-soft-rgb), 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
        radial-gradient(circle at 18% 0%, rgba(var(--brand-rgb), 0.08), transparent 42%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.028),
        0 22px 42px rgba(var(--brand-rgb), 0.12),
        0 0 0 1px rgba(var(--brand-soft-rgb), 0.06);
    }

    .cause-card:hover::before {
      opacity: 0.94;
      box-shadow: 0 18px 36px rgba(var(--brand-rgb), 0.1);
    }

    .cause-card:hover::after {
      opacity: 1;
      box-shadow: 0 0 18px rgba(var(--brand-rgb), 0.24);
      transform: scaleY(1.02);
    }

    .cause-card[data-cause="elderly"] {
      --cause-accent: rgba(var(--brand-soft-rgb), 0.18);
    }

    .cause-card[data-cause="orphanage"] {
      --cause-accent: rgba(255, 255, 255, 0.09);
    }

    .cause-card[data-cause="animal"] {
      --cause-accent: rgba(var(--brand-rgb), 0.2);
    }

    .cause-card[data-cause="community"] {
      --cause-accent: rgba(var(--brand-light-rgb), 0.16);
    }

    .cause-index {
      position: static;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      color: rgba(var(--brand-soft-rgb), 0.7);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: color 0.28s ease, transform 0.28s ease;
      transform: translateZ(18px);
    }

    .cause-index::after {
      content: "";
      width: 46px;
      height: 1px;
      background: linear-gradient(90deg, rgba(var(--brand-soft-rgb), 0.42), rgba(var(--brand-rgb), 0.18));
      transition: width 0.28s ease, background 0.28s ease;
    }

    .cause-card:hover .cause-index {
      color: rgba(var(--brand-soft-rgb), 0.9);
      transform: translateX(2px);
    }

    .cause-card:hover .cause-index::after {
      width: 56px;
      background: linear-gradient(90deg, rgba(var(--brand-soft-rgb), 0.62), rgba(var(--brand-rgb), 0.36));
    }

    .cause-card h3 {
      margin: 0 0 10px;
      font-family: "Cormorant Garamond", "Noto Sans SC", serif;
      font-size: clamp(1.85rem, 3vw, 2.55rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 0.96;
      color: var(--brand-4);
      transition: transform 0.28s ease, color 0.28s ease, text-shadow 0.28s ease;
      transform: translateZ(28px);
    }

    .cause-card:hover h3 {
      transform: translateY(-1px);
      color: #ffffff;
      text-shadow: 0 0 20px rgba(var(--brand-rgb), 0.12);
    }

    .cause-card p {
      margin: 0;
      max-width: 24ch;
      color: rgba(244, 239, 248, 0.72);
      font-size: 0.96rem;
      font-weight: 300;
      line-height: 1.72;
      letter-spacing: 0.01em;
      transition: color 0.28s ease;
      transform: translateZ(16px);
    }

    .cause-card:hover p {
      color: rgba(255, 255, 255, 0.84);
    }

    .impact-card p,
    .footer-shell p,
    .footer-links a {
      color: var(--muted);
      line-height: 1.72;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .video-card {
      --video-offset: 0px;
      position: relative;
      min-height: 0;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 26px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.022)),
        radial-gradient(circle at 22% 0%, rgba(var(--brand-rgb), 0.08), transparent 34%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 34px rgba(8, 5, 16, 0.14);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
      transform: translateY(var(--video-offset));
      will-change: auto;
    }

    .video-card:hover {
      transform: translateY(var(--video-offset)) scale(1.03);
      border-color: rgba(var(--brand-rgb), 0.38);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        var(--shadow-soft),
        0 20px 52px rgba(var(--brand-rgb), 0.22);
    }

    .video-card::after {
      inset: 8px;
      border-radius: 20px;
      opacity: 0.62;
    }

    .video-frame {
      position: relative;
      height: 100%;
      min-height: 0;
      aspect-ratio: var(--video-shell-ratio, 16 / 10);
      border-radius: 22px;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 16%, rgba(var(--brand-rgb), 0.12), transparent 28%),
        #0f1118;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .video-frame::before {
      content: "";
      position: absolute;
      inset: -12%;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.07), transparent 18%),
        radial-gradient(circle at 76% 22%, rgba(var(--brand-rgb), 0.18), transparent 24%),
        radial-gradient(circle at 60% 76%, rgba(var(--brand-soft-rgb), 0.09), transparent 18%);
      filter: blur(32px);
      opacity: 0.78;
      animation: mediaAuraDrift 14s ease-in-out infinite alternate;
      pointer-events: none;
    }

    .video-card:hover .video-frame,
    .video-frame:hover,
    .video-card.is-playing .video-frame {
      border-color: rgba(var(--brand-rgb), 0.36);
      box-shadow: 0 0 0 1px rgba(var(--brand-rgb), 0.16), 0 20px 44px rgba(var(--brand-rgb), 0.2);
    }

    .video-frame video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
      filter: brightness(0.84);
      transform: none;
      transition: filter 0.35s ease;
      background: linear-gradient(135deg, rgba(17, 17, 24, 0.8), rgba(30, 25, 44, 0.72));
      will-change: auto;
    }

    .video-card:hover .video-frame video {
      filter: brightness(0.9);
    }

    .video-card.is-playing .video-frame video {
      filter: brightness(0.94);
    }

    .video-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(18, 19, 26, 0.08), rgba(18, 19, 26, 0.72)),
        radial-gradient(circle at 74% 18%, rgba(var(--brand-light-rgb), 0.2), transparent 30%);
      pointer-events: none;
      transition: opacity 0.32s ease, background 0.32s ease;
    }

    .video-card:hover .video-frame::after {
      background:
        linear-gradient(180deg, rgba(18, 19, 26, 0.06), rgba(18, 19, 26, 0.66)),
        radial-gradient(circle at 74% 18%, rgba(var(--brand-light-rgb), 0.24), transparent 30%);
    }

    .video-card.is-playing .video-frame::after {
      background:
        linear-gradient(180deg, rgba(18, 19, 26, 0.04), rgba(18, 19, 26, 0.3)),
        radial-gradient(circle at 74% 18%, rgba(var(--brand-light-rgb), 0.18), transparent 30%);
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 18px;
      transition: opacity 0.3s ease, background 0.3s ease;
      pointer-events: auto;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%, rgba(12, 13, 20, 0.2) 100%);
    }

    .video-card:hover .video-overlay {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 34%, rgba(12, 13, 20, 0.16) 100%);
    }

    .video-top {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 16px;
      transition: opacity 0.26s ease, transform 0.26s ease;
    }

    .video-label,
    .video-length {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .video-bottom {
      display: grid;
      gap: 14px;
      align-items: end;
    }

    .video-copy {
      max-width: 28rem;
      transition: opacity 0.26s ease, transform 0.26s ease;
    }

    .video-copy p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      line-height: 1.72;
      font-size: 0.92rem;
    }

    .video-fullscreen-btn {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 4;
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(var(--brand-rgb), 0.32);
      background: rgba(17, 16, 25, 0.46);
      backdrop-filter: blur(14px);
      color: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 32px rgba(var(--brand-rgb), 0.12);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
      pointer-events: auto;
    }

    .video-fullscreen-btn::before {
      content: "⛶";
      font-size: 1.08rem;
      line-height: 1;
      transform: translateY(-1px);
    }

    .video-fullscreen-btn:hover {
      transform: translateY(-2px) scale(1.05);
      border-color: rgba(var(--brand-soft-rgb), 0.54);
      background: rgba(24, 20, 36, 0.62);
      box-shadow: 0 18px 34px rgba(var(--brand-rgb), 0.18), 0 0 24px rgba(var(--brand-soft-rgb), 0.14);
    }

    .video-fullscreen-btn:focus-visible {
      outline: 2px solid rgba(var(--brand-soft-rgb), 0.58);
      outline-offset: 2px;
    }

    .video-fullscreen-btn:active {
      transform: scale(0.97);
    }

    .play-button {
      position: relative;
      width: 72px;
      height: 72px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
      pointer-events: auto;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, width 0.22s ease, height 0.22s ease;
    }

    .play-button > span {
      display: none;
    }

    .play-button {
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .play-button::after {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

    .play-button:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 24px 44px rgba(var(--brand-rgb), 0.24), 0 0 30px rgba(var(--brand-soft-rgb), 0.2);
    }

    .video-card:hover .play-button {
      box-shadow: 0 24px 44px rgba(var(--brand-rgb), 0.2), 0 0 26px rgba(var(--brand-soft-rgb), 0.16);
    }

    .play-button::before {
      content: "";
      position: absolute;
      width: 18px;
      height: 20px;
      background: #0f1017;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
      transform: translateX(2px);
      transition: transform 0.22s ease, clip-path 0.22s ease, width 0.22s ease, height 0.22s ease, background 0.22s ease;
    }

    .play-button::after {
      content: "";
      position: absolute;
      width: 4px;
      height: 18px;
      background: #ffffff;
      border-radius: 999px;
      transform: translateX(5px);
      opacity: 0;
      transition: opacity 0.22s ease, transform 0.22s ease, width 0.22s ease, height 0.22s ease;
    }

    .video-status,
    .video-pause-hint {
      position: absolute;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(15, 17, 24, 0.46);
      backdrop-filter: blur(14px);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.76rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.26s ease, transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
      pointer-events: none;
    }

    .video-status {
      top: 18px;
      left: 18px;
    }

    .video-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--brand-3);
      box-shadow: 0 0 16px rgba(var(--brand-soft-rgb), 0.52);
    }

    .video-pause-hint {
      right: 80px;
      bottom: 18px;
      background: rgba(15, 17, 24, 0.34);
    }

    .video-card.is-playing .video-top,
    .video-card.is-playing .video-copy {
      opacity: 0;
      transform: translateY(12px);
    }

    .video-card.is-playing .video-overlay {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 42%, rgba(12, 13, 20, 0.08) 100%);
    }

    .video-card.is-playing .video-status {
      opacity: 1;
      transform: translateY(0);
    }

    .video-card.is-playing .play-button {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
    }

    .video-card.is-playing .play-button::before {
      width: 4px;
      height: 18px;
      clip-path: none;
      background: #ffffff;
      transform: translateX(-5px);
    }

    .video-card.is-playing .play-button::after {
      opacity: 1;
      transform: translateX(5px);
    }

    .video-card.is-playing:hover .video-pause-hint,
    .video-card.is-playing:focus-within .video-pause-hint {
      opacity: 1;
      transform: translateY(0);
    }

    .story-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
      gap: 20px;
      align-items: stretch;
    }

    .story-panel {
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 492px;
      margin-left: -18px;
    }

    .story-media {
      position: relative;
      min-height: 492px;
      height: 100%;
    }

    .story-media::before {
      content: "";
      position: absolute;
      inset: -10%;
      background:
        radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.08), transparent 16%),
        radial-gradient(circle at 78% 18%, rgba(var(--brand-rgb), 0.18), transparent 22%),
        radial-gradient(circle at 68% 78%, rgba(var(--brand-soft-rgb), 0.08), transparent 18%);
      filter: blur(34px);
      opacity: 0.68;
      animation: mediaAuraDrift 16s ease-in-out infinite alternate;
      pointer-events: none;
    }

    .story-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.06), rgba(11, 11, 11, 0.7)),
        linear-gradient(115deg, rgba(11, 11, 11, 0.6), transparent 58%);
    }

    .story-copy {
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 30px;
      max-width: 500px;
      z-index: 1;
    }

    .story-copy h2 {
      font-size: clamp(2.7rem, 5.4vw, 4.6rem);
      font-weight: 700;
      margin-bottom: 14px;
    }

    .story-copy p,
    .story-note p {
      margin: 0 0 12px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.82;
      font-weight: 300;
    }

    .story-notes {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .story-note {
      padding: 22px 24px;
      border-radius: var(--radius-lg);
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .story-note:first-child {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
        radial-gradient(circle at 18% 0%, rgba(var(--brand-rgb), 0.12), transparent 44%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 16px 38px rgba(var(--brand-rgb), 0.12);
    }

    .story-note:hover {
      transform: translateY(-3px);
      border-color: rgba(var(--brand-rgb), 0.36);
      box-shadow: var(--shadow-soft), 0 18px 46px rgba(var(--brand-rgb), 0.16);
    }

    .story-note strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.04rem;
      font-weight: 700;
    }

    .story-quote {
      margin: 0;
      font-family: "Cormorant Garamond", "Noto Sans SC", serif;
      font-size: clamp(1.9rem, 3.6vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.88fr 0.92fr;
      grid-template-areas:
        "feature compact-a compact-b"
        "feature compact-c compact-c";
      gap: 16px 22px;
      align-items: end;
    }

    .impact-card {
      position: relative;
      padding: 14px 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      transition: transform 0.28s ease, text-shadow 0.28s ease;
    }

    .impact-card::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(var(--brand-soft-rgb), 0.34), rgba(255, 255, 255, 0.04));
    }

    .impact-card:hover {
      transform: translateY(-4px);
      text-shadow: 0 0 22px rgba(var(--brand-soft-rgb), 0.1);
    }

    .impact-card:hover::before {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(var(--brand-soft-rgb), 0.52), rgba(255, 255, 255, 0.06));
    }

    .impact-card.featured {
      grid-area: feature;
      padding: 26px 24px 22px;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(var(--brand-rgb), 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 44px rgba(8, 5, 16, 0.16);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .impact-card.featured::after {
      content: "";
      position: absolute;
      inset: -14%;
      background:
        radial-gradient(circle at 14% 12%, rgba(var(--brand-soft-rgb), 0.14), transparent 18%),
        radial-gradient(circle at 86% 24%, rgba(var(--brand-rgb), 0.18), transparent 20%),
        radial-gradient(circle at 70% 86%, rgba(255, 255, 255, 0.05), transparent 22%);
      filter: blur(34px);
      opacity: 0.82;
      animation: featuredFieldDrift 17s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: -1;
    }

    .impact-card.compact-a {
      grid-area: compact-a;
      transform: translateY(14px);
    }

    .impact-card.compact-a:hover {
      transform: translateY(10px);
    }

    .impact-card.compact-b {
      grid-area: compact-b;
      transform: translateY(-10px);
    }

    .impact-card.compact-b:hover {
      transform: translateY(-14px);
    }

    .impact-card.compact-c {
      grid-area: compact-c;
      padding-top: 24px;
      margin-left: 18px;
    }

    .impact-card.compact-c:hover {
      transform: translateY(-4px);
    }

    .impact-label {
      display: inline-block;
      color: var(--brand-3);
      font-size: 0.74rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .impact-card strong {
      display: block;
      margin: 14px 0 6px;
      font-size: clamp(2.8rem, 4.6vw, 4.8rem);
      line-height: 0.9;
      color: var(--text);
      text-shadow: 0 0 28px rgba(var(--brand-soft-rgb), 0.14);
      letter-spacing: -0.05em;
    }

    .impact-card.featured strong {
      font-size: clamp(4.2rem, 8vw, 7.2rem);
      letter-spacing: -0.07em;
      margin-top: 16px;
    }

    .impact-card.featured::before {
      left: 24px;
      right: 24px;
    }

    .impact-card p {
      margin: 0;
      max-width: 24ch;
      font-weight: 300;
      line-height: 1.82;
    }

    .cta {
      padding-top: 72px;
      padding-bottom: 76px;
    }

    .cta-panel {
      border-radius: var(--radius-xl);
      padding: 26px 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      background:
        radial-gradient(circle at 0% 0%, rgba(var(--brand-rgb), 0.24), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(var(--brand-soft-rgb), 0.12), transparent 28%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
      box-shadow: var(--shadow), 0 0 0 1px rgba(var(--brand-soft-rgb), 0.1);
    }

    .cta-panel:hover {
      box-shadow:
        var(--shadow),
        0 0 0 1px rgba(var(--brand-soft-rgb), 0.14),
        0 22px 50px rgba(var(--brand-rgb), 0.18);
    }

    .cta-copy h2 {
      font-size: clamp(2.7rem, 5vw, 4.5rem);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .cta-copy p {
      margin: 0;
      max-width: 40ch;
      color: var(--muted-soft);
      line-height: 1.78;
      font-weight: 300;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-end;
    }

    footer {
      padding: 0 0 24px;
    }

    .footer-shell {
      border-radius: var(--radius-lg);
      padding: 24px 24px 22px;
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 18px;
      align-items: start;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 0% 0%, rgba(var(--brand-rgb), 0.1), transparent 34%);
    }

    .footer-shell p {
      margin: 12px 0 0;
      font-size: 0.94rem;
      font-weight: 300;
    }

    .footer-title {
      margin: 0 0 12px;
      color: var(--brand-3);
      font-size: 0.84rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .footer-social-note {
      margin: 0 0 14px;
      max-width: 30ch;
      color: rgba(244, 239, 248, 0.72);
      font-size: 0.88rem;
      line-height: 1.72;
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .social-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 56px;
      min-width: 0;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 0% 0%, rgba(var(--brand-rgb), 0.08), transparent 42%);
      box-shadow: var(--shadow-soft), 0 0 0 1px rgba(var(--brand-soft-rgb), 0.05);
      color: var(--brand-4);
      transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
      animation: socialIdleFloat 9.6s ease-in-out infinite;
      flex: 1 1 180px;
    }

    .social-pill:nth-child(2) {
      animation-delay: -1.8s;
    }

    .social-pill:nth-child(3) {
      animation-delay: -3.4s;
    }

    .social-pill svg {
      width: 19px;
      height: 19px;
      flex: 0 0 auto;
      fill: currentColor;
      opacity: 0.96;
    }

    .social-copy {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .social-copy strong {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #ffffff;
    }

    .social-copy small {
      color: rgba(244, 239, 248, 0.64);
      font-size: 0.74rem;
      letter-spacing: 0.04em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .social-pill:hover {
      transform: translateY(-2px);
      border-color: rgba(var(--brand-soft-rgb), 0.24);
      box-shadow: var(--glow-soft);
      background:
        linear-gradient(180deg, rgba(var(--brand-soft-rgb), 0.14), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 0% 0%, rgba(var(--brand-rgb), 0.12), transparent 42%);
    }

    .social-pill:hover .social-copy small {
      color: rgba(255, 255, 255, 0.82);
    }

    .social-pill.facebook:hover {
      color: #f6effb;
    }

    .social-pill.instagram:hover {
      color: #fff3fb;
    }

    .social-pill.tiktok:hover {
      color: #fbf4ff;
    }

    .interactive-shell {
      --glow-x: 50%;
      --glow-y: 50%;
      --glow-opacity: 0;
      --glow-scale: 0.82;
      --edge-angle: 180deg;
      --edge-shift-x: 0px;
      --edge-shift-y: 0px;
      position: relative;
      isolation: isolate;
    }

    .interactive-shell > .cursor-glow {
      position: absolute;
      inset: -1px;
      padding: 1px;
      border-radius: inherit;
      background:
        conic-gradient(
          from var(--edge-angle) at 50% 50%,
          transparent 0deg,
          rgba(var(--brand-soft-rgb), 0.08) 18deg,
          rgba(var(--brand-soft-rgb), 0.28) 42deg,
          rgba(var(--brand-rgb), 0.52) 78deg,
          rgba(var(--brand-soft-rgb), 0.24) 112deg,
          rgba(var(--brand-soft-rgb), 0.06) 144deg,
          transparent 194deg,
          rgba(var(--brand-rgb), 0.16) 286deg,
          transparent 360deg
        ),
        radial-gradient(circle at 0% 0%, rgba(var(--brand-soft-rgb), 0.16), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(var(--brand-rgb), 0.18), transparent 28%),
        radial-gradient(circle at 100% 100%, rgba(var(--brand-soft-rgb), 0.14), transparent 30%),
        radial-gradient(circle at 0% 100%, rgba(var(--brand-rgb), 0.14), transparent 30%);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      transform: translate3d(var(--edge-shift-x), var(--edge-shift-y), 0) scale(var(--glow-scale));
      filter: blur(0.8px) saturate(1.08);
      opacity: calc(var(--glow-opacity) * 0.95);
      transition: opacity 0.24s ease, transform 0.28s ease, filter 0.28s ease;
      pointer-events: none;
      z-index: 3;
      mix-blend-mode: screen;
    }

    .interactive-shell:hover > .cursor-glow {
      opacity: var(--glow-opacity);
    }

    .interactive-shell > .cursor-sheen {
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      background:
        radial-gradient(320px 180px at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.08), transparent 62%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 42%);
      opacity: calc(var(--glow-opacity) * 0.44);
      transform: translate3d(calc(var(--edge-shift-x) * 0.45), calc(var(--edge-shift-y) * 0.45), 0) scale(1.01);
      filter: blur(2px);
      transition: opacity 0.24s ease, transform 0.28s ease;
      pointer-events: none;
      z-index: 1;
      mix-blend-mode: screen;
    }

    .footer-links a {
      transition: color 0.22s ease, transform 0.22s ease;
    }

    .footer-links a:hover {
      color: var(--text);
      transform: translateX(2px);
    }

    .fade-up {
      opacity: 0;
      transform: var(--reveal-start-transform, translate3d(0, 26px, 0) scale(0.985));
      filter: blur(var(--reveal-blur, 12px));
      transition:
        opacity var(--reveal-duration, 0.9s) cubic-bezier(0.22, 1, 0.36, 1),
        transform var(--reveal-duration, 0.9s) cubic-bezier(0.22, 1, 0.36, 1),
        filter var(--reveal-duration, 0.9s) cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: transform, opacity, filter;
    }

    .fade-up.visible {
      opacity: 1;
      transform: var(--reveal-end-transform, translate3d(0, 0, 0) scale(1));
      filter: blur(0);
    }

    .reveal-chip {
      --reveal-start-transform: translate3d(0, 18px, 0) scale(0.98);
      --reveal-blur: 8px;
      --reveal-duration: 0.78s;
    }

    .reveal-copy {
      --reveal-start-transform: translate3d(0, 24px, 0) scale(0.992);
      --reveal-blur: 8px;
      --reveal-duration: 0.82s;
    }

    .reveal-title {
      --reveal-start-transform: translate3d(0, 34px, 0) scale(0.985);
      --reveal-blur: 16px;
      --reveal-duration: 1.02s;
    }

    .reveal-media {
      --reveal-start-transform: translate3d(0, 40px, 0) scale(0.96);
      --reveal-blur: 16px;
      --reveal-duration: 1s;
    }

    .reveal-card {
      --reveal-start-transform: translate3d(0, 34px, 0) scale(0.97);
      --reveal-blur: 12px;
      --reveal-duration: 0.92s;
    }

    .reveal-stat {
      --reveal-start-transform: translate3d(0, 32px, 0) scale(0.98);
      --reveal-blur: 10px;
      --reveal-duration: 0.96s;
    }

    .cause-card {
      --reveal-end-transform: translate3d(0, 0, 0) scale(1);
      --reveal-start-transform: translate3d(0, 28px, 0) scale(0.985);
    }

    .video-card {
      --reveal-end-transform: translateY(var(--video-offset)) scale(1);
      --reveal-start-transform: translateY(calc(var(--video-offset) + 36px)) scale(0.965);
    }

    .impact-card.featured {
      --reveal-end-transform: translateY(0) scale(1);
      --reveal-start-transform: translateY(34px) scale(0.97);
    }

    .impact-card.compact-a {
      --reveal-end-transform: translateY(14px) scale(1);
      --reveal-start-transform: translateY(42px) scale(0.97);
    }

    .impact-card.compact-b {
      --reveal-end-transform: translateY(-10px) scale(1);
      --reveal-start-transform: translateY(22px) scale(0.97);
    }

    .impact-card.compact-c {
      --reveal-end-transform: translateY(0) scale(1);
      --reveal-start-transform: translateY(34px) scale(0.97);
    }

    .impact-card.visible strong {
      animation: statGlow 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes statGlow {
      0% {
        transform: translateY(12px);
        opacity: 0.2;
        text-shadow: 0 0 0 rgba(var(--brand-soft-rgb), 0);
      }
      100% {
        transform: translateY(0);
        opacity: 1;
        text-shadow: 0 0 28px rgba(var(--brand-soft-rgb), 0.14);
      }
    }

    @keyframes brandFloatA {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -4px, 0);
      }
    }

    @keyframes brandFloatB {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, 4px, 0);
      }
    }

    @keyframes causeFloatA {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -8px, 0);
      }
    }

    @keyframes causeFloatB {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, 9px, 0);
      }
    }

    @keyframes causeFloatC {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -6px, 0);
      }
    }

    @keyframes causeFloatD {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, 7px, 0);
      }
    }

    @keyframes panelAuraFloat {
      0%,
      100% {
        opacity: 0.68;
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        opacity: 0.92;
        transform: translate3d(0, -8px, 0) scale(1.015);
      }
    }

    @keyframes panelAuraDrift {
      0%,
      100% {
        opacity: 0.76;
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        opacity: 0.94;
        transform: translate3d(8px, -10px, 0) scale(1.03);
      }
    }

    @keyframes heroLightDrift {
      0%,
      100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.7;
      }
      50% {
        transform: translate3d(22px, -12px, 0) scale(1.06);
        opacity: 0.92;
      }
    }

    @keyframes mediaAuraDrift {
      0%,
      100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.68;
      }
      50% {
        transform: translate3d(-8px, -10px, 0) scale(1.04);
        opacity: 0.88;
      }
    }

    @keyframes featuredFieldDrift {
      0%,
      100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.72;
      }
      50% {
        transform: translate3d(16px, -8px, 0) scale(1.06);
        opacity: 0.96;
      }
    }

    @keyframes tagPulse {
      0%,
      100% {
        transform: scale(1);
        box-shadow:
          0 0 0 1px rgba(var(--brand-soft-rgb), 0.18),
          0 0 12px rgba(var(--brand-rgb), 0.3);
      }
      50% {
        transform: scale(1.15);
        box-shadow:
          0 0 0 1px rgba(var(--brand-soft-rgb), 0.22),
          0 0 18px rgba(var(--brand-rgb), 0.42);
      }
    }

    @keyframes tagSheen {
      0%,
      100% {
        opacity: 0.58;
        transform: translate3d(0, 0, 0);
      }
      50% {
        opacity: 0.9;
        transform: translate3d(6px, -2px, 0);
      }
    }

    @keyframes socialIdleFloat {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -4px, 0);
      }
    }

    @keyframes orbPulse {
      0%,
      100% {
        opacity: 0.68;
        filter: blur(80px) saturate(1);
      }
      50% {
        opacity: 0.98;
        filter: blur(96px) saturate(1.08);
      }
    }

    @keyframes accentDrift {
      0%,
      100% {
        background-position: 50% 0%;
        filter: drop-shadow(0 0 18px rgba(var(--brand-rgb), 0.08));
      }
      50% {
        background-position: 50% 100%;
        filter: drop-shadow(0 0 24px rgba(var(--brand-rgb), 0.16));
      }
    }

    @keyframes sloganBreathe {
      0%,
      100% {
        opacity: 0.92;
        text-shadow:
          0 0 14px rgba(var(--brand-rgb), 0.06),
          0 0 26px rgba(var(--brand-soft-rgb), 0.06);
      }
      50% {
        opacity: 1;
        text-shadow:
          0 0 24px rgba(var(--brand-rgb), 0.12),
          0 0 38px rgba(var(--brand-soft-rgb), 0.12);
      }
    }

    @keyframes sloganAura {
      0%,
      100% {
        opacity: 0.22;
        filter: blur(18px);
        transform: translateY(-50%) scale(0.98);
      }
      50% {
        opacity: 0.36;
        filter: blur(24px);
        transform: translateY(-50%) scale(1.04);
      }
    }

    @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;
        scroll-behavior: auto !important;
      }
    }

    .back-to-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 42;
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
      backdrop-filter: blur(18px);
      color: var(--text);
      box-shadow: var(--shadow-soft), 0 0 0 1px rgba(var(--brand-soft-rgb), 0.1);
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .back-to-top::before {
      content: "↑";
      font-size: 1.2rem;
      line-height: 1;
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-3px);
      border-color: rgba(var(--brand-soft-rgb), 0.24);
      box-shadow: var(--glow-strong);
    }

    .back-to-top:active {
      transform: translateY(-1px) scale(0.98);
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .story-layout,
      .cta-panel,
      .footer-shell,
      .section-head {
        grid-template-columns: 1fr;
      }

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

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

      .hero-copy {
        padding-left: 14px;
      }

      .hero-aside {
        margin-left: 0;
      }

      .impact-grid {
        grid-template-areas:
          "feature feature"
          "compact-a compact-b"
          "compact-c compact-c";
        gap: 30px 24px;
      }

      .impact-card.compact-c {
        margin-left: 0;
      }

      .cause-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 24px;
      }

      .cause-card,
      .cause-card:nth-child(1),
      .cause-card:nth-child(2),
      .cause-card:nth-child(3),
      .cause-card:nth-child(4) {
        grid-column: auto;
        margin-top: 0;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .video-frame {
        aspect-ratio: var(--video-shell-ratio, 16 / 10);
      }
    }

    @media (max-width: 860px) {
      :root {
        --header-height: 84px;
      }

      .hero-aside::before {
        inset: 8% -2% -4% 8%;
        filter: blur(38px);
        opacity: 0.72;
      }

      .header-inner {
        min-height: 84px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px;
      }

      .brand-mark img {
        height: 74px;
      }

      .brand {
        min-width: 0;
      }

      .header-actions {
        justify-self: end;
        gap: 10px;
      }

      .header-join-link {
        min-height: 46px;
        padding: 0 18px;
        font-size: 0.84rem;
      }

      .nav-shell {
        position: relative;
        justify-self: end;
        justify-content: flex-end;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: auto;
        width: min(320px, calc(100vw - 28px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(28, 23, 39, 0.94), rgba(19, 17, 28, 0.96));
        box-shadow: 0 26px 52px rgba(8, 5, 16, 0.32);
      }

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

      .site-nav a {
        padding: 12px 14px;
      }

      .hero-grid {
        gap: 22px;
        min-height: auto;
        padding-top: calc(var(--header-height) + 18px);
        padding-bottom: 2px;
      }

      .hero-copy {
        max-width: none;
        padding-left: 0;
        width: 100%;
        justify-self: stretch;
      }

      .hero-nameplate {
        gap: 9px;
      }

      .hero-wordmark {
        gap: 8px;
      }

      .hero-brand {
        margin-bottom: 12px;
        padding: 10px 14px;
      }

      .hero-aside {
        gap: 12px;
      }

      #causes {
        padding-top: 70px;
        padding-bottom: 62px;
      }

      .section-head {
        gap: 18px;
        margin-bottom: 28px;
      }

      .hero::before {
        width: 54vw;
        height: 34vw;
      }

      .hero-aside,
      .quote-card,
      .hero-image-card {
        margin-left: 0;
        margin-right: 0;
        transform: none;
      }

      .back-to-top {
        right: 18px;
        bottom: 18px;
      }

      .cause-grid,
      .impact-grid,
      .footer-shell {
        grid-template-columns: 1fr;
      }

      #causes .section-head {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
      }

      #causes .section-lead {
        justify-self: start;
        max-width: 42ch;
      }

      #causes .section-head h2 {
        max-width: none;
        font-size: clamp(2.2rem, 5.5vw, 3.4rem);
        white-space: nowrap;
      }

      .cause-grid {
        gap: 10px;
      }

      .cause-card,
      .cause-card:nth-child(1),
      .cause-card:nth-child(2),
      .cause-card:nth-child(3),
      .cause-card:nth-child(4) {
        grid-column: auto;
        margin-top: 0;
        padding: 14px 0 14px 22px;
      }

      .cause-card::before {
        inset: -6px -8px -8px 0;
        border-radius: 22px;
      }

      .cause-index {
        margin-bottom: 10px;
      }

      .cause-index::after {
        width: 34px;
      }

      .cause-card h3 {
        font-size: clamp(1.56rem, 5vw, 2rem);
      }

      .cause-card p {
        max-width: 30ch;
        font-size: 0.9rem;
        line-height: 1.64;
      }

      .video-frame {
        aspect-ratio: var(--video-shell-ratio, 16 / 10);
      }

      .story-panel,
      .story-media {
        min-height: 420px;
      }

      .impact-grid {
        grid-template-areas:
          "feature"
          "compact-a"
          "compact-b"
          "compact-c";
        gap: 18px;
      }

      .quote-card,
      .hero-image-card,
      .story-panel,
      .video-card,
      .impact-card.compact-a,
      .impact-card.compact-b,
      .impact-card.compact-c {
        transform: none;
        margin-left: 0;
        margin-right: 0;
      }

      #causes .section-head > div:first-child,
      #videos .section-head > div:first-child,
      #impact .section-head > div:first-child,
      #causes .section-lead {
        transform: none;
      }

      .cause-card-body {
        animation: none;
      }
    }

    @media (max-width: 640px) {
      :root {
        --header-height: 78px;
      }

      section:not(.hero)::before {
        width: calc(100% - 28px);
      }

      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .header-inner {
        position: relative;
        min-height: 78px;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "brand nav"
          "actions actions";
        gap: 8px;
      }

      .brand {
        grid-area: brand;
      }

      .brand-mark img {
        height: 64px;
      }

      .brand {
        gap: 10px;
        align-items: center;
      }

      .brand-copy strong {
        font-size: 0.84rem;
        letter-spacing: 0.1em;
      }

      .brand-copy .brand-secondary {
        display: none;
      }

      .nav-shell {
        grid-area: nav;
        position: static;
      }

      .header-actions {
        width: 100%;
        margin-top: 6px;
        grid-column: 1 / -1;
        grid-area: actions;
        justify-content: space-between;
      }

      .lang-switch {
        min-width: 126px;
        padding: 5px;
        gap: 4px;
      }

      .header-join-link {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.8rem;
      }

      .lang-btn {
        padding: 9px 10px;
        font-size: 0.84rem;
      }

      .nav-toggle {
        width: 42px;
        height: 42px;
      }

      .site-nav {
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        width: auto;
        max-width: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-grid {
        gap: 12px;
        padding-top: calc(var(--header-height) + 2px);
        padding-bottom: 0;
      }

      .hero-copy {
        width: 100%;
        justify-self: stretch;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(138px, 154px);
        grid-template-areas:
          "brand brand"
          "name actions"
          "title actions"
          "subtitle subtitle"
          "scroll scroll";
        column-gap: 14px;
        row-gap: 9px;
        align-items: end;
      }

      html[lang="en"] .hero-copy {
        grid-template-columns: minmax(0, 1fr) minmax(164px, 182px);
      }

      .hero-copy > * {
        min-width: 0;
      }

      .hero-brand {
        grid-area: brand;
        gap: 8px;
        padding: 8px 11px;
        margin-bottom: 4px;
        width: max-content;
      }

      .hero-aside::before {
        inset: 12% 0 -2% 0;
        filter: blur(28px);
        opacity: 0.62;
      }

      .hero-kicker {
        font-size: 0.88rem;
        letter-spacing: 0.1em;
      }

      .hero-kicker-sub {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
      }

      .hero-nameplate {
        grid-area: name;
        margin-bottom: 0;
        align-self: start;
      }

      .hero-wordmark {
        gap: 6px;
      }

      .hero-char {
        font-size: clamp(3.8rem, 17vw, 5.2rem);
        letter-spacing: -0.024em;
      }

      .hero-slogan {
        padding-left: 0;
        font-size: 0.88rem;
        letter-spacing: 0.07em;
      }

      .hero-slogan::before {
        width: 24px;
        margin-right: 10px;
      }

      .hero-slogan::after {
        left: 30px;
        right: -6px;
      }

      .hero-title {
        grid-area: title;
        max-width: none;
        font-size: clamp(2.42rem, 10.6vw, 3.85rem);
        letter-spacing: -0.042em;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions {
        grid-area: actions;
        margin-top: 0;
        gap: 10px;
        align-self: start;
        margin-top: 8px;
      }

      html[lang="en"] .hero-actions .btn {
        font-size: 0.82rem;
        padding-inline: 14px;
        letter-spacing: 0.01em;
      }

      .hero-subtitle {
        grid-area: subtitle;
        max-width: none;
        margin-top: 6px;
        font-size: 0.84rem;
        line-height: 1.72;
      }

      .scroll-hint {
        grid-area: scroll;
        margin-top: 8px;
      }

      .scroll-hint::before {
        width: 28px;
      }

      .btn {
        width: 100%;
        min-height: 47px;
        padding-inline: 16px;
        font-size: 0.88rem;
      }

      section {
        padding: 60px 0;
      }

      #causes {
        padding-top: 54px;
        padding-bottom: 50px;
      }

      .section-head {
        gap: 14px;
        margin-bottom: 22px;
      }

      #causes .section-head {
        margin-bottom: 10px;
      }

      .section-tag {
        gap: 8px;
        padding: 7px 11px;
        margin-bottom: 10px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
      }

      .section-tag::before {
        width: 5px;
        height: 5px;
      }

      .section-head h2 {
        font-size: clamp(2.2rem, 9.8vw, 3.2rem);
      }

      #causes .section-head h2 {
        max-width: none;
        font-size: clamp(1.62rem, 6.9vw, 2.1rem);
        line-height: 0.9;
        white-space: nowrap;
      }

      .section-lead {
        font-size: 0.86rem;
        line-height: 1.72;
      }

      .quote-card,
      .impact-card,
      .story-note,
      .cta-panel,
      .footer-shell,
      .video-card {
        padding-left: 20px;
        padding-right: 20px;
      }

      .quote-card::after,
      .video-card::after,
      .story-note::after,
      .cta-panel::after,
      .footer-shell::after {
        inset: 1px;
        opacity: 0.72;
      }

      .story-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
      }

      .hero-image-card {
        aspect-ratio: var(--hero-video-ratio, 16 / 10);
      }

      .hero-media-controls {
        top: 12px;
        right: 12px;
        gap: 8px;
      }

      .hero-media-control {
        min-height: 34px;
        padding: 0 11px;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
      }

      .media-asset::after {
        inset: 11%;
        border-radius: 18px;
      }

      .media-asset .media-badge {
        top: 12px;
        right: 18px;
        padding: 6px 9px;
        font-size: 0.6rem;
        letter-spacing: 0.14em;
      }

      .media-asset .media-word {
        left: 14px;
        bottom: 14px;
        font-size: clamp(1.4rem, 6vw, 2.2rem);
      }

      .quote-card {
        padding: 18px 16px 17px;
      }

      .hero-quote {
        font-size: clamp(1.56rem, 8vw, 2.16rem);
      }

      .hero-note {
        margin-top: 10px;
        font-size: 0.86rem;
        line-height: 1.68;
      }

      .hero-image-copy {
        left: 16px;
        right: 16px;
        bottom: 16px;
      }

      .hero-image-copy strong {
        font-size: 0.96rem;
        margin-bottom: 6px;
      }

      .hero-image-copy .video-brand-kicker {
        margin-bottom: 8px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
      }

      .hero-image-copy p {
        font-size: 0.84rem;
        line-height: 1.64;
      }

      .cause-grid {
        position: relative;
        gap: 0;
        padding-top: 4px;
        padding-bottom: 24px;
      }

      .cause-card,
      .cause-card:nth-child(1),
      .cause-card:nth-child(2),
      .cause-card:nth-child(3),
      .cause-card:nth-child(4) {
        position: sticky;
        top: calc(var(--header-height) + 18px);
        padding: 16px 18px 16px 18px;
        margin-top: 10px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.03)),
          radial-gradient(circle at 18% 0%, rgba(var(--brand-rgb), 0.1), transparent 40%);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.05),
          0 14px 28px rgba(8, 5, 16, 0.14);
        opacity: 0.42;
        filter: saturate(0.9) blur(1.5px);
        transform: translateY(18px) scale(0.972);
        transition:
          opacity 0.42s ease,
          filter 0.42s ease,
          transform 0.42s ease,
          box-shadow 0.42s ease,
          border-color 0.42s ease,
          background 0.42s ease;
      }

      .cause-card::before {
        inset: 0;
        border-radius: 22px;
        opacity: 0.6;
      }

      .cause-card:nth-child(1) {
        z-index: 1;
      }

      .cause-card:nth-child(2) {
        z-index: 2;
      }

      .cause-card:nth-child(3) {
        z-index: 3;
      }

      .cause-card:nth-child(4) {
        z-index: 4;
      }

      .cause-card.mobile-active {
        opacity: 1;
        filter: none;
        transform: translateY(0) scale(1);
        border-color: rgba(var(--brand-soft-rgb), 0.24);
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.038)),
          radial-gradient(circle at 18% 0%, rgba(var(--brand-rgb), 0.16), transparent 44%);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.06),
          0 20px 42px rgba(var(--brand-rgb), 0.14),
          0 0 0 1px rgba(var(--brand-soft-rgb), 0.08);
      }

      .cause-card.mobile-before {
        opacity: 0.18;
        filter: saturate(0.84) blur(2px);
        transform: translateY(-6px) scale(0.958);
      }

      .cause-card.mobile-after {
        opacity: 0.5;
        filter: saturate(0.92) blur(1px);
        transform: translateY(14px) scale(0.984);
      }

      .cause-index {
        margin-bottom: 8px;
        font-size: 0.7rem;
      }

      .cause-index::after {
        width: 26px;
      }

      .cause-card h3 {
        font-size: 1.34rem;
        margin-bottom: 4px;
      }

      .cause-card.mobile-active .cause-index {
        color: rgba(var(--brand-soft-rgb), 0.92);
        transform: translateX(2px);
      }

      .cause-card.mobile-active .cause-index::after {
        width: 38px;
        background: linear-gradient(90deg, rgba(var(--brand-soft-rgb), 0.72), rgba(var(--brand-rgb), 0.42));
      }

      .cause-card.mobile-active h3 {
        color: #ffffff;
        text-shadow: 0 0 20px rgba(var(--brand-rgb), 0.1);
      }

      .cause-card p {
        font-size: 0.8rem;
        line-height: 1.46;
        max-width: 28ch;
      }

      .cause-card.mobile-active p {
        color: rgba(255, 255, 255, 0.9);
      }

      .video-card {
        padding: 9px;
      }

      .video-card::after {
        inset: 6px;
        border-radius: 18px;
      }

      .video-frame {
        aspect-ratio: var(--video-shell-ratio, 16 / 10);
        border-radius: 17px;
      }

      .video-overlay {
        padding: 12px;
      }

      .video-bottom {
        gap: 12px;
      }

      .video-copy h3 {
        font-size: 1.02rem;
      }

      .video-brand-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
        margin-bottom: 6px;
      }

      .video-copy p {
        font-size: 0.84rem;
        line-height: 1.54;
      }

      .video-label,
      .video-length,
      .video-status,
      .video-pause-hint {
        font-size: 0.66rem;
        padding: 7px 10px;
      }

      .play-button {
        width: 56px;
        height: 56px;
      }

      .video-fullscreen-btn {
        width: 42px;
        height: 42px;
        right: 12px;
        bottom: 12px;
        border-radius: 14px;
      }

      .video-pause-hint {
        right: 64px;
      }

      .story-panel,
      .story-media {
        min-height: 342px;
      }

      .asset-story .media-word {
        font-size: clamp(1.8rem, 7.4vw, 2.8rem);
      }

      .story-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
      }

      .story-copy h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
        margin-bottom: 10px;
      }

      .story-copy p,
      .story-note p {
        font-size: 0.86rem;
        line-height: 1.62;
      }

      .story-notes {
        gap: 10px;
      }

      .story-note {
        padding: 16px 16px 14px;
      }

      .story-quote {
        font-size: clamp(1.46rem, 7vw, 2rem);
      }

      .impact-grid {
        gap: 12px;
      }

      .impact-card {
        padding: 8px 0;
      }

      .impact-card.featured {
        padding: 16px 18px 14px;
      }

      .impact-card strong {
        margin: 10px 0 4px;
        font-size: clamp(2.3rem, 10vw, 3.7rem);
      }

      .impact-card.featured strong {
        font-size: clamp(3rem, 13vw, 4.8rem);
      }

      .impact-card p {
        font-size: 0.84rem;
        line-height: 1.58;
      }

      .cta {
        padding-top: 58px;
        padding-bottom: 64px;
      }

      .cta-panel {
        padding: 22px 20px;
        gap: 12px;
      }

      .cta-copy h2 {
        font-size: clamp(2.1rem, 9vw, 3rem);
      }

      .cta-copy p {
        font-size: 0.86rem;
        line-height: 1.66;
      }

      .footer-shell {
        gap: 18px;
        padding-top: 20px;
      }

      .footer-brand .brand-mark img {
        height: 88px;
      }

      .social-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .social-pill {
        justify-content: flex-start;
        min-height: 42px;
        padding: 10px 12px;
        animation: none;
      }

      .social-copy strong {
        font-size: 0.82rem;
      }

      .social-copy small {
        font-size: 0.68rem;
      }

      .back-to-top {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
      }
    }
