    :root{
      --bg:#07060a;
      --text:#f5e6cf;
      --muted:rgba(245,230,207,.78);

      --glass: rgba(12,10,14,.55);
      --glass2: rgba(12,10,14,.72);
      --border: rgba(255,170,60,.22);
      --shadow: 0 18px 40px rgba(0,0,0,.55);

      --orange:#ff8a1f;
      --orange2:#ffb34d;
      --blue:#1b2d5a;

      --radius:18px;
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family: Arial, sans-serif;
      color:var(--text);
      background: var(--bg);
      min-height:100vh;
    }

    /* ====== Background ====== */
    .page{
      min-height:100vh;
      background-image: url("/images/bg-home-embers.jpg");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position:relative;
      overflow:hidden;
    }
    @media (max-width: 780px){
      .page{
        background-image: url("/images/bg-home-embers-mobile.jpg");
        background-attachment: scroll;
      }
    }
    .page::before{
      content:"";
      position:absolute; inset:0;
      background: radial-gradient(1200px 600px at 50% 30%, rgba(255,150,40,.28), rgba(0,0,0,.55));
      pointer-events:none;
    }

    /* ====== Top Bar ====== */
    header{
      position: sticky;
      top: 0;
      z-index: 50;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 22px;
      border-bottom: 1px solid rgba(255,170,60,.10);
      background: linear-gradient(to bottom, rgba(8,6,10,.88), rgba(8,6,10,.55));
      backdrop-filter: blur(10px);
    }
    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color: var(--text);
      font-weight: 900;
      letter-spacing: .2px;
    }
    .logo img{ height:38px; width:auto; display:block; }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .nav-link{
      color: var(--text);
      text-decoration:none;
      font-weight: 800;
      opacity:.9;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,170,60,.18);
      background: rgba(0,0,0,.18);
      cursor:pointer;
    }
    .nav-link:hover{ border-color: rgba(255,170,60,.32); background: rgba(0,0,0,.25); }

    .nav-primary{
      color:#1b0b00;
      background: linear-gradient(180deg, rgba(255,168,68,1), rgba(255,120,20,1));
      border: 1px solid rgba(255,170,60,.55);
      box-shadow: 0 10px 26px rgba(255,120,20,.22);
    }
    .nav-primary:hover{ filter: brightness(1.04); }

    /* Auth and Password View toggle areas (reuse your existing ids) */
    #authLinks, #userLinks{ display:inline; }

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 52px; /* more breathing room */
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,138,31,.12);
  border: 1px solid rgba(255,138,31,.25);
  cursor: pointer;

  color: #ff8a1f;
}

.toggle-password:hover {
  background: rgba(255,138,31,.2);
}

.toggle-password svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.eye-closed {
  display: none;
}



    /* ====== Hero ====== */
    .wrap{
      position:relative;
      max-width: 1180px;
      margin: 0 auto;
      padding: 56px 18px 34px;
    }
    .hero{
      text-align:center;
      padding: 40px 16px 18px;
    }
    .hero h1{
      margin: 0 0 14px;
      font-size: 46px;
      line-height: 1.06;
      letter-spacing: -0.6px;
      text-shadow: 0 14px 34px rgba(0,0,0,.55);
    }
    .hero p{
      margin: 0 auto 18px;
      max-width: 860px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
      text-shadow: 0 10px 24px rgba(0,0,0,.55);
    }
    .hero-actions{
      margin-top: 18px;
      display:flex;
      gap:12px;
      justify-content:center;
      flex-wrap:wrap;
    }
    .btn{
      border:none;
      border-radius: 12px;
      padding: 12px 18px;
      font-size: 16px;
      font-weight: 900;
      cursor:pointer;
    }
    .btn:disabled{ opacity:.6; cursor:not-allowed; }
    .btn-primary{
      color:#1b0b00;
      background: linear-gradient(180deg, rgba(255,168,68,1), rgba(255,120,20,1));
      box-shadow: 0 12px 26px rgba(255,120,20,.22);
      border: 1px solid rgba(255,170,60,.55);
    }
    .btn-secondary{
      color: var(--text);
      background: rgba(15,20,32,.65);
      border: 1px solid rgba(255,170,60,.22);
    }
    .btn-primary:hover{ filter: brightness(1.05); }
    .btn-secondary:hover{ background: rgba(15,20,32,.78); border-color: rgba(255,170,60,.32); }

    .hero-link{
      display:inline-flex;
      gap:8px;
      align-items:center;
      justify-content:center;
      margin-top: 10px;
      color: rgba(255,190,120,.9);
      text-decoration:none;
      font-weight: 800;
      opacity: .95;
    }
    .hero-link:hover{ text-decoration: underline; }

    @media (max-width: 860px){
      .hero h1{ font-size: 34px; }
      .hero p{ font-size: 15.5px; }
    }

    /* ====== Product Cards ====== */
    .cards{
      margin-top: 28px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }
    @media (max-width: 980px){
      .cards{ grid-template-columns: 1fr; }
    }

    .card{
      position:relative;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(10,8,12,.62), rgba(10,8,12,.38));
      border: 1px solid rgba(255,170,60,.20);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding: 18px 18px 16px;
      min-height: 330px;
      backdrop-filter: blur(10px);
    }
    .card::before{
      content:"";
      position:absolute; inset:-60px -60px auto -60px;
      height: 190px;
      background: radial-gradient(circle at 30% 40%, rgba(255,140,40,.22), rgba(0,0,0,0));
      pointer-events:none;
    }

    .card-media{
      height: 132px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom: 10px;
      opacity: .98;
    }
    .card-media img{
      max-height: 132px;
      max-width: 100%;
      display:block;
      filter: drop-shadow(0 14px 26px rgba(0,0,0,.55));
    }
    .card h3{
      margin: 6px 0 10px;
      font-size: 22px;
      letter-spacing: -0.3px;
    }
    .card p{
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.5;
      font-size: 14.5px;
      min-height: 68px;
    }

    .card .cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      text-decoration:none;
      font-weight: 900;
      padding: 11px 14px;
      border-radius: 12px;
      color:#1b0b00;
      background: linear-gradient(180deg, rgba(255,168,68,1), rgba(255,120,20,1));
      border: 1px solid rgba(255,170,60,.55);
      box-shadow: 0 10px 24px rgba(255,120,20,.18);
    }
    .card .cta:hover{ filter: brightness(1.05); }

    /* ====== Floating CTA ====== */
    .floating-talk{
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 60;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(255,170,60,.28);
      background: rgba(8,6,10,.72);
      color: var(--text);
      font-weight: 900;
      cursor:pointer;
      box-shadow: 0 14px 30px rgba(0,0,0,.55);
    }
    .floating-talk:hover{
      border-color: rgba(255,170,60,.40);
      background: rgba(8,6,10,.82);
    }

    /* ===== Footer ===== */
    footer{
      position:relative;
      margin-top: 26px;
      padding: 24px 18px 34px;
      text-align:center;
      color: rgba(245,230,207,.68);
      font-size: 13px;
    }

    /* ===== Modals (Auth + Contact) ===== */
    .modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,.65); z-index:1000; }
    .modal-box {
      background:#0c0a0e;
      color: var(--text);
      border: 1px solid rgba(255,170,60,.25);
      box-shadow: 0 18px 40px rgba(0,0,0,.65);
      max-width: 460px;
      margin: 8% auto;
      padding: 22px;
      border-radius: 14px;
      position:relative;
    }
    .close { position:absolute; right:14px; top:10px; cursor:pointer; font-size:22px; opacity:.9; }

    /* Inputs */
    input, textarea{
      width:100%;
      padding:10px 12px;
      margin:6px 0;
      border-radius:10px;
      border:1px solid rgba(255,170,60,.18);
      background: rgba(255,255,255,.06);
      color: var(--text);
      outline:none;
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, textarea:focus{
      border-color: rgba(255,170,60,.38);
      box-shadow: 0 0 0 4px rgba(255,120,20,.12);
    }

    /* Errors/success */
    .muted { color: rgba(245,230,207,.70); font-size:.95em; }
    .error { color:#ff8a8a; font-size:0.92em; margin-top:8px; }
    .success { color:#58d38b; font-size:0.95em; margin-top:8px; }

    .grid{ display:grid; gap:12px; }
    @media (min-width: 720px){
      .grid-2{ grid-template-columns: 1fr 1fr; }
    }

    .link-btn{
      background:none;
      border:none;
      padding:0;
      color:#ffb34d;
      cursor:pointer;
      font: inherit;
      text-decoration: underline;
    }
    .modal-actions{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-top:10px;
      flex-wrap:wrap;
    }
    .secondary-btn{
      background: rgba(255,255,255,.10);
      border:1px solid rgba(255,170,60,.22);
      color: var(--text);
    }
  


/* =========================================================
   BUZZWORKS – MARKETING / PUBLIC STYLES
   Extracted from index.html (SOURCE OF TRUTH)
========================================================= */

:root{
  /* ===== Ember Theme (DARK) ===== */
  --bg:#05060a;
  --text:#f5e6cf;
  --muted:rgba(245,230,207,.78);

  --glass: rgba(12,10,14,.55);
  --glass2: rgba(12,10,14,.72);

  --border: rgba(255,170,60,.20);
  --shadow: 0 18px 50px rgba(0,0,0,.55);

  --orange:#ff8a1f;
  --orange2:#ffb34d;

  --btn:#ff8a1f;
  --btnHover:#ff9a35;

  --radius:18px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height:100vh;

  background-image:
    radial-gradient(1200px 700px at 55% 20%, rgba(255,150,40,.22), rgba(0,0,0,0) 60%),
    radial-gradient(900px 540px at 12% 40%, rgba(255,120,20,.16), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.65)),
    url("/images/bg-home-embers.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x:hidden;
}

/* =========================
   HEADER
========================= */
.app-header{
  position: sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,170,60,.14);
  background: linear-gradient(to bottom, rgba(8,6,10,.86), rgba(8,6,10,.55));
  backdrop-filter: blur(10px);
}

.app-header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.app-header a{
  color: var(--text);
  font-weight:900;
  text-decoration:none;
}

.app-header nav a{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,170,60,.16);
  background: rgba(0,0,0,.18);
  color: rgba(245,230,207,.92);
  font-size:14px;
  font-weight:800;
}

.app-header nav a:hover{
  background: rgba(0,0,0,.28);
  border-color: rgba(255,170,60,.32);
}

/* =========================
   PAGE WRAPPER
========================= */
.page{
  min-height:100vh;
}

.page-inner{
  max-width:1200px;
  margin:0 auto;
  padding:26px 18px 80px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,h2,h3{
  text-shadow: 0 14px 34px rgba(0,0,0,.55);
}

h2{
  margin:0 0 6px;
  font-size:30px;
}

.subtle{
  color: var(--muted);
  font-size:14px;
}

/* =========================
   CARDS
========================= */
.dashboard-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  margin-top:28px;
}

@media(max-width:1100px){
  .dashboard-grid{ grid-template-columns: repeat(2,1fr); }
}
@media(max-width:700px){
  .dashboard-grid{ grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, rgba(10,8,12,.62), rgba(10,8,12,.38));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,170,60,.18);
  backdrop-filter: blur(10px);
}

.card h3{
  margin:0 0 10px;
  font-size:18px;
}

.card p{
  font-size:14px;
  line-height:1.45;
  color: var(--muted);
}

/* =========================
   BUTTONS
========================= */
.button{
  display:inline-block;
  margin-top:14px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  text-align:center;
  background: linear-gradient(180deg, rgba(255,168,68,1), rgba(255,120,20,1));
  color:#1b0b00;
  border:1px solid rgba(255,170,60,.55);
  box-shadow: 0 14px 30px rgba(255,120,20,.20);
  text-decoration:none;
}

.button:hover{ filter: brightness(1.05); }

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;
  font-size:13px;
  color: var(--muted);
  padding:26px 0;
}

