
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #0c0a0f;
      --bg-soft: #141118;
      --accent: #c9a87c;
      --accent-soft: #e8d5b5;
      --text: #f5f0eb;
      --text-muted: #a89f96;
      --border: rgba(201, 168, 124, 0.25);
    }

    html, body {
      min-height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Outfit', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      display: flex;
      flex-direction: column;
      min-height: 100dvh;
      position: relative;
    }

    /* Ambient background */
    .bg-glow {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .bg-glow::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 90vmax;
      height: 70vmax;
      background: radial-gradient(ellipse at center, rgba(201, 168, 124, 0.13) 0%, transparent 65%);
    }

    .bg-glow::after {
      content: '';
      position: absolute;
      bottom: -30%;
      right: -10%;
      width: 60vmax;
      height: 50vmax;
      background: radial-gradient(ellipse at center, rgba(120, 80, 140, 0.09) 0%, transparent 70%);
    }

    /* Soft moving orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }

    .orb-1 {
      width: 340px;
      height: 340px;
      background: rgba(201, 168, 124, 0.18);
      top: 10%;
      left: 15%;
      animation: orbFloat1 22s ease-in-out infinite;
    }

    .orb-2 {
      width: 280px;
      height: 280px;
      background: rgba(140, 100, 160, 0.14);
      bottom: 15%;
      right: 10%;
      animation: orbFloat2 26s ease-in-out infinite;
    }

    .orb-3 {
      width: 200px;
      height: 200px;
      background: rgba(201, 168, 124, 0.1);
      top: 50%;
      left: 60%;
      animation: orbFloat3 19s ease-in-out infinite;
    }

    @keyframes orbFloat1 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(40px, 30px); }
    }
    @keyframes orbFloat2 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-35px, -25px); }
    }
    @keyframes orbFloat3 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(25px, -40px); }
    }

    /* Grain */
    .grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
      z-index: 1;
    }

    /* Subtle light particles */
    .light-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .light-particle {
      position: absolute;
      width: var(--size);
      height: var(--size);
      border-radius: 50%;
      background: rgba(232, 213, 181, 0.8);
      box-shadow: 0 0 12px rgba(201, 168, 124, 0.55);
      opacity: 0;
      animation: particleFloat linear infinite;
      will-change: transform, opacity;
    }

    @keyframes particleFloat {
      0% {
        transform: translate3d(0, 20px, 0) scale(0.65);
        opacity: 0;
      }
      15% { opacity: 0.28; }
      50% { opacity: 0.5; }
      85% { opacity: 0.18; }
      100% {
        transform: translate3d(var(--drift), -105vh, 0) scale(1);
        opacity: 0;
      }
    }

    /* Layout */
    .page {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      min-height: 100dvh;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 1.25rem 1.5rem;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards 0.15s;
    }

    .logo {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: 1.65rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: all 0.3s ease;
    }

    .logo i {
      color: var(--accent);
      font-size: 1.1rem;
      transition: transform 0.35s ease;
    }

    .logo:hover i {
      transform: scale(1.15);
    }

    .logo span {
      color: var(--accent);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.75rem;
    }

    nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      transition: color 0.25s ease;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    nav a:hover {
      color: var(--text);
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--accent-soft);
      outline-offset: 4px;
      border-radius: 6px;
    }

    nav a i {
      font-size: 0.8rem;
      opacity: 0.8;
    }

    .btn-ghost {
      padding: 0.5rem 1.15rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--accent-soft);
      font-size: 0.8125rem;
      font-weight: 500;
      background: rgba(201, 168, 124, 0.04);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
    }

    .btn-ghost:hover {
      background: rgba(201, 168, 124, 0.12);
      border-color: var(--accent);
      box-shadow: 0 0 20px rgba(201, 168, 124, 0.12);
    }

    /* Main */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 1rem 0;
      min-height: 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      background: rgba(201, 168, 124, 0.08);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--accent-soft);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards 0.3s;
    }

    .badge i {
      font-size: 0.7rem;
      color: var(--accent);
    }

    h1 {
      font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      font-size: clamp(2.4rem, 6.5vw, 4.2rem);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.015em;
      max-width: 18ch;
      margin-bottom: 1.1rem;
      text-shadow: 0 2px 30px rgba(201, 168, 124, 0.08);
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.45s;
    }

    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .subtitle {
      font-size: clamp(0.95rem, 2vw, 1.125rem);
      font-weight: 300;
      color: var(--text-muted);
      max-width: 34ch;
      line-height: 1.55;
      margin-bottom: 2.25rem;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.6s;
    }

    /* CTAs */
    .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      justify-content: center;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.75s;
    }

    .btn-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.95rem 1.9rem;
      background: linear-gradient(135deg, #d4b896 0%, #c9a87c 50%, #b8956a 100%);
      color: #1a1410;
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 28px rgba(201, 168, 124, 0.38);
      transition: all 0.35s ease;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
      );
      transform: skewX(-20deg);
      animation: shine 4.5s ease-in-out infinite;
    }

    @keyframes shine {
      0%, 40% { left: -75%; }
      60%, 100% { left: 125%; }
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(201, 168, 124, 0.5);
    }

    .btn-primary i {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .btn-primary:hover i {
      transform: translateX(3px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 1.7rem;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(8px);
      color: var(--text);
      font-size: 0.9375rem;
      font-weight: 500;
      border: 1px solid var(--border);
      border-radius: 999px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(201, 168, 124, 0.5);
      box-shadow: 0 0 24px rgba(201, 168, 124, 0.1);
    }

    .btn-secondary i {
      font-size: 0.85rem;
      opacity: 0.85;
    }

    /* Social proof */
    .proof {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.9s;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatars img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2.5px solid var(--bg);
      object-fit: cover;
      margin-left: -10px;
      background: var(--bg-soft);
      box-shadow: 0 2px 10px rgba(0,0,0,0.35);
      transition: transform 0.3s ease;
    }

    .avatars img:first-child {
      margin-left: 0;
    }

    .avatars:hover img {
      transform: translateY(-2px);
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.78rem;
      color: var(--accent-soft);
    }

    .rating i {
      color: var(--accent);
      font-size: 0.7rem;
    }

    .proof p {
      font-size: 0.8125rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .proof p i {
      color: var(--accent);
      font-size: 0.75rem;
    }

    .proof strong {
      color: var(--accent-soft);
      font-weight: 500;
    }

    /* Footer */
    footer {
      flex-shrink: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0.5rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      opacity: 0;
      animation: fadeUp 0.8s ease forwards 1.05s;
    }

    footer a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.25s;
    }

    footer a:hover {
      color: var(--accent-soft);
    }

    .footer-links {
      display: flex;
      gap: 1.25rem;
    }

    /* Fade up animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Accessibility: respect reduced-motion preferences */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* Responsive */
    @media (max-width: 640px) {
      .page {
        padding: 1rem 1.15rem;
      }

      nav a:not(.btn-ghost) {
        display: none;
      }

      h1 {
        max-width: 14ch;
      }

      .subtitle {
        max-width: 30ch;
        margin-bottom: 1.75rem;
      }

      .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-bottom: 2rem;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }

      .footer-links {
        gap: 1rem;
      }

      .orb-1, .orb-2, .orb-3 {
        opacity: 0.22;
      }
    }

    @media (max-height: 700px) {
      .badge { margin-bottom: 1rem; }
      h1 {
        font-size: clamp(2rem, 5.5vw, 3.2rem);
        margin-bottom: 0.75rem;
      }
      .subtitle {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
      }
      .cta-group { margin-bottom: 1.5rem; }
      .proof { gap: 0.5rem; }
    }

    @media (max-height: 580px) {
      .badge, .proof, footer { display: none; }
      h1 { font-size: 1.9rem; }
    }
