* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -ms-overflow-style: none;
      
      scrollbar-width: none;
      
    }

    *::-webkit-scrollbar {
      display: none;
      
    }

    body {
      background: linear-gradient(rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.8)), url('https://i.pinimg.com/736x/ff/41/e5/ff41e5c34078277816196966294eb34d.jpg') center/cover fixed;
      color: #f0e6c8;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    
    #intro {
      position: fixed;
      inset: 0;
      background: transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 100;
      padding: 2rem;
    }

    #phrase-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 160px;
      width: 90%;
      max-width: 680px;
      background: rgba(10, 10, 15, 0.65);
      padding: 2.5rem 2rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(12px);
    }

    .phrase {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      font-weight: 300;
      font-style: italic;
      color: #f0e6c8;
      text-align: center;
      letter-spacing: 0.02em;
      line-height: 1.4;
      max-width: 620px;
      margin-bottom: 1rem;
    }

    .typing-cursor::after {
      content: '|';
      font-style: normal;
      font-weight: 300;
      color: #c9a84c;
      margin-left: 4px;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .gold-line {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a84c, transparent);
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .gold-line.visible {
      opacity: 1;
    }

    
    #quiz {
      position: fixed;
      inset: 0;
      background: transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 99;
      padding: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s ease;
    }

    #quiz.visible {
      opacity: 1;
      pointer-events: all;
    }

    .quiz-step {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      max-width: 500px;
      width: 90%;
      background: rgba(10, 10, 15, 0.65);
      padding: 2.5rem 2rem;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(12px);
      animation: fadeUp 0.6s ease forwards;
    }

    .quiz-step.active {
      display: flex;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .quiz-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #c9a84c;
      text-align: center;
    }

    .quiz-question {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-weight: 300;
      text-align: center;
      color: #f0e6c8;
      line-height: 1.4;
    }

    .quiz-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #f0e6c8;
      font-size: 1.15rem;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      padding: 1rem 1.5rem;
      text-align: center;
      outline: none;
      transition: all 0.3s;
      backdrop-filter: blur(8px);
    }

    .quiz-input::placeholder {
      color: rgba(240, 230, 200, 0.4);
    }

    .quiz-input:focus {
      border-color: #c9a84c;
      background: rgba(255, 255, 255, 0.12);
    }

    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      width: 100%;
    }

    .quiz-option {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #f0e6c8;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      padding: 1rem 1.5rem;
      cursor: pointer;
      transition: all 0.25s ease;
      text-align: center;
      line-height: 1.4;
      backdrop-filter: blur(8px);
    }

    .quiz-option:hover,
    .quiz-option.selected {
      background: rgba(201, 168, 76, 0.15);
      border-color: #c9a84c;
      color: #c9a84c;
      transform: translateY(-2px);
    }

    .btn-gold {
      background: #c9a84c;
      color: #0a0a0f;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 1.1rem 2.5rem;
      cursor: pointer;
      border-radius: 30px;
      transition: all 0.3s ease;
      margin-top: 1rem;
      box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    }

    .btn-gold:hover {
      background: #d4b562;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    }

    .quiz-progress {
      display: flex;
      gap: 6px;
      margin-bottom: 1rem;
    }

    .progress-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.2);
      transition: background 0.3s;
    }

    .progress-dot.done {
      background: #c9a84c;
    }

    
    #main {
      display: none;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    #main.visible {
      display: block;
      opacity: 1;
    }

    
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 4rem 2rem;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #c9a84c;
      margin-bottom: 2rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 300;
      line-height: 1.15;
      color: #f0e6c8;
      max-width: 720px;
      margin-bottom: 1.5rem;
    }

    .hero-title em {
      font-style: italic;
      color: #c9a84c;
    }

    .hero-sub {
      font-size: 0.95rem;
      color: rgba(240, 230, 200, 0.55);
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 3rem;
      font-weight: 300;
    }

    
    .video-section {
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #c9a84c;
      text-align: center;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 300;
      color: #f0e6c8;
      text-align: center;
      max-width: 520px;
    }

    .video-frame {
      width: 100%;
      max-width: 760px;
      aspect-ratio: 16/9;
      background: #111118;
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    

    .video-frame:hover {
      border-color: rgba(201, 168, 76, 0.5);
    }

    .play-btn {
      width: 64px;
      height: 64px;
      border: 1.5px solid rgba(201, 168, 76, 0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .video-frame:hover .play-btn {
      border-color: #c9a84c;
      background: rgba(201, 168, 76, 0.1);
    }

    .play-triangle {
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 18px solid #c9a84c;
      margin-left: 4px;
    }

    .video-note {
      font-size: 0.78rem;
      color: rgba(240, 230, 200, 0.3);
      max-width: 400px;
      text-align: center;
      line-height: 1.6;
    }

    
    .benefits {
      padding: 5rem 2rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .benefits-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1px;
      border: 1px solid rgba(201, 168, 76, 0.1);
    }

    .benefit-item {
      padding: 2rem 1.75rem;
      border: 1px solid rgba(201, 168, 76, 0.1);
      background: rgba(201, 168, 76, 0.02);
      transition: background 0.3s;
    }

    .benefit-item:hover {
      background: rgba(201, 168, 76, 0.07);
    }

    .benefit-icon {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      color: #c9a84c;
    }

    .benefit-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      color: #f0e6c8;
      margin-bottom: 0.5rem;
    }

    .benefit-desc {
      font-size: 0.82rem;
      color: rgba(240, 230, 200, 0.45);
      line-height: 1.65;
      font-weight: 300;
    }

    
    .testimonials {
      padding: 5rem 2rem;
      background: rgba(201, 168, 76, 0.03);
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .testimonials-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      border: 1px solid rgba(201, 168, 76, 0.15);
      padding: 1.75rem;
      border-radius: 2px;
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      color: rgba(201, 168, 76, 0.2);
      position: absolute;
      top: 0.5rem;
      left: 1.25rem;
      line-height: 1;
    }

    .testimonial-text {
      font-size: 0.85rem;
      color: rgba(240, 230, 200, 0.65);
      line-height: 1.7;
      margin-bottom: 1.25rem;
      font-weight: 300;
      margin-top: 1.5rem;
    }

    .testimonial-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: #c9a84c;
      font-weight: 400;
    }

    .stars {
      color: #c9a84c;
      font-size: 0.7rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    
    .guarantee {
      padding: 5rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .guarantee-shield {
      width: 64px;
      height: 64px;
      border: 1.5px solid rgba(201, 168, 76, 0.4);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    
    .cta-section {
      padding: 6rem 2rem;
      text-align: center;
      position: relative;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: #c9a84c;
      margin: 1rem 0;
    }

    .cta-price sup {
      font-size: 1.2rem;
      vertical-align: super;
      margin-right: 2px;
    }

    .cta-note {
      font-size: 0.75rem;
      color: rgba(240, 230, 200, 0.3);
      margin-top: 1.5rem;
      letter-spacing: 0.05em;
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .divider {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
      margin: 0 auto;
    }

    footer {
      padding: 2rem;
      text-align: center;
      border-top: 1px solid rgba(201, 168, 76, 0.08);
      font-size: 0.72rem;
      color: rgba(240, 230, 200, 0.25);
      letter-spacing: 0.05em;
    }

    
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.shown {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 600px) {
      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    
    .btn-gold.glow {
      box-shadow: 0 0 25px 8px rgba(201, 168, 76, 0.6);
      transform: scale(1.05);
    }

    .click-tooltip {
      position: absolute;
      background: #c9a84c;
      color: #0a0a0f;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
      white-space: nowrap;
    }

    .click-tooltip::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #c9a84c;
    }

    .click-tooltip.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
      from {
        transform: translateX(-50%) translateY(0);
      }

      to {
        transform: translateX(-50%) translateY(-6px);
      }
    }

    
    #vsl-screen {
      display: none;
      opacity: 0;
      transition: opacity 0.8s ease;
      min-height: 100vh;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    #vsl-screen.visible {
      display: flex;
      opacity: 1;
    }

    .vsl-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 300;
      color: #f0e6c8;
      margin-bottom: 2.5rem;
      line-height: 1.15;
    }

    .video-wrapper {
      width: 100%;
      max-width: 860px;
      aspect-ratio: 16/9;
      background: #000;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(201, 168, 76, 0.3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
      position: relative;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .vsl-info {
      margin-top: 2.5rem;
      font-size: 0.95rem;
      color: rgba(240, 230, 200, 0.6);
      font-weight: 300;
      max-width: 600px;
      line-height: 1.6;
    }