  :root{
    --bg:#ffffff;
    --ink:#0f172a;
    --muted:#475569;
    --line:#e2e8f0;
    --ring:#2563eb;
    --card:#ffffff;
    --shadow:0 8px 18px rgba(2,6,23,.08);
    --pill1:#f59e0b;
    --pill2:#eab308;
    --pill3:#fde68a;
    --radius:16px;
    --maxw:1200px;
  }

  * { box-sizing:border-box; }
  html, body { height:100%; }

  body {
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    margin:0;
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  .container{ max-width:var(--maxw); margin:0 auto; padding:0 5vw; }
  .row{ display:flex; gap:36px; flex-wrap:wrap; }
  .col-text{ flex:1 1 420px; min-width:280px; }
  .col-image{ flex:1 1 420px; min-width:260px; }

  .pill {
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    padding:.62rem 1rem;
    border-radius:999px;
    font-weight:800;
    letter-spacing:.2px;
    text-decoration:none;
    color:#0b1220;
    background:linear-gradient(135deg,var(--pill1),var(--pill2) 46%,var(--pill3));
    border:1px solid rgba(0,0,0,.06);
    transition: filter .15s ease, transform .15s ease;
  }
  .pill:hover { filter:brightness(.98); transform: translateY(-1px); }
  .pill:focus-visible { outline:2px solid var(--ring); outline-offset:2px; }

  .eyebrow{
    display:inline-block;
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#334155;
    background:#f8fafc;
    border:1px solid var(--line);
    padding:.35rem .6rem;
    border-radius:999px;
  }

  .plex-page{ width:100%; display:block; }

  .hero{
    padding:56px 0 34px;
    background: radial-gradient(1200px 400px at 10% -10%, rgba(253,230,138,.35), transparent 60%),
                radial-gradient(1000px 480px at 100% -20%, rgba(59,130,246,.08), transparent 55%);
    border-bottom:1px solid var(--line);
  }
  .hero h1{
    margin:0 0 10px;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight:900;
    letter-spacing:-.02em;
  }
  .hero .lead{
    margin:0 0 18px;
    color:var(--muted);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height:1.6;
  }
  .hero-media{
    width:100%;
    min-height:220px;
    border-radius:var(--radius);
    background:#0b1220;
    display:grid;
    place-items:center;
    padding:12px;
    box-shadow:var(--shadow);
    border:1px solid var(--line);
  }
  .hero-media img{
    max-width:100%;
    height:auto;
    display:block;
    border-radius:12px;
  }
  .hero-media--ph{
    background: repeating-linear-gradient(-45deg, #0b1220 0 10px, #111827 10px 20px);
    color:#fff;
    font-weight:700;
    padding:40px 20px;
    text-align:center;
  }

  .navod{ padding:40px 0 80px; }
  .navod-box{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:28px;
  }
  .navod-head h2{
    margin:0 0 6px;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight:900;
    letter-spacing:-.01em;
  }
  .navod-head p{ margin:0 0 16px; color:var(--muted); }
  .title-line{
    height:3px; width:88px; border-radius:3px;
    background:linear-gradient(90deg, var(--pill1), var(--pill2));
    margin:10px 0 2px;
  }

  .steps{
    counter-reset: cstep;
    list-style:none;
    padding:0;
    margin:22px 0 18px;
    display:grid;
    gap:16px;
  }
  .steps li{
    border:1px solid var(--line);
    border-radius:14px;
    padding:16px 16px 14px 56px;
    position:relative;
    background:#fff;
  }
  .steps li::before{
    counter-increment:cstep;
    content: counter(cstep);
    position:absolute;
    left:16px; top:16px;
    width:28px; height:28px;
    border-radius:999px;
    display:grid; place-items:center;
    background:#f1f5f9;
    border:1px solid var(--line);
    font-weight:800;
    color:#1e293b;
  }
  .steps h3{
    margin:0 0 6px;
    font-size:16.5px;
  }
  .steps p{
    margin:0;
    color:var(--muted);
    line-height:1.6;
  }

  .sms-box{
    margin:20px 0 10px;
    border:1px dashed #cbd5e1;
    background:#f8fafc;
    border-radius:14px;
    padding:14px;
  }
  .sms-box .label{
    display:flex; align-items:center; gap:8px;
    font-size:13px; color:#334155; font-weight:700;
    margin-bottom:8px;
  }
  .sms-msg{
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:12px;
    padding:12px 14px;
    line-height:1.55;
  }
  .hint{
    display:block; color:#64748b; font-size:12.5px; margin-top:8px;
  }

  .note{
    margin:14px 0 0;
    background:#fffbeb;
    border:1px solid #fde68a;
    color:#713f12;
    border-radius:12px;
    padding:12px 14px;
    font-size:14px;
  }

  @media (max-width: 860px){
    .hero{ padding-top:40px; }
  }

  @media print {
    .pill { display:none !important; }
    .navod-box, .hero-media{ box-shadow:none; }
    body{ background:#fff; color:#000; }
  }

  @media (prefers-reduced-motion:reduce){
    .pill{ transition:none; }
  }