    :root{
      --bg: #0b0d12;
      --bg-soft: #11151c;
      --card: #171b23;
      --text: #e6e9f0;
      --muted: #a9b1c3;
      --brand: #ff5470;
      --brand-2: #36e2b4;
      --ring: rgba(255,84,112,0.5);
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --radius: 18px;
    }
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body{
      margin:0; background: linear-gradient(180deg, #0b0d12, #0e1117);
      color: var(--text); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
      line-height: 1.45;
    }
    a{ color: inherit; text-decoration: none; }
    .container{ width: min(1120px, 92%); margin: 0 auto; }
    /* Nav */
    .nav{ position: sticky; top:0; backdrop-filter: blur(8px); background: rgba(11,13,18,.6); border-bottom: 1px solid rgba(255,255,255,.06); z-index: 40; }
    .nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
    .brand{ display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.4px; }
    .badge{ width:36px; height:36px; display:grid; place-items:center; background: radial-gradient(90% 90% at 30% 20%, var(--brand), var(--brand-2)); border-radius: 10px; box-shadow: var(--shadow); }
    .nav a{ color: var(--muted); font-weight:600; }
    .nav .actions{ display:flex; gap:10px; align-items:center; }
    .btn{ appearance:none; border:0; padding:12px 18px; border-radius: 14px; font-weight:700; cursor:pointer; transition: transform .06s ease, box-shadow .2s ease, background .2s ease; }
    .btn:active{ transform: translateY(1px) scale(.99); }
    .btn-ghost{ background: transparent; color: var(--text); border:1px solid rgba(255,255,255,.12); }
    .btn-primary{ background: linear-gradient(135deg, var(--brand), #ff7a93); color:#0b0d12; box-shadow: 0 8px 24px rgba(255,84,112,.28); }

    /* Hero */
    .hero{ display:grid; grid-template-columns: 1.1fr 1fr; gap:40px; align-items:center; padding:64px 0 40px; }
    .hero h1{ font-family: "Playfair Display", serif; font-weight:700; font-size: clamp(36px, 5vw, 56px); line-height: 1.05; margin: 0 0 18px; }
    .hero p{ color: var(--muted); font-size: clamp(16px, 2.2vw, 18px); margin: 0 0 26px; }

    .cta-card{ background: linear-gradient(160deg, rgba(54,226,180,.10), rgba(255,84,112,.08)); border:1px solid rgba(255,255,255,.06); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; display:grid; grid-template-columns: 1fr; gap:12px; }
    .cta-card form{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .field{ display:flex; flex-direction:column; gap:6px; }
    .field label{ font-size: 12px; color: var(--muted); }
    .input, select{ background: #0f131a; border:1px solid rgba(255,255,255,.1); color: var(--text); border-radius: 12px; padding:12px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; width: 100%; }
    .input:focus, select:focus{ border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }
    .cta-actions{ grid-column: 1 / -1; display:flex; gap:10px; align-items:center; }
    .tiny{ font-size:12px; color: var(--muted); }

    .hero-media{ position:relative; }
    .photo-wrap{ position:relative; border-radius: calc(var(--radius) + 6px); overflow:hidden; box-shadow: var(--shadow); border:1px solid rgba(255,255,255,.08); }
    .photo-wrap img{ width:100%; height: 100%; display:block; object-fit: cover; aspect-ratio: 4/5; }
    .figcap{ position:absolute; left:12px; bottom:12px; font-size: 12px; color: #dbe3f2; background: rgba(11,13,18,.55); backdrop-filter: blur(6px); padding:8px 10px; border-radius: 10px; border:1px solid rgba(255,255,255,.12); }

    /* Features */
    .section{ padding: 48px 0; }
    .feature-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
    .card{ background: var(--card); border:1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding:18px; box-shadow: var(--shadow); }
    .card h3{ margin:0 0 6px; font-size: 18px; }
    .card p{ margin: 0; color: var(--muted); font-size: 14px; }

    /* Steps */
    .steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
    .step{ background: linear-gradient(180deg, #151a23, #121722); border:1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding:18px; position:relative; box-shadow: var(--shadow); }
    .step:before{ counter-increment: step; content: counter(step); position:absolute; right:14px; top:12px; font-weight:800; font-size: 32px; color: rgba(255,255,255,.08); }

    /* Trust */
    .trust{ display:grid; grid-template-columns: 2fr 1fr; gap: 16px; }
    .trust .notice{ background: #0f151f; border:1px solid rgba(54,226,180,.25); border-radius: var(--radius); padding:16px; }

    /* Footer */
    footer{ border-top:1px solid rgba(255,255,255,.06); padding: 32px 0 64px; color: var(--muted); }
    .foot-grid{ display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px; }
    .foot-grid a{ color: var(--muted); }
    .rights{ margin-top: 22px; font-size:12px; opacity:.85; }

    @media (max-width: 980px){
      .hero{ grid-template-columns: 1fr; }
      .feature-grid, .steps, .trust, .foot-grid{ grid-template-columns: 1fr; }
    }