<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold:    #F5A623;
    --gold-l:  #FFCF6B;
    --gold-d:  #C47D0A;
    --bg:      #0C0A07;
    --bg2:     #131008;
    --surface: #1C1710;
    --border:  rgba(245,166,35,0.15);
    --text:    #F0EAD6;
    --muted:   #8A7E68;
    --white:   #FFFDF7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 90%; z-index: 100;
    padding: 0 clamp(1.5rem,5vw,4rem);
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(12,10,7,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 700; font-size: 1.0rem;
    color: #53b206;
    text-decoration: none;
    letter-spacing: -0.02em;
    margin-left: -25;
  }

  .nav-logo .dot {
    width: 10px; height: 10px;
    background: #53b206;
    border-radius: 50%;
    box-shadow: 0 0 12px #53b206;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { box-shadow: 0 0 8px var(--gold); opacity: 1; }
    50% { box-shadow: 0 0 20px var(--gold-l); opacity: 0.7; }
  }

  .btn-nav {
    background: #53b206;
    color: var(--bg);
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 0.875rem;
    padding: 0.55rem 1.35rem;
    border-radius: 100px;
    display: flex; align-items: center; gap: 6px;
    transition: transform 0.2s, background 0.2s;
  }
  .btn-nav:hover { background: #82d93a; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 90svh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 100px clamp(1.5rem,5vw,4rem) 60px;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    width: 680px; height: 680px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
  }

  .hero-glow2 {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px; right: -80px;
    pointer-events: none;
  }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem; color: var(--gold);
    background: rgba(245,166,35,0.07);
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }

  .badge-dot {
    width: 6px; height: 6px;
    background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 1.5s ease-in-out infinite;
  }

  h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 14ch;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 .accent {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted);
    max-width: 42ch;
    margin: 1.5rem auto 0;
    line-height: 1.3;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    margin-top: 2.5rem;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: #53b206;
    color: var(--bg);
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 rgba(245,166,35,0);
  }
  .btn-primary:hover {
    background: #53b206;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,166,35,0.3);
  }

  .btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(245,166,35,0.2);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400; font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(245,166,35,0.5); }

  /* ── RATE CARD ── */
  .rate-card {
    margin-top: 4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 3rem;
    display: inline-flex; flex-direction: column; align-items: center;
    gap: 0.5rem;
    position: relative;
    animation: fadeUp 0.6s 0.4s ease both;
    box-shadow: 0 0 80px rgba(245,166,35,0.08);
  }

  .rate-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(245,166,35,0.3), transparent 60%);
    z-index: -1;
    pointer-events: none;
  }

  .rate-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted);
  }

  .rate-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .rate-sub {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--muted);
  }

  .rate-change {
    color: #4ade80;
    font-weight: 500;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 8px; border-radius: 100px;
  }

  .rate-updated {
    display: flex; align-items: center; gap: 5px;
    margin-top: 0.25rem;
    font-size: 0.72rem; color: var(--muted);
  }

  .rate-updated .live {
    width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 1.5s ease-in-out infinite;
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    padding: 1.5rem clamp(1.5rem,5vw,4rem);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    display: flex; align-items: center; justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--muted);
  }

  .trust-icon {
    width: 28px; height: 28px;
    background: rgba(245,166,35,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
  }

  /* ── FEATURES ── */
  .section {
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
    max-width: 1200px; margin: 0 auto;
  }

  .section-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: #53b206; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 8px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px; background: var(--gold);
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 18ch;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .feature-card:hover {
    border-color: rgba(245,166,35,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .feature-emoji {
    font-size: 2rem; margin-bottom: 1rem;
    display: block;
  }

  .feature-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.5rem;
  }

  .feature-desc {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--muted);
  }

  /* ── HOW TO ── */
  .how-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem; margin-top: 1rem;
  }

  .step {
    display: flex; flex-direction: column; gap: 1rem;
    position: relative;
  }

  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(245,166,35,0.15);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .step-title {
    font-weight: 500; font-size: 1rem; color: var(--white); margin-bottom: 0.25;
  }

  .step-desc {
    font-size: 1rem; color: var(--muted); line-height: 1.6; margin-top: -0.50rem;
  }

  /* ── SOCIAL PROOF ── */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }

  .testi {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
  }

  .testi-stars {
    color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem;
    letter-spacing: 2px;
  }

  .testi-text {
    font-size: 0.9rem; line-height: 1.7; color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
  }

  .testi-author {
    font-size: 0.8rem; color: var(--muted);
  }

  .testi-author strong {
    color: var(--text); font-style: normal;
  }

  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem; margin-top: 3rem;
  }

  .stat-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s;
  }
  .stat-box:hover { border-color: rgba(245,166,35,0.4); }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem; font-weight: 900;
    color: var(--gold); letter-spacing: -0.04em;
  }

  .stat-label {
    font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem;
  }

  /* ── CTA ── */
  .cta-section {
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
    text-align: center;
    position: relative; overflow: hidden;
  }

  .cta-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
  }

  .cta-inner {
    max-width: 600px; margin: 0 auto; position: relative;
  }

  .cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white); line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }

  .cta-sub {
    color: var(--muted); font-size: 1rem; line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  /* ── FOOTER ── */
  footer {
    padding: 3rem clamp(1.5rem,5vw,4rem);
    border-top: 1px solid var(--border);
    background: var(--bg2);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem; color: var(--muted);
  }

  footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--gold); }

  .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

  /* ── UTILS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .appear {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .appear.visible { opacity: 1; transform: translateY(0); }

  svg.icon { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  @media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions button { width: 100%; justify-content: center; }
    .trust-strip { gap: 1rem; }
    .rate-card { padding: 1.5rem 2rem; width: 100%; }
  }
</style>