.elementor-1320 .elementor-element.elementor-element-2b8bdd0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7c7d2f4 */:root{
  --bg0:#070813;
  --bg1:#0b0d1c;
  --card:#101124;
  --card2:#0d0e1f;
  --text:#f3f1ff;
  --muted:#c8c3dd;
  --line:rgba(255,255,255,.10);

  --pink:#ff3d7f;
  --purple:#7c5cff;
  --purple2:#6d3cff;

  --radius:20px;
  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --shadow2: 0 12px 50px rgba(0,0,0,.40);

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(255,61,127,.18), transparent 60%),
    radial-gradient(900px 650px at 75% 10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(900px 650px at 50% 120%, rgba(109,60,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x:hidden;
}

/* Soft glowing blobs like screenshot */
.bg-orb{
  position:fixed;
  inset:auto;
  width:520px;
  height:520px;
  border-radius:999px;
  filter: blur(70px);
  opacity:.30;
  z-index:-1;
}
.orb-1{left:-180px; top:-140px; background: radial-gradient(circle, rgba(255,61,127,.85), transparent 60%);}
.orb-2{right:-220px; top:-130px; background: radial-gradient(circle, rgba(124,92,255,.9), transparent 60%);}
.orb-3{left:25%; bottom:-260px; background: radial-gradient(circle, rgba(109,60,255,.85), transparent 60%);}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:44px 22px 70px;
}

/* CARD BASE (glass + border) */
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* HERO CARD */
.card--hero{
  padding:26px 28px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 280px at 15% 20%, rgba(255,61,127,.18), transparent 60%),
    radial-gradient(900px 280px at 85% 30%, rgba(124,92,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.hero-head{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:10px;
}

.brand-badge{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.5px;
  background: linear-gradient(135deg, rgba(255,61,127,1), rgba(255,61,127,.35));
  box-shadow: 0 14px 40px rgba(255,61,127,.18);
}

h1{
  margin:0;
  font-family:var(--serif);
  font-size:44px;
  line-height:1.1;
  letter-spacing:.2px;
}

.meta{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
}
.meta span{
  color:var(--text);
  opacity:.92;
}

.lead{
  margin:14px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
  max-width:95ch;
}

.note{
  margin:12px 0 0;
  color:rgba(243,241,255,.75);
  font-size:13px;
}

/* GRID like screenshot (2 columns on desktop) */
.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

@media (min-width: 980px){
  .grid{ grid-template-columns: 1fr 1fr; }
}

/* Inner card spacing */
.grid .card{
  padding:22px 22px 20px;
  background:
    radial-gradient(600px 240px at 20% 20%, rgba(124,92,255,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.35));
}

.card-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.num{
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:13px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,1), rgba(124,92,255,.25));
  border: 1px solid rgba(124,92,255,.55);
  box-shadow: 0 10px 30px rgba(124,92,255,.18);
}

h2{
  margin:0;
  font-family:var(--serif);
  font-size:30px;
  letter-spacing:.2px;
}

.grid p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}

/* Purple bullet style like screenshot */
.bullets{
  margin:8px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}
.bullets li{
  position:relative;
  padding-left:18px;
  margin:10px 0;
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:9px;
  height:9px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(124,92,255,1), rgba(124,92,255,.2));
  box-shadow: 0 8px 18px rgba(124,92,255,.18);
}

/* Footer */
.footer{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}

.footer p{
  margin:0;
  color:rgba(200,195,221,.9);
  font-size:13px;
}

.print{
  cursor:pointer;
  border:1px solid rgba(124,92,255,.35);
  background: rgba(124,92,255,.10);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
}
.print:hover{
  background: rgba(124,92,255,.18);
}

/* Print clean */
@media print{
  body{background:#fff;color:#000}
  .bg-orb,.print{display:none !important}
  .card{box-shadow:none; backdrop-filter:none}
  .grid .card{background:#fff}
  .meta,.lead,.grid p,.bullets{color:#111}
}

/* ===== Mobile fixes ===== */

/* 1) Allow flex items to shrink + wrap (prevents title clipping) */
.hero-head{
  flex-wrap: wrap;
}

.hero-head > div{
  min-width: 0;              /* CRITICAL: allows h1 to shrink instead of overflowing */
}

/* 2) Responsive typography so text fits on phones */
h1{
  font-size: clamp(26px, 6vw, 44px);
  overflow-wrap: anywhere;   /* breaks long words if needed */
  word-break: break-word;
}

h2{
  font-size: clamp(20px, 4.8vw, 30px);
  overflow-wrap: anywhere;
}

/* 3) Tighter spacing on small screens */
@media (max-width: 520px){
  .container{
    padding: 22px 14px 46px;
  }

  .card--hero{
    padding: 18px 16px;
  }

  .brand-badge{
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .lead{
    font-size: 14px;
    line-height: 1.75;
  }

  .grid .card{
    padding: 18px 16px;
  }

  .footer{
    flex-direction: column;
    align-items: flex-start;
  }
}/* End custom CSS */