    :root {
      --bg: #070506;
      --bg-soft: #120c0c;
      --panel: rgba(17, 12, 12, 0.88);
      --panel-strong: rgba(24, 16, 16, 0.96);
      --line: rgba(234, 196, 120, 0.18);
      --line-strong: rgba(234, 196, 120, 0.38);
      --gold-1: #f8e5b0;
      --gold-2: #d9ab54;
      --gold-3: #8e5b1d;
      --red-1: #b61c24;
      --red-2: #601014;
      --text: #f7f0df;
      --muted: #cdbb97;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 30px rgba(217, 171, 84, 0.16);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1180px;
      --transition: 220ms ease;
      --section-space: clamp(4.5rem, 8vw, 7rem);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      font-family: "Rajdhani", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 20%, rgba(182, 28, 36, 0.18), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(217, 171, 84, 0.16), transparent 24%),
        linear-gradient(180deg, #050405 0%, #0b0708 38%, #070506 100%);
      overflow-x: hidden;
      cursor: none;
    }

    @media (hover: none), (pointer: coarse) {
      body {
        cursor: auto;
      }
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 120;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: opacity 180ms ease;
    }

    .cursor-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #fff1c7;
      box-shadow: 0 0 16px rgba(255, 218, 145, 0.8);
    }

    .cursor-ring {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(248, 229, 176, 0.5);
      box-shadow: 0 0 24px rgba(217, 171, 84, 0.24);
    }

    .cursor-hidden .cursor-dot,
    .cursor-hidden .cursor-ring {
      opacity: 0;
    }

    @media (hover: none), (pointer: coarse) {
      .cursor-dot,
      .cursor-ring {
        display: none;
      }
    }

    .page-shell {
      position: relative;
      isolation: isolate;
    }

    .page-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(180deg, rgba(7, 5, 6, 0.18), rgba(7, 5, 6, 0.84)),
        url("./IMG/image (3).png") center top / cover no-repeat;
      filter: saturate(0.82) brightness(0.32);
      transform: scale(1.04);
    }

    .page-shell::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(7, 5, 6, 0.12) 0%, rgba(7, 5, 6, 0.68) 38%, rgba(7, 5, 6, 0.95) 100%),
        radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.44) 100%);
    }

    .container {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: var(--section-space) 0;
      position: relative;
      content-visibility: auto;
      contain-intrinsic-size: 1px 960px;
    }

    .hero,
    .footer {
      content-visibility: visible;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.55rem 1rem;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(15, 11, 11, 0.65);
      color: var(--gold-1);
      font-size: 0.98rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      box-shadow: var(--shadow-glow);
      backdrop-filter: blur(12px);
    }

    .eyebrow i {
      color: #ffcf72;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 2.2rem;
    }

    .section-heading h2,
    .hero-content h1 {
      font-family: "Cinzel", serif;
      font-weight: 800;
      line-height: 0.96;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: linear-gradient(180deg, #fff6d9 0%, #f0d28d 38%, #b77a27 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 30px rgba(217, 171, 84, 0.18);
    }

    .section-heading h2 {
      font-size: clamp(2rem, 5vw, 3.7rem);
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    .section-heading p,
    .hero-content p,
    .hero-note,
    .footer {
      color: var(--muted);
    }

    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 1.2rem 0 4rem;
      overflow: clip;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: auto;
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
    }

    .hero::before {
      width: 420px;
      height: 420px;
      top: 10%;
      left: -120px;
      background: rgba(182, 28, 36, 0.18);
      animation: floatGlow 8s ease-in-out infinite;
    }

    .hero::after {
      width: 320px;
      height: 320px;
      right: -60px;
      bottom: 8%;
      background: rgba(217, 171, 84, 0.16);
      animation: floatGlow 10s ease-in-out infinite reverse;
    }

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

    .hero-particles {
      background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 227, 167, 0.85) 0 1px, transparent 2px),
        radial-gradient(circle at 22% 60%, rgba(255, 227, 167, 0.7) 0 1px, transparent 2px),
        radial-gradient(circle at 77% 26%, rgba(255, 227, 167, 0.78) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 68%, rgba(255, 227, 167, 0.72) 0 1px, transparent 2px),
        radial-gradient(circle at 52% 16%, rgba(255, 227, 167, 0.72) 0 1px, transparent 2px),
        radial-gradient(circle at 62% 84%, rgba(255, 227, 167, 0.6) 0 1px, transparent 2px);
      animation: drift 18s linear infinite;
      opacity: 0.75;
    }

    .hero-particles::before {
      background:
        radial-gradient(circle, rgba(255, 210, 113, 0.22) 0%, transparent 60%) 10% 15% / 180px 180px no-repeat,
        radial-gradient(circle, rgba(182, 28, 36, 0.16) 0%, transparent 58%) 78% 20% / 220px 220px no-repeat,
        radial-gradient(circle, rgba(255, 210, 113, 0.2) 0%, transparent 58%) 62% 75% / 190px 190px no-repeat;
      animation: pulseNebula 8s ease-in-out infinite;
    }

    .hero-particles::after {
      background:
        linear-gradient(120deg, transparent 0%, rgba(255, 219, 134, 0.08) 46%, transparent 52%) 0 0 / 240px 100% no-repeat;
      transform: translateX(-20%);
      animation: sweep 7s linear infinite;
      opacity: 0.75;
    }

    .topbar {
      position: absolute;
      top: 1rem;
      left: 0;
      width: 100%;
      z-index: 5;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(255, 222, 160, 0.12);
      border-radius: 999px;
      background: rgba(8, 6, 7, 0.55);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      min-width: 0;
    }

    .brand-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      overflow: hidden;
      box-shadow: 0 0 18px rgba(217, 171, 84, 0.14);
      flex-shrink: 0;
    }

    .brand-badge img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-copy strong {
      display: block;
      font-family: "Cinzel", serif;
      font-size: 1rem;
      letter-spacing: 0.1em;
      color: #f7e4b0;
      text-transform: uppercase;
    }

    .brand-logo {
      display: block;
      width: clamp(150px, 20vw, 220px);
      height: auto;
      filter: drop-shadow(0 0 16px rgba(217, 171, 84, 0.18));
    }

    .brand-copy span {
      display: block;
      color: var(--muted);
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .top-links {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .top-links a {
      width: 2.5rem;
      height: 2.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255, 223, 163, 0.16);
      background: rgba(255, 255, 255, 0.02);
      color: #f3d595;
      transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }

    .top-links a:hover {
      transform: translateY(-3px) scale(1.03);
      border-color: rgba(255, 223, 163, 0.4);
      background: rgba(217, 171, 84, 0.12);
      box-shadow: 0 0 18px rgba(217, 171, 84, 0.2);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr;
      gap: clamp(1.6rem, 4vw, 3.2rem);
      align-items: center;
      padding-top: clamp(5.5rem, 11vw, 7.5rem);
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero-content h1 {
      font-size: clamp(3.2rem, 8vw, 6.8rem);
      margin-top: 1.2rem;
      margin-bottom: 1.1rem;
    }

    .hero-content p {
      font-size: clamp(1.15rem, 2.4vw, 1.55rem);
      max-width: 38rem;
      line-height: 1.5;
    }

    .hero-note {
      margin-top: 1.25rem;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

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

    .countdown-card {
      position: relative;
      overflow: hidden;
      padding: 1.1rem 1rem 1rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 221, 160, 0.18);
      background:
        linear-gradient(180deg, rgba(255, 217, 140, 0.06) 0%, rgba(255, 217, 140, 0.01) 100%),
        linear-gradient(180deg, rgba(18, 12, 12, 0.92) 0%, rgba(10, 8, 8, 0.92) 100%);
      box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(14px);
    }

    .countdown-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 220, 146, 0.08), transparent 24%, transparent 76%, rgba(182, 28, 36, 0.09)),
        linear-gradient(180deg, transparent, rgba(255, 215, 132, 0.03));
      pointer-events: none;
    }

    .countdown-card .label-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
    }

    .countdown-card .label-row strong {
      font-family: "Cinzel", serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #f8e5b0;
      font-size: 1rem;
    }

    .countdown-card .label-row span {
      color: #ffd280;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-size: 0.92rem;
    }

    .timer-display {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
      position: relative;
      z-index: 1;
    }

    .time-segment {
      padding: 0.75rem 0.45rem 0.6rem;
      text-align: center;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(37, 26, 17, 0.95), rgba(15, 11, 11, 0.92));
      border: 1px solid rgba(255, 223, 163, 0.08);
      box-shadow: inset 0 0 18px rgba(255, 220, 146, 0.04);
    }

    .time-segment b {
      display: block;
      color: #fff5d3;
      font-size: clamp(1.15rem, 3vw, 1.75rem);
      line-height: 1;
      letter-spacing: 0.05em;
    }

    .time-segment small {
      display: block;
      margin-top: 0.38rem;
      color: var(--muted);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

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

    .button {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      min-width: 190px;
      padding: 0.95rem 1.35rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
      overflow: hidden;
    }

    .button::before {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      z-index: -1;
    }

    .button.primary {
      color: #180d08;
      background: linear-gradient(135deg, #fbe8b0 0%, #d79a41 55%, #8f561b 100%);
      box-shadow: 0 14px 35px rgba(194, 129, 42, 0.26);
    }

    .button.primary::before {
      background: linear-gradient(180deg, rgba(255, 252, 241, 0.38), rgba(255, 255, 255, 0));
    }

    .button.secondary {
      color: #f5dfb0;
      border-color: rgba(255, 224, 161, 0.22);
      background: rgba(20, 14, 14, 0.72);
      box-shadow: inset 0 0 20px rgba(255, 219, 134, 0.03);
    }

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

    .button.primary:hover {
      box-shadow: 0 18px 44px rgba(194, 129, 42, 0.34), 0 0 28px rgba(217, 171, 84, 0.2);
    }

    .button.secondary:hover {
      border-color: rgba(255, 224, 161, 0.44);
      background: rgba(34, 20, 20, 0.8);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 20px rgba(217, 171, 84, 0.12);
    }

    .hero-visual {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-frame {
      position: relative;
      width: min(100%, 560px);
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(255, 220, 146, 0.2);
      background:
        linear-gradient(180deg, rgba(255, 217, 140, 0.08), rgba(255, 217, 140, 0)),
        rgba(18, 12, 12, 0.9);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48), 0 0 34px rgba(217, 171, 84, 0.12);
      transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
      transform-style: preserve-3d;
    }

    .hero-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
        linear-gradient(135deg, rgba(255, 229, 171, 0.22), transparent 28% 72%, rgba(182, 28, 36, 0.16));
      pointer-events: none;
      z-index: 2;
    }

    .hero-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .visual-badge {
      position: static;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      width: fit-content;
      max-width: 100%;
      margin-top: 1.25rem;
      padding: 0.9rem 1rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 224, 161, 0.2);
      background: rgba(10, 8, 8, 0.8);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
    }

    .visual-badge i {
      width: 2.6rem;
      height: 2.6rem;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(255, 227, 167, 0.2), rgba(182, 28, 36, 0.18));
      color: #ffdd97;
      box-shadow: inset 0 0 16px rgba(255, 220, 146, 0.08);
    }

    .visual-badge strong {
      display: block;
      color: #fff5d3;
      font-size: 1.02rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .visual-badge span {
      display: block;
      color: var(--muted);
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-actions .button.primary {
      background: linear-gradient(135deg, #d8d7ff 0%, #8f9cff 48%, #5865f2 100%);
      box-shadow: 0 14px 35px rgba(88, 101, 242, 0.28);
    }

    .hero-actions .button.primary:hover {
      box-shadow: 0 18px 44px rgba(88, 101, 242, 0.38), 0 0 28px rgba(143, 156, 255, 0.22);
    }

    .floating-shard {
      position: absolute;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255, 224, 161, 0.18), rgba(255, 224, 161, 0.03));
      border: 1px solid rgba(255, 224, 161, 0.12);
      box-shadow: 0 0 24px rgba(217, 171, 84, 0.16);
      backdrop-filter: blur(8px);
      animation: shardFloat 7s ease-in-out infinite;
    }

    .floating-shard.one {
      width: 82px;
      height: 82px;
      top: 12%;
      right: 4%;
      transform: rotate(15deg);
    }

    .floating-shard.two {
      width: 54px;
      height: 54px;
      bottom: 18%;
      right: -2%;
      border-radius: 14px;
      animation-delay: -2.5s;
    }

    .features-grid,
    .preserve-grid,
    .social-grid {
      display: grid;
      gap: 1rem;
    }

    .proof-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .proof-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255, 223, 163, 0.12);
      background:
        linear-gradient(180deg, rgba(255, 217, 140, 0.04), rgba(255, 217, 140, 0.01)),
        var(--panel);
      box-shadow: var(--shadow);
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .proof-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 223, 163, 0.3);
      box-shadow: var(--shadow), 0 0 32px rgba(217, 171, 84, 0.12);
    }

    .proof-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      filter: saturate(0.92) brightness(0.92);
    }

    .proof-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 21 / 8;
      background: #050405;
    }

    .proof-video-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .proof-card.proof-video {
      grid-column: 1 / -1;
    }

    .proof-card figcaption {
      padding: 1rem 1rem 1.1rem;
      color: var(--muted);
      line-height: 1.5;
      font-size: 1rem;
      background: linear-gradient(180deg, rgba(15, 11, 11, 0.15), rgba(15, 11, 11, 0.68));
    }

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

    .feature-card,
    .preserve-card,
    .social-card,
    .cta-panel {
      position: relative;
      border: 1px solid rgba(255, 223, 163, 0.12);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255, 217, 140, 0.04), rgba(255, 217, 140, 0.01)),
        var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
      backdrop-filter: blur(14px);
    }

    .feature-card::before,
    .preserve-card::before,
    .social-card::before,
    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 228, 170, 0.08), transparent 45%, rgba(182, 28, 36, 0.08));
      opacity: 0;
      transition: opacity var(--transition);
      pointer-events: none;
    }

    .feature-card:hover,
    .preserve-card:hover,
    .social-card:hover,
    .cta-panel:hover {
      border-color: rgba(255, 223, 163, 0.32);
      box-shadow: var(--shadow), 0 0 32px rgba(217, 171, 84, 0.12);
    }

    .feature-card:hover::before,
    .preserve-card:hover::before,
    .social-card:hover::before,
    .cta-panel:hover::before {
      opacity: 1;
    }

    .feature-card {
      padding: 1.5rem;
      min-height: 100%;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-6px);
    }

    .feature-icon {
      width: 3.4rem;
      height: 3.4rem;
      margin-bottom: 1.2rem;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #ffdd97;
      background: linear-gradient(135deg, rgba(255, 220, 146, 0.18), rgba(182, 28, 36, 0.14));
      border: 1px solid rgba(255, 220, 146, 0.12);
      box-shadow: inset 0 0 20px rgba(255, 220, 146, 0.05);
    }

    .feature-card h3,
    .preserve-card h3,
    .cta-panel h3 {
      font-family: "Cinzel", serif;
      font-size: 1.25rem;
      line-height: 1.28;
      color: #f4ddb0;
      margin-bottom: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .feature-card p,
    .preserve-card p,
    .social-card p,
    .cta-panel p {
      color: var(--muted);
      line-height: 1.55;
      font-size: 1.04rem;
    }

    .highlight {
      display: inline-block;
      margin-top: 0.9rem;
      padding: 0.42rem 0.72rem;
      border-radius: 999px;
      background: rgba(217, 171, 84, 0.1);
      color: #ffdd97;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.84rem;
    }

    .preserve-wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.2rem;
      align-items: stretch;
    }

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

    .preserve-card {
      padding: 1.5rem;
      text-align: center;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .preserve-card:hover {
      transform: translateY(-5px);
    }

    .preserve-check {
      width: 4.2rem;
      height: 4.2rem;
      margin: 0 auto 1.1rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #ffe2a4;
      font-size: 1.35rem;
      background:
        radial-gradient(circle at 30% 30%, rgba(255, 235, 187, 0.38), transparent 38%),
        linear-gradient(135deg, rgba(217, 171, 84, 0.24), rgba(182, 28, 36, 0.16));
      border: 1px solid rgba(255, 224, 161, 0.18);
      box-shadow: inset 0 0 22px rgba(255, 221, 160, 0.06), 0 0 20px rgba(217, 171, 84, 0.08);
    }

    .preserve-side {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 100%;
      border: 1px solid rgba(255, 223, 163, 0.14);
      box-shadow: var(--shadow);
    }

    .preserve-side img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      filter: brightness(0.68) saturate(0.92);
    }

    .preserve-side::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(8, 6, 7, 0.12), rgba(8, 6, 7, 0.84)),
        radial-gradient(circle at top right, rgba(217, 171, 84, 0.18), transparent 35%);
    }

    .preserve-overlay {
      position: absolute;
      inset: auto 1.35rem 1.35rem 1.35rem;
      z-index: 1;
      padding: 1.1rem 1.15rem;
      border-radius: 20px;
      background: rgba(11, 8, 8, 0.68);
      border: 1px solid rgba(255, 223, 163, 0.12);
      backdrop-filter: blur(12px);
    }

    .preserve-overlay strong {
      display: block;
      color: #fff2cb;
      font-size: 1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .preserve-overlay p {
      color: var(--muted);
      line-height: 1.5;
      font-size: 1rem;
    }

    .cta-panel {
      padding: clamp(1.75rem, 4vw, 2.4rem);
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 1.2rem;
      align-items: center;
    }

    .cta-copy h3 {
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      margin-bottom: 0.9rem;
    }

    .cta-copy p {
      max-width: 34rem;
      font-size: 1.08rem;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.9rem;
    }

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

    .social-card {
      padding: 1.2rem;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .social-card:hover {
      transform: translateY(-5px);
    }

    .social-card a {
      display: flex;
      align-items: center;
      gap: 0.95rem;
    }

    .social-icon {
      width: 3.1rem;
      height: 3.1rem;
      flex-shrink: 0;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #ffdc96;
      background: linear-gradient(135deg, rgba(255, 220, 146, 0.18), rgba(182, 28, 36, 0.14));
      border: 1px solid rgba(255, 220, 146, 0.12);
    }

    .social-text strong {
      display: block;
      color: #fff2cb;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.18rem;
    }

    .social-text span {
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.3;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .footer {
      padding: 2.2rem 0 3rem;
      text-align: center;
      border-top: 1px solid rgba(255, 223, 163, 0.08);
      color: rgba(231, 214, 176, 0.74);
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @keyframes drift {
      0% { transform: translateY(0); }
      50% { transform: translateY(16px); }
      100% { transform: translateY(0); }
    }

    @keyframes pulseNebula {
      0%, 100% { opacity: 0.75; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.04); }
    }

    @keyframes sweep {
      0% { transform: translateX(-30%); opacity: 0; }
      15% { opacity: 0.6; }
      50% { opacity: 0.8; }
      100% { transform: translateX(140%); opacity: 0; }
    }

    @keyframes floatGlow {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-16px) scale(1.06); }
    }

    @keyframes shardFloat {
      0%, 100% { transform: translateY(0) rotate(12deg); }
      50% { transform: translateY(-15px) rotate(18deg); }
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .preserve-wrap,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 0;
      }

      .hero-frame {
        transform: none;
      }

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

    @media (max-width: 860px) {
      .features-grid,
      .proof-gallery,
      .preserve-grid,
      .social-grid {
        grid-template-columns: 1fr;
      }

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

      .topbar-inner {
        border-radius: 26px;
        align-items: flex-start;
        flex-direction: column;
      }

      .top-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 4rem 0;
      }

      .hero {
        min-height: auto;
        padding-bottom: 3rem;
      }

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

      .hero-content h1 {
        font-size: clamp(2.6rem, 16vw, 4.3rem);
      }

      .hero-content p,
      .feature-card p,
      .preserve-card p,
      .social-text span,
      .cta-copy p {
        font-size: 1rem;
      }

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

      .button {
        width: 100%;
      }

      .timer-display {
        gap: 0.5rem;
      }

      .time-segment {
        padding-inline: 0.2rem;
      }

      .visual-badge {
        margin-top: 1rem;
      }
    }

    @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;
      }
    }
