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

    :root {
      --pink-bright:   #F72585;
      --pink-soft:     #FF8DC7;
      --pink-pale:     #FFD6EC;
      --pink-ultralight: #FFF0F8;

      --burgundy:      #6B1A3A;
      --burgundy-mid:  #9B2559;
      --burgundy-light:#D4547A;

      --cream:         #FFFAF8;
      --white:         #FFFFFF;

      --text-dark:     #1A0A12;       /* near-black for accessibility */
      --text-body:     #3A0A20;       /* deep burgundy-black — high contrast */
      --text-muted:    #6B2B48;       /* darker than original for AA compliance */
      --border:        rgba(215, 84, 122, 0.25);
      --border-strong: rgba(107, 26, 58, 0.4);

      --shadow-pink:   0 8px 40px rgba(247, 37, 133, 0.2);
      --shadow-dark:   0 4px 24px rgba(58, 10, 32, 0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      line-height: 1.6;
      font-size: 16px;          /* min 15px+ accessibility */
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        radial-gradient(circle at 15% 20%, rgba(247,37,133,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(107,26,58,0.08) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

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

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0 2.5rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 250, 248, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Nunito', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--burgundy);
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .logo-text span { color: var(--pink-bright); }

    .nav-yt {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      background: var(--pink-bright);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      transition: all 0.2s;
      box-shadow: var(--shadow-pink);
    }

    .nav-yt:hover {
      background: var(--burgundy-mid);
      box-shadow: var(--shadow-dark);
      transform: translateY(-1px);
    }

    .nav-yt .yt-icon { width: 15px; height: 15px; fill: #fff; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8rem 2rem 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1100px;
      width: 100%;
      align-items: center;
    }

    .hero-left { animation: fadeUp 0.7s ease both; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--burgundy);
      background: var(--pink-pale);
      border: 1.5px solid rgba(247,37,133,0.35);
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--burgundy);
      margin-bottom: 1.2rem;
    }

    .hero h1 .italic {
      font-style: italic;
      color: var(--pink-bright);
      display: block;
    }

    .hero-sub {
      font-size: 1.15rem;       /* 18.4px — important info, well above 15px */
      font-weight: 400;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 1.8rem;
      max-width: 480px;
    }

    /* ── FEATURE LIST ── */
    .features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .features li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-body);
      padding: 0.45rem 0;
    }

    .features li::before {
      content: '✓';
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: var(--pink-bright);
      color: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      margin-top: 1px;
    }

    /* ── FORM ── */
    .form-card {
      background: var(--white);
      border: 1.5px solid var(--border-strong);
      border-radius: 20px;
      padding: 2rem;
      box-shadow: var(--shadow-dark);
      animation: fadeUp 0.7s 0.15s ease both;
    }

    .form-card h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--burgundy);
      margin-bottom: 0.4rem;
      line-height: 1.2;
    }

    .form-card .form-sub {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 1.4rem;
    }

    .form-group { margin-bottom: 1rem; }

    .form-group label {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-body);
      margin-bottom: 0.4rem;
    }

    .form-group input {
      width: 100%;
      font-family: 'Jost', sans-serif;
      font-size: 1.05rem;       /* 16.8px — input clarity */
      font-weight: 400;
      color: var(--text-body);
      background: var(--cream);
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      transition: all 0.2s;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--pink-bright);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(247,37,133,0.15);
    }

    .form-group input::placeholder { color: #B58AA0; }

    .btn-submit {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: var(--pink-bright);
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 1rem 2rem;
      border-radius: 100px;
      box-shadow: var(--shadow-pink);
      transition: all 0.2s;
      margin-top: 0.5rem;
    }

    .btn-submit:hover:not(:disabled) {
      background: var(--burgundy-mid);
      transform: translateY(-2px);
      box-shadow: var(--shadow-dark);
    }

    .btn-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .btn-submit svg { width: 18px; height: 18px; fill: #fff; }

    .form-note {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1rem;
      line-height: 1.5;
    }

    /* ── PREVIEW IMAGE ── */
    .preview {
      position: relative;
      max-width: 480px;
      margin: 0 auto;
    }

    .preview-img {
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 20px 60px rgba(58, 10, 32, 0.25);
      border: 6px solid var(--white);
      aspect-ratio: 3/4;
      object-fit: cover;
      background: linear-gradient(135deg, var(--pink-pale), var(--pink-ultralight));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .preview-badge {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--burgundy);
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 0.7rem 1.3rem;
      border-radius: 100px;
      box-shadow: var(--shadow-dark);
      transform: rotate(8deg);
    }

    /* ── SOCIAL PROOF STRIP ── */
    .proof {
      background: var(--burgundy);
      color: var(--white);
      padding: 2.5rem 2rem;
      text-align: center;
    }

    .proof-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .proof-stat {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--pink-soft);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .proof-label {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      opacity: 0.9;
    }

    /* ── FOOTER ── */
    footer {
      padding: 2rem 2.5rem;
      text-align: center;
      border-top: 1px solid var(--border);
      background: var(--cream);
    }

    footer p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    footer a {
      color: var(--burgundy);
      text-decoration: none;
      font-weight: 600;
    }

    footer a:hover { color: var(--pink-bright); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 880px) {
      nav { padding: 0 1.25rem; }
      .logo-text { font-size: 1.25rem; }
      .nav-yt { font-size: 0.75rem; padding: 0.45rem 0.95rem; }

      .hero { padding: 6rem 1.25rem 3rem; }
      .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-right { order: -1; }
      .preview { max-width: 320px; }
      .preview-badge { font-size: 0.85rem; padding: 0.6rem 1.1rem; }

      .form-card { padding: 1.5rem; }
      .form-card h2 { font-size: 1.5rem; }

      .proof-inner { grid-template-columns: 1fr; gap: 1.5rem; }
      .proof-stat { font-size: 2rem; }
    }
