/*
*,
*::before,
*::after { 
  box-sizing: border-box; 
}
html {
 scroll-behavior: smooth; 
}
body {
  margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #0f172a;          
  background: #f8fafc;     
}
#header {
  position: fixed;      
  top: 0;
  left: 0;
  width: 100%;          
  display: flex;         
  justify-content: space-between; 
  align-items: center;  
  background: #fff;
  padding: 10px 20px;
  z-index: 1000;        
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


#header-img {
  height: 100px;
}


#nav-bar {
  display: flex;
  gap: 20px;            
}
#nav-bar .nav-link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}
#nav-bar .nav-link:hover{ 
  background: #f1f5f9;
  outline: none;
}
section {
  padding: 56px 20px;
}
#hero {
  text-align: center;
  padding: 72px 20px;
  background: radial-gradient(1200px 400px at 50% -10%, #e2e8f033, transparent 70%);
}
#hero h1 { 
  font-size: clamp(1.6rem, 3vw, 2.4rem); 
  margin: 0 0 8px; 
  }
#hero p  { 
  margin: 0 0 18px; 
  color: #334155; 
}
#form{display: flex;          
  gap: 10px;
  justify-content: center;
  flex-wrap: no-wrap;
  margin-top: 12px;
}
#email {
  padding: 12px 14px;
  min-width: 260px;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
}
#email:focus { 
  border-color: #64748b;
   }
   #submit {
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: #50afdb;     
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
#submit:hover { background: #0284c7; 
}
features {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
#features ul {
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  max-width: 900px;
  display: grid;           
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
#features li {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 14px 16px;
}
#video-section { text-align: center; background: #fff; }
#video {
  width: min(100%, 880px);
  aspect-ratio: 16 / 9;     
  height: auto;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.08);
}
#pricing {
  background: #f8fafc;
}
.pricing-container {
  margin: 18px auto 0;
  max-width: 1100px;
  display: flex;            
  gap: 18px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.pricing-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(2, 8, 23, 0.04);
}
.pricing-box h3 { margin: 0 0 6px; }
.pricing-box p  { font-size: 1.1rem; font-weight: 700; color: #0ea5e9; }
@media (max-width: 900px) {
  #header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  body { padding-top: 96px; } 
  #nav-bar { gap: 10px; }
  #hero { padding: 64px 16px; }
}

@media (min-width: 1200px) {
  body { font-size: 18px; }   
}*/
/* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #faf9f6;
      --bg-alt:     #f2efe8;
      --surface:    #ffffff;
      --ink:        #1a1208;
      --ink-mid:    #4a4030;
      --ink-soft:   #8a7e6a;
      --gold:       #b8892a;
      --gold-light: #d4a843;
      --gold-glow:  rgba(184,137,42,0.18);
      --border:     #e5ddd0;
      --shadow-sm:  0 2px 8px rgba(26,18,8,0.06);
      --shadow-md:  0 8px 32px rgba(26,18,8,0.10);
      --shadow-lg:  0 20px 60px rgba(26,18,8,0.13);
      --radius:     14px;
      --nav-h:      72px;
      --t:          0.28s cubic-bezier(0.4,0,0.2,1);
    }

    [data-theme="dark"] {
      --bg:        #0e0c08;
      --bg-alt:    #161410;
      --surface:   #1e1b14;
      --ink:       #f0ead8;
      --ink-mid:   #c8bfa8;
      --ink-soft:  #7a7060;
      --border:    #2e2a20;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
      --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.65;
      transition: background var(--t), color var(--t);
      padding-top: var(--nav-h);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      transition: background var(--t), box-shadow var(--t);
    }

    #header.scrolled {
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(12px);
    }

    .logo-link {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }

    #header-img {
      height: 38px; width: 38px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 700;
      color: var(--ink); letter-spacing: 0.02em;
    }

    #nav-bar { display: flex; gap: 4px; }

    .nav-link {
      text-decoration: none;
      color: var(--ink-mid);
      font-size: 14px; font-weight: 500;
      padding: 7px 14px; border-radius: 8px;
      transition: background var(--t), color var(--t);
    }

    .nav-link:hover { background: var(--bg-alt); color: var(--ink); }

    .nav-actions { display: flex; align-items: center; gap: 10px; }

    #dark-toggle {
      width: 38px; height: 38px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: var(--surface);
      cursor: pointer; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--t), transform 0.4s;
    }

    #dark-toggle:hover { background: var(--bg-alt); transform: rotate(20deg); }

    [data-theme="light"] .icon-moon { display: none; }
    [data-theme="dark"]  .icon-sun  { display: none; }

    .btn-nav-cta {
      padding: 8px 20px;
      background: var(--gold); color: #fff;
      text-decoration: none;
      font-size: 14px; font-weight: 600;
      border-radius: 8px;
      transition: background var(--t), transform var(--t), box-shadow var(--t);
    }

    .btn-nav-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px var(--gold-glow);
    }

    #hamburger {
      display: none;
      background: none;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 10px; font-size: 18px;
      cursor: pointer; color: var(--ink);
    }

    #mobile-menu {
      display: none; flex-direction: column;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 12px 20px; gap: 4px;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      z-index: 999;
      box-shadow: var(--shadow-md);
    }

    #mobile-menu.open { display: flex; }
    #mobile-menu .nav-link { font-size: 15px; padding: 10px 14px; }

    /* ── HERO ── */
    #hero {
      min-height: calc(100vh - var(--nav-h));
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      padding: 80px 64px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 12px; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold);
      background: var(--gold-glow);
      border: 1px solid rgba(184,137,42,0.25);
      padding: 5px 14px; border-radius: 99px;
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 700; line-height: 1.1;
      margin-bottom: 18px; color: var(--ink);
    }

    .hero-content h1 em { font-style: italic; color: var(--gold); }

    .hero-content > p {
      font-size: 16px; color: var(--ink-mid);
      max-width: 420px; margin-bottom: 28px;
    }

    #form {
      display: flex; gap: 10px;
      flex-wrap: wrap; margin-bottom: 14px;
    }

    #email {
      flex: 1; min-width: 220px;
      padding: 13px 16px;
      font-family: 'Outfit', sans-serif; font-size: 14px;
      border: 1.5px solid var(--border); border-radius: 10px;
      background: var(--surface); color: var(--ink);
      outline: none;
      transition: border-color var(--t), box-shadow var(--t);
    }

    #email:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-glow);
    }

    #email::placeholder { color: var(--ink-soft); }

    .btn-cta {
      display: flex; align-items: center; gap: 8px;
      padding: 13px 22px;
      background: var(--gold); color: #fff;
      border: none; border-radius: 10px;
      font-family: 'Outfit', sans-serif;
      font-size: 14px; font-weight: 600;
      cursor: pointer; position: relative; overflow: hidden;
      transition: background var(--t), transform var(--t), box-shadow var(--t);
    }

    .btn-cta:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px var(--gold-glow);
    }

    .btn-cta svg { transition: transform var(--t); }
    .btn-cta:hover svg { transform: translateX(3px); }

    .hero-note { font-size: 12px; color: var(--ink-soft); }

    /* Watch visual */
    .hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      height: 360px;
    }

    .watch-ring {
      position: absolute; border-radius: 50%;
      border: 1px solid var(--gold-glow);
      animation: pulse-ring 4s ease-in-out infinite;
    }

    .ring-1 { width: 260px; height: 260px; animation-delay: 0s; }
    .ring-2 { width: 320px; height: 320px; animation-delay: 0.8s; border-style: dashed; }

    @keyframes pulse-ring {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50%       { opacity: 0.8; transform: scale(1.04); }
    }

    .watch-face {
      width: 170px; height: 200px;
      background: linear-gradient(145deg, #1a1208, #2e2416);
      border-radius: 42px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 6px #3a2e1c, 0 0 0 8px #b8892a44;
      display: flex; align-items: center; justify-content: center;
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    .watch-screen { text-align: center; }

    .watch-time {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px; font-weight: 600;
      color: #f0d090; letter-spacing: 2px; line-height: 1;
    }

    .watch-date {
      display: block;
      font-size: 11px; font-weight: 500;
      color: #a08050; letter-spacing: 3px;
      margin-top: 8px; text-transform: uppercase;
    }

    /* ── SHARED SECTION ── */
    section { padding: 96px 32px; }

    .section-label {
      font-size: 11px; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); text-align: center; margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 700; text-align: center;
      color: var(--ink); margin-bottom: 52px; line-height: 1.2;
    }

    /* ── FEATURES ── */
    #features { background: var(--bg-alt); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px; max-width: 1100px; margin: 0 auto;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }

    .feature-icon { font-size: 28px; margin-bottom: 14px; display: block; }

    .feature-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 600;
      color: var(--ink); margin-bottom: 8px;
    }

    .feature-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

    /* ── VIDEO ── */
    #video-section { background: var(--bg); text-align: center; }

    .video-wrapper {
      max-width: 880px; margin: 0 auto;
      border-radius: 20px; overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      aspect-ratio: 16 / 9;
    }

    #video { width: 100%; height: 100%; display: block; border: 0; }

    .yt-facade {
      position: relative; width: 100%; height: 100%;
      cursor: pointer; border-radius: 20px; overflow: hidden; background: #000;
    }
    .yt-thumb {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.4s ease, opacity 0.3s; opacity: 0.85;
    }
    .yt-facade:hover .yt-thumb { transform: scale(1.03); opacity: 0.7; }
    .yt-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    }
    .yt-play-btn {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -55%);
      background: none; border: none; cursor: pointer;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
      transition: transform 0.2s ease;
    }
    .yt-facade:hover .yt-play-btn { transform: translate(-50%, -55%) scale(1.12); }
    .yt-label {
      position: absolute; bottom: 20px; left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.6); color: #fff;
      font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: 99px;
      letter-spacing: 0.5px; backdrop-filter: blur(6px); white-space: nowrap;
    }

    /* ── PRICING ── */
    #pricing { background: var(--bg-alt); }

    .pricing-container {
      display: flex; gap: 22px;
      flex-wrap: wrap; justify-content: center;
      align-items: stretch;
      max-width: 1000px; margin: 0 auto;
    }

    .pricing-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      flex: 1 1 260px; max-width: 310px;
      text-align: center; position: relative;
      transition: transform var(--t), box-shadow var(--t);
    }

    .pricing-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

    .pricing-box.featured {
      border-color: var(--gold);
      box-shadow: 0 0 0 2px var(--gold-glow), var(--shadow-md);
      transform: scale(1.03);
    }

    .pricing-box.featured:hover { transform: scale(1.03) translateY(-4px); }

    .popular-tag {
      position: absolute; top: -13px; left: 50%;
      transform: translateX(-50%);
      background: var(--gold); color: #fff;
      font-size: 11px; font-weight: 600;
      letter-spacing: 1px; padding: 4px 14px;
      border-radius: 99px; white-space: nowrap;
    }

    .plan-badge {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 700;
      color: var(--ink); margin-bottom: 8px;
    }

    .plan-price {
      font-size: 42px; font-weight: 700;
      color: var(--gold); margin-bottom: 20px; line-height: 1;
    }

    .plan-price span { font-size: 16px; font-weight: 400; color: var(--ink-soft); }

    .plan-features {
      list-style: none; text-align: left; margin-bottom: 24px;
    }

    .plan-features li {
      font-size: 14px; color: var(--ink-mid);
      padding: 6px 0; border-bottom: 1px solid var(--border);
    }

    .plan-features li.disabled {
      color: var(--ink-soft); text-decoration: line-through; opacity: 0.5;
    }

    .btn-plan {
      display: block; padding: 12px;
      background: var(--bg-alt); color: var(--ink);
      text-decoration: none; font-size: 14px; font-weight: 600;
      border-radius: 10px; border: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: background var(--t), color var(--t), transform var(--t);
    }

    .btn-plan:hover {
      background: var(--gold); color: #fff;
      border-color: var(--gold); transform: translateY(-1px);
    }

    .pricing-box.featured .btn-plan {
      background: var(--gold); color: #fff; border-color: var(--gold);
    }

    .pricing-box.featured .btn-plan:hover { background: var(--gold-light); }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--bg); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px; max-width: 1000px; margin: 0 auto;
    }

    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 26px;
      transition: transform var(--t), box-shadow var(--t);
    }

    .testimonial-card:hover {
      transform: translateY(-4px); box-shadow: var(--shadow-md);
    }

    .stars { font-size: 16px; color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }

    .testimonial-card > p {
      font-size: 14.5px; color: var(--ink-mid);
      line-height: 1.7; font-style: italic; margin-bottom: 20px;
    }

    .testimonial-author { display: flex; align-items: center; gap: 12px; }

    .author-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #fff; font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .testimonial-author strong { display: block; font-size: 14px; color: var(--ink); }
    .testimonial-author span  { font-size: 12px; color: var(--ink-soft); }

    /* ── FOOTER ── */
    #footer {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      padding: 40px 32px;
    }

    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }

    .footer-brand {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 700; color: var(--ink);
    }

    .footer-brand img { border-radius: 6px; }

    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

    .footer-links a {
      text-decoration: none; font-size: 14px;
      color: var(--ink-soft);
      transition: color var(--t);
    }

    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 13px; color: var(--ink-soft); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RIPPLE ── */
    @keyframes ripple-anim { to { transform: scale(2.5); opacity: 0; } }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
      .hero-content > p { max-width: 100%; }
      #form { justify-content: center; }
      .hero-visual { height: 280px; }
      #nav-bar, .nav-actions .btn-nav-cta { display: none; }
      #hamburger { display: flex; }
      section { padding: 72px 20px; }
    }

    @media (max-width: 600px) {
      .pricing-box.featured { transform: scale(1); }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
