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

  :root {
    --navy:  #1B2A3E;
    --deep:  #131F2E;
    --mid:   #243348;
    --steel: #2E4160;
    --frost: #C8D8EC;
    --mist:  #8BA4BF;
    --gold:  #C49A5A;
    --white: #F0F4F8;
    --green-text: #7ABFA0;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--deep);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 10% 20%, rgba(46,65,96,0.55) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 90% 70%, rgba(30,50,75,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 30% 30% at 50% 90%, rgba(196,154,90,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,216,236,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,216,236,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  * { position: relative; z-index: 1; }

  /* NAV */
  nav {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200,216,236,0.08);
    position: sticky;
    top: 0;
    background: rgba(19,31,46,0.94);
    backdrop-filter: blur(14px);
    z-index: 100;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--frost);
    text-decoration: none;
  }
  .logo em { font-style: italic; color: var(--gold); font-weight: 600; }

  .nav-btns { display: flex; gap: 8px; }

  .btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 400;
    color: var(--mist);
    background: none;
    border: 1px solid rgba(200,216,236,0.15);
    padding: 8px 14px; border-radius: 6px;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-ghost:hover { color: var(--frost); border-color: rgba(200,216,236,0.3); }

  .btn-solid {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 500;
    color: var(--deep);
    background: var(--frost);
    border: none; padding: 8px 14px; border-radius: 6px;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-solid:hover { background: var(--white); }

  /* SECTIONS */
  section {
    padding: 64px 24px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* HERO */
  .hero {
    padding-top: 72px;
    padding-bottom: 56px;
    text-align: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.85;
  }

  .eyebrow-line {
    width: 18px; height: 1px;
    background: var(--gold); opacity: 0.5;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 10vw, 58px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -1.5px;
    color: var(--frost);
    margin-bottom: 18px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--white);
    font-weight: 400;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.72;
    color: var(--mist);
    font-weight: 300;
    margin-bottom: 12px;
  }

  .hero-note {
    font-size: 12.5px;
    color: rgba(139,164,191,0.6);
    font-style: italic;
    margin-bottom: 36px;
    line-height: 1.6;
  }

  .hero-note strong {
    color: var(--green-text);
    font-style: normal;
    font-weight: 500;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-btns .btn-solid {
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-btns .btn-ghost {
    font-size: 14px;
    padding: 12px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-proof {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--mist);
  }

  .proof-check {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(122,191,160,0.15);
    border: 1px solid rgba(122,191,160,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 8px;
    color: var(--green-text);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* DIVIDER */
  .divider {
    border: none;
    border-top: 1px solid rgba(200,216,236,0.07);
    margin: 0 24px;
  }

  /* SECTION EYEBROW */
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .section-eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    white-space: nowrap;
  }

  .section-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(196,154,90,0.2), transparent);
  }

  /* HOW IT WORKS */
  .how h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 36px;
  }

  .how h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .steps { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,216,236,0.06);
    align-items: start;
  }

  .step:last-child { border-bottom: none; }

  .step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3px;
    gap: 6px;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    opacity: 0.7;
  }

  .step-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(196,154,90,0.25);
    border: 1px solid rgba(196,154,90,0.4);
  }

  .step-who {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .step-who.you { color: var(--gold); opacity: 0.7; }
  .step-who.us { color: var(--green-text); opacity: 0.7; }
  .step-who.win { color: var(--frost); opacity: 0.5; }

  .step-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--frost);
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mist);
    font-weight: 300;
  }

  /* COMPARISON TABLE */
  .compare-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .compare-section h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .compare-sub {
    font-size: 13px;
    color: var(--mist);
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
  }

  .compare-table thead tr {
    background: rgba(200,216,236,0.05);
  }

  .compare-table th {
    padding: 14px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mist);
    text-align: center;
    border-bottom: 1px solid rgba(200,216,236,0.08);
  }

  .compare-table th:first-child { text-align: left; }

  .compare-table td {
    padding: 14px 12px;
    font-size: 13px;
    color: var(--mist);
    border-bottom: 1px solid rgba(200,216,236,0.05);
    text-align: center;
    vertical-align: middle;
  }

  .compare-table td:first-child {
    text-align: left;
    color: var(--frost);
    font-weight: 400;
  }

  .compare-table tr:last-child td { border-bottom: none; }

  .compare-table tr:nth-child(even) td {
    background: rgba(200,216,236,0.02);
  }

  .col-bidroute { color: var(--green-text) !important; font-weight: 500; }
  .col-bad { color: rgba(139,164,191,0.4) !important; }

  .check-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(122,191,160,0.12);
    border: 1px solid rgba(122,191,160,0.3);
    color: var(--green-text);
    font-size: 10px;
    font-weight: 700;
  }

  .check-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(200,216,236,0.04);
    border: 1px solid rgba(200,216,236,0.08);
    color: rgba(139,164,191,0.3);
    font-size: 10px;
  }

  /* EARNINGS CARD */
  .earnings-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .earnings-section h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .earnings-sub {
    font-size: 13px;
    color: var(--mist);
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .earnings-card {
    background: rgba(27,42,62,0.6);
    border: 1px solid rgba(200,216,236,0.09);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(8px);
  }

  .earnings-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 16px;
  }

  .earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(200,216,236,0.06);
  }

  .earnings-row:last-child { border-bottom: none; }

  .earnings-row-label {
    font-size: 13px;
    color: var(--mist);
  }

  .earnings-row-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--frost);
  }

  .earnings-row-val.green { color: var(--green-text); }
  .earnings-row-val.red { color: rgba(200,100,100,0.8); }

  .earnings-total {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(122,191,160,0.07);
    border: 1px solid rgba(122,191,160,0.15);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .earnings-total-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--green-text);
    letter-spacing: 0.5px;
  }

  .earnings-total-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--green-text);
    letter-spacing: -0.5px;
  }

  .earnings-note {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(139,164,191,0.4);
    font-style: italic;
    text-align: center;
  }

  /* TESTIMONIALS */
  .t-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 28px;
  }

  .t-section h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .t-cards { display: flex; flex-direction: column; gap: 14px; }

  .t-card {
    background: rgba(27,42,62,0.5);
    border: 1px solid rgba(200,216,236,0.08);
    border-radius: 12px;
    padding: 20px;
  }

  .t-quote {
    font-size: 14px;
    line-height: 1.65;
    color: var(--frost);
    font-weight: 300;
    margin-bottom: 16px;
    font-style: italic;
  }

  .t-author { display: flex; align-items: center; gap: 10px; }

  .t-av {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
  }

  .tav1 { background: linear-gradient(135deg, #2E5B3A, #4A8A5A); }
  .tav2 { background: linear-gradient(135deg, #3A4A6B, #5A6A9B); }

  .t-name { font-size: 12px; font-weight: 500; color: var(--frost); }
  .t-detail { font-size: 11px; color: var(--mist); }

  /* CTA */
  .cta-section {
    padding-top: 0;
    padding-bottom: 80px;
    text-align: center;
  }

  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 8vw, 44px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .cta-section h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .cta-section p {
    font-size: 14px;
    color: var(--mist);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cta-btns .btn-solid {
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .cta-btns .btn-ghost {
    font-size: 14px;
    padding: 12px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .cta-fine {
    margin-top: 18px;
    font-size: 11px;
    color: rgba(139,164,191,0.35);
    letter-spacing: 0.3px;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(200,216,236,0.07);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(200,216,236,0.25);
    text-decoration: none;
  }
  .footer-logo em { font-style: italic; color: rgba(196,154,90,0.35); }

  .footer-copy {
    font-size: 11px;
    color: rgba(139,164,191,0.25);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { animation: fadeUp 0.7s ease both; }
  .how { animation: fadeUp 0.7s 0.1s ease both; }
  .compare-section { animation: fadeUp 0.7s 0.2s ease both; }
  .earnings-section { animation: fadeUp 0.7s 0.25s ease both; }
  .t-section { animation: fadeUp 0.7s 0.3s ease both; }
  .cta-section { animation: fadeUp 0.7s 0.4s ease both; }
