:root{
  --bg:#081019;
  --panel:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.10);
  --muted:#aeb8c8;
  --accent:#ff7a18;
  --success:#6ddf7c;
}
*{box-sizing:border-box}
body{
  min-height:100vh;
  margin:0;
  color:#f8fbff;
  background:
    radial-gradient(circle at 10% 10%,rgba(71,255,128,.12),transparent 28%),
    radial-gradient(circle at 90% 0%,rgba(255,122,24,.16),transparent 24%),
    linear-gradient(180deg,#081019 0%,#0b121b 100%);
}
.glass-nav{background:rgba(8,16,25,.72);backdrop-filter:blur(18px);border-bottom:1px solid var(--line)}
.navbar-brand span{color:var(--accent)}
.hero{padding:5.5rem 0 3rem}
.glass{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}
.shine{position:relative;overflow:hidden}
.shine:before{
  content:"";
  position:absolute;
  inset:-40% auto auto -25%;
  width:45%;
  height:180%;
  transform:rotate(18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  animation:shine 7s linear infinite;
}
@keyframes shine{0%{left:-35%}100%{left:120%}}
.metric{padding:1.2rem}
.metric .value{font-size:2rem;font-weight:700}
.muted{color:var(--muted)}
.accent{color:var(--accent)}
.success{color:var(--success)}
.panel-shot{border-radius:22px;border:1px solid var(--line);box-shadow:0 18px 70px rgba(0,0,0,.35)}
.skeleton{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  min-height:1rem;
  border-radius:999px;
}
.skeleton:after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  animation:skeleton 1.4s infinite;
}
@keyframes skeleton{100%{transform:translateX(100%)}}
.table-dark{--bs-table-bg:transparent}
.admin-card{min-height:132px}
.feature-icon{font-size:1.4rem}
.pricing{
  border:1px solid rgba(255,122,24,.45);
  box-shadow:0 20px 70px rgba(255,122,24,.12);
}
.form-control,.form-select{
  background:rgba(255,255,255,.06);
  color:#fff;
  border-color:var(--line);
}
.form-control:focus,.form-select:focus{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,122,24,.55);
  box-shadow:0 0 0 .25rem rgba(255,122,24,.15);
}
.btn-warning{
  --bs-btn-bg:#ff7a18;
  --bs-btn-border-color:#ff7a18;
  --bs-btn-hover-bg:#ff8b32;
  --bs-btn-hover-border-color:#ff8b32;
}


/* Commercial landing polish */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:#ffd9bd;
  background:rgba(255,122,24,.10);
  border:1px solid rgba(255,122,24,.28);
  border-radius:999px;
  padding:.42rem .78rem;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.section-heading{max-width:820px}
.hero-panel{position:relative;min-height:280px}
.hero-proof{display:flex;flex-wrap:wrap;gap:.6rem}
.hero-proof span{
  color:#dfe8f5;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  border-radius:999px;
  padding:.5rem .72rem;
  font-size:.92rem;
}
.floating-card{
  position:absolute;
  z-index:3;
  display:flex;
  flex-direction:column;
  min-width:116px;
  padding:.8rem .95rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(5,11,18,.78);
  box-shadow:0 18px 60px rgba(0,0,0,.35), 0 0 30px rgba(255,122,24,.12);
  backdrop-filter:blur(18px);
}
.floating-card strong{font-size:1.45rem;line-height:1;color:#fff}
.floating-card span{font-size:.78rem;color:var(--muted)}
.floating-card-a{right:7%;top:8%}
.floating-card-b{left:7%;bottom:8%}
.check-list{display:grid;gap:.8rem}
.check-list>div{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.35rem .75rem;
  padding:.85rem .95rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.check-list>div:before{
  content:"\2713";
  width:1.6rem;height:1.6rem;
  display:inline-grid;place-items:center;
  border-radius:999px;
  color:#071019;
  background:linear-gradient(135deg,#75ff93,#ff7a18);
  font-weight:800;
  grid-row:1 / span 2;
}
.check-list strong{color:#fff}
.check-list span{color:var(--muted)}
.check-list.compact>div{padding:.75rem .85rem}
.price-line{display:flex;align-items:end;gap:.55rem}
.price-line strong{font-size:3rem;line-height:1;color:#fff}
.price-line span{color:var(--muted);padding-bottom:.3rem}
.value-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}
.value-grid>div{
  padding:1rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.035));
}
.value-grid strong{display:block;color:#fff;margin-bottom:.25rem}
.value-grid span{color:var(--muted)}
.steps .metric span{
  display:inline-grid;place-items:center;
  width:2.2rem;height:2.2rem;
  border-radius:12px;
  color:#071019;
  background:var(--accent);
  font-weight:800;
}
.faq .accordion-item{margin-bottom:.75rem;overflow:hidden;border:1px solid var(--line)!important}
.faq .accordion-button{background:rgba(255,255,255,.03);color:#fff;box-shadow:none}
.faq .accordion-button:not(.collapsed){background:rgba(255,122,24,.12);color:#fff}
.faq .accordion-body{background:rgba(0,0,0,.10)}
.cta-final .lead{max-width:760px}
.timeline{display:grid;gap:1rem}
.timeline>div{display:grid;grid-template-columns:42px 1fr;gap:.75rem;align-items:start}
.timeline span{
  display:grid;place-items:center;
  width:38px;height:38px;
  border-radius:14px;
  color:#071019;
  background:var(--accent);
  font-weight:800;
}
.timeline p{margin:0;color:#fff}.timeline em{font-style:normal;color:var(--muted)}
.install-list{padding-left:1.2rem}.install-list li{margin-bottom:.75rem}
@media (max-width: 767.98px){
  .hero{padding-top:3.2rem}
  .value-grid{grid-template-columns:1fr}
  .floating-card{display:none}
  .price-line strong{font-size:2.35rem}
}


/* IG1 holographic seal copied from original IG1 kit */

.ig1-seal-kit {
    --shine-x:50%;
    --shine-y:50%;
    --spark-x:0px;
    --spark-y:0px;
    display:grid;
    place-items:center;
    padding:42px;
    background:radial-gradient(circle at 22% 18%, rgba(15,122,229,.18), transparent 22rem), radial-gradient(circle at 82% 12%, rgba(168,85,247,.16), transparent 24rem), #f7fbff;
}
.ig1-holo-seal.ig1-holo-sticker {
    position:relative;
    isolation:isolate;
    width:min(460px,88vw);
    aspect-ratio:1;
    border-radius:50%;
    display:grid;
    place-items:center;
    overflow:visible;
    transform:none!important;
    background:transparent!important;
    box-shadow:none!important;
    filter:drop-shadow(0 42px 36px rgba(15,23,42,.22)) drop-shadow(0 0 52px rgba(34,193,220,.20));
}
.ig1-holo-seal.ig1-holo-sticker::before {
    content:"";
    position:absolute;
    inset:-18px;
    z-index:-1;
    border-radius:50%;
    background:radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.96), transparent 16%), conic-gradient(from 0deg,#67e8f9,#93c5fd,#c4b5fd,#f0abfc,#fde68a,#bbf7d0,#67e8f9);
    clip-path:polygon(50% 0%,53% 2%,56% 0%,59% 2%,62% 1%,65% 4%,68% 2%,71% 5%,74% 4%,77% 7%,80% 7%,82% 10%,86% 11%,88% 15%,91% 17%,93% 21%,96% 24%,96% 29%,99% 32%,98% 36%,100% 40%,98% 44%,100% 48%,98% 52%,100% 56%,98% 60%,99% 64%,96% 68%,96% 72%,93% 76%,91% 80%,88% 82%,86% 86%,82% 87%,80% 91%,76% 91%,73% 94%,69% 94%,65% 98%,61% 97%,57% 100%,53% 98%,49% 100%,45% 98%,41% 100%,37% 97%,33% 98%,29% 94%,25% 95%,22% 91%,18% 90%,16% 86%,12% 84%,10% 80%,7% 77%,5% 73%,3% 69%,4% 65%,1% 61%,2% 57%,0% 53%,2% 49%,0% 45%,2% 41%,1% 37%,4% 33%,3% 29%,6% 25%,8% 21%,11% 18%,13% 14%,17% 12%,19% 8%,23% 7%,26% 4%,30% 5%,34% 2%,38% 3%,42% 0%,46% 2%);
    animation:ig1-edge-hue 6s linear infinite;
}
.ig1-holo-seal.ig1-holo-sticker::after {
    content:"";
    position:absolute;
    inset:22px;
    z-index:18;
    border-radius:50%;
    pointer-events:none;
    clip-path:circle(50% at 50% 50%);
    background:radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.98) 0 4%, rgba(255,255,255,.34) 13%, transparent 25%), linear-gradient(118deg, transparent 25%, rgba(255,255,255,.82) 36%, rgba(34,211,238,.25) 42%, transparent 56%), radial-gradient(circle at 72% 68%, rgba(244,114,182,.26), transparent 25%);
    mix-blend-mode:screen;
    opacity:.92;
}
.ig1-sticker-shadow { position:absolute; inset:8%; border-radius:50%; background:rgba(15,23,42,.22); filter:blur(28px); transform:translateY(16%); z-index:-1; }
.ig1-sticker-cut { position:absolute; inset:-9px; z-index:0; border-radius:50%; background:conic-gradient(from 30deg,#c7f9cc,#80ffdb,#64dfdf,#48bfe3,#5e60ce,#ffafcc,#fdffb6,#c7f9cc); filter:saturate(1.28) brightness(1.08); }
.ig1-sticker-edge { position:absolute; inset:0; z-index:1; border-radius:50%; background:radial-gradient(circle, transparent 0 62%, rgba(255,255,255,.80) 63% 65%, rgba(15,23,42,.18) 66% 67%, transparent 68%), repeating-conic-gradient(from 0deg, rgba(255,255,255,.42) 0 2deg, rgba(15,23,42,.08) 2deg 3deg, transparent 3deg 5deg), conic-gradient(from 0deg,#22d3ee,#60a5fa,#a78bfa,#f0abfc,#fde68a,#86efac,#22d3ee); box-shadow:inset 0 0 0 1px rgba(255,255,255,.96), inset 0 0 0 12px rgba(255,255,255,.42), inset 0 0 42px rgba(255,255,255,.95); }
.ig1-sticker-edge:after { content:""; position:absolute; inset:22px; border-radius:50%; background:radial-gradient(circle at 34% 22%, rgba(255,255,255,.95), transparent 16%), radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.78), transparent 22%), linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.22) 28%, rgba(15,23,42,.13) 60%, rgba(255,255,255,.55)); box-shadow:inset 0 0 0 1px rgba(255,255,255,.88), inset 0 0 0 12px rgba(255,255,255,.18), inset 0 -34px 90px rgba(124,58,237,.22); }
.ig1-holo-foil { position:absolute; z-index:2; inset:22px; border-radius:50%; opacity:.98; clip-path:circle(50% at 50% 50%); background:radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,1) 0 3%, rgba(255,255,255,.44) 10%, transparent 26%), repeating-linear-gradient(38deg, rgba(255,255,255,.20) 0 1px, transparent 1px 7px), repeating-linear-gradient(126deg, rgba(15,23,42,.05) 0 1px, transparent 1px 11px), repeating-conic-gradient(from 0deg, rgba(255,255,255,.24) 0 1.5deg, rgba(15,23,42,.04) 1.5deg 3deg, transparent 3deg 6deg), conic-gradient(from 180deg,#67e8f9,#93c5fd,#c4b5fd,#f0abfc,#fde68a,#bbf7d0,#67e8f9); mix-blend-mode:screen; animation:ig1-foil-drift 8s linear infinite; }
.ig1-security-grid { position:absolute; z-index:3; inset:36px; opacity:.32; border-radius:50%; clip-path:circle(50% at 50% 50%); background:linear-gradient(90deg, rgba(15,23,42,.20) 1px, transparent 1px) 0 0/16px 16px, linear-gradient(rgba(15,23,42,.16) 1px, transparent 1px) 0 0/16px 16px; animation:ig1-security-shift 5s linear infinite; }
.ig1-holo-guilloche { position:absolute; z-index:4; inset:34px; opacity:.72; border-radius:50%; clip-path:circle(50% at 50% 50%); background:repeating-radial-gradient(circle, transparent 0 9px, rgba(255,255,255,.76) 10px 11px, transparent 12px 19px), repeating-conic-gradient(from 90deg, transparent 0 6deg, rgba(15,23,42,.16) 7deg 8deg, transparent 9deg 13deg); mix-blend-mode:soft-light; animation:ig1-guilloche 18s linear infinite; }
.ig1-holo-rosette { position:absolute; z-index:5; inset:63px; opacity:.70; border-radius:50%; clip-path:circle(50% at 50% 50%); background:repeating-conic-gradient(from 0deg, transparent 0 4deg, rgba(255,255,255,.75) 5deg 6deg, transparent 7deg 9deg); mask:radial-gradient(circle, transparent 0 36%, #000 37% 40%, transparent 41% 54%, #000 55% 58%, transparent 59%); animation:ig1-rosette 14s linear infinite reverse; }
.ig1-holo-sweep { position:absolute; z-index:9; inset:22px!important; border-radius:50%; transform:none!important; overflow:hidden; clip-path:circle(50% at 50% 50%); mask:radial-gradient(circle, #000 0 50%, transparent 51%); background:linear-gradient(115deg, transparent 0 31%, rgba(255,255,255,.96) 42%, rgba(168,85,247,.38) 47%, rgba(34,211,238,.38) 52%, transparent 64%); background-size:260% 100%; background-position:-180% 50%; mix-blend-mode:screen; animation:ig1-holo-sweep-contained 4s ease-in-out infinite!important; }
.ig1-holo-glare { position:absolute; inset:20px; z-index:10; border-radius:50%; pointer-events:none; clip-path:circle(50% at 50% 50%); background:radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.88), transparent 12%), radial-gradient(circle at calc(100% - var(--shine-x)) calc(100% - var(--shine-y)), rgba(34,211,238,.35), transparent 22%); mix-blend-mode:screen; }
.ig1-seal-orbital-text { position:absolute; inset:0; z-index:12; width:100%; height:100%; pointer-events:none; filter:drop-shadow(0 1px 0 rgba(255,255,255,.85)); }
.ig1-seal-orbital-text text { font-family:Inter, system-ui, sans-serif; font-size:10px; font-weight:950; letter-spacing:2.4px; fill:rgba(15,23,42,.72); text-transform:uppercase; }
.ig1-seal-orbital-text text.bottom { fill:rgba(15,23,42,.56); }
.ig1-seal-orbital-text text.inner { text-transform:none; font-size:9px; letter-spacing:2px; fill:rgba(15,23,42,.58); }
.ig1-holo-core { position:relative; z-index:14; width:55%; aspect-ratio:1; border-radius:50%; padding:1.2rem; display:grid; place-items:center; align-content:center; gap:.50rem; text-align:center; color:#0f172a; background:radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.90), transparent 25%), radial-gradient(circle at 42% 20%, rgba(255,255,255,.94), rgba(255,255,255,.46) 42%, rgba(255,255,255,.18) 68%); border:1px solid rgba(255,255,255,.88); box-shadow:inset 0 0 0 1px rgba(15,23,42,.08), inset 0 0 0 10px rgba(255,255,255,.18), 0 18px 48px rgba(15,23,42,.20); }
.ig1-seal-emblem { display:flex; align-items:center; justify-content:center; gap:.56rem; width:80%; }
.ig1-seal-emblem strong { font-size:clamp(3.2rem,8vw,5.5rem); font-weight:1000; letter-spacing:-.10em; line-height:.80; background:linear-gradient(135deg,#07111f 0%,#0f7ae5 28%,#8b5cf6 56%,#22c1dc 78%,#07111f 100%); -webkit-background-clip:text; background-clip:text; color:transparent; filter:drop-shadow(0 2px 0 rgba(255,255,255,.70)); }
.emblem-line { height:2px; flex:1; background:linear-gradient(90deg, transparent, rgba(15,23,42,.50), transparent); }
.ig1-seal-mark span { display:block; font-size:1.22rem; font-weight:1000; letter-spacing:.35em; color:#0f172a; }
.ig1-seal-mark i { display:block; margin-top:.20rem; font-style:normal; text-transform:none; letter-spacing:.045em; font-size:.72rem; color:#0f7ae5; font-weight:1000; }
.ig1-seal-ribbon { display:inline-flex; justify-content:center; max-width:94%; border-radius:999px; padding:.54rem .86rem; border:1px solid rgba(255,255,255,.78); background:linear-gradient(135deg,#0f7ae5,#22c1dc,#7c3aed); color:white; font-weight:1000; font-size:.68rem; letter-spacing:.09em; box-shadow:0 14px 30px rgba(15,122,229,.32), inset 0 1px 0 rgba(255,255,255,.36); text-shadow:0 1px 8px rgba(15,23,42,.28); }
.ig1-holo-core small { color:#334155; background:rgba(255,255,255,.68); border:1px solid rgba(255,255,255,.72); border-radius:999px; padding:.28rem .62rem; font-size:.73rem; font-weight:950; letter-spacing:.09em; }
.ig1-holo-sparkle { position:absolute; z-index:16; width:5.8rem; height:5.8rem; opacity:.86; transform:translate(var(--spark-x), var(--spark-y)); pointer-events:none; mix-blend-mode:screen; }
.ig1-holo-sparkle:before,.ig1-holo-sparkle:after { content:""; position:absolute; inset:48% 0 auto 0; height:3px; background:linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent); filter:drop-shadow(0 0 12px white) drop-shadow(0 0 18px rgba(34,211,238,.7)); }
.ig1-holo-sparkle:after { transform:rotate(90deg); }
.sparkle-a { left:11%; top:18%; width:6rem; height:6rem; animation:ig1-sparkle 3.2s ease-in-out infinite; }
.sparkle-b { right:10%; top:27%; width:4.4rem; height:4.4rem; animation:ig1-sparkle 3.9s ease-in-out .7s infinite; }
.sparkle-c { left:24%; bottom:15%; width:4rem; height:4rem; animation:ig1-sparkle 4.4s ease-in-out 1.1s infinite; }
.sparkle-d { right:22%; bottom:17%; width:5rem; height:5rem; animation:ig1-sparkle 5.1s ease-in-out 1.8s infinite; }
.sparkle-e { left:45%; top:7%; width:3.8rem; height:3.8rem; animation:ig1-sparkle 3.5s ease-in-out 1.4s infinite; }
@keyframes ig1-edge-hue { to { filter:hue-rotate(360deg); } }
@keyframes ig1-foil-drift { to { filter:hue-rotate(360deg); transform:rotate(360deg); } }
@keyframes ig1-security-shift { to { background-position:16px 16px,16px 16px; } }
@keyframes ig1-guilloche { to { transform:rotate(-360deg); } }
@keyframes ig1-rosette { to { transform:rotate(360deg); } }
@keyframes ig1-sparkle { 0%,100%{opacity:.08; scale:.55; rotate:0deg} 42%{opacity:.95; scale:1; rotate:35deg} 62%{opacity:.45; scale:.82; rotate:70deg} }
@keyframes ig1-holo-sweep-contained { 0%,16%{background-position:-190% 50%; opacity:0} 38%{opacity:.96} 68%,100%{background-position:190% 50%; opacity:0} }
@media (max-width:575.98px) { .ig1-seal-kit { padding:24px; } .ig1-holo-seal.ig1-holo-sticker { width:min(360px,86vw); } .ig1-seal-orbital-text text { font-size:9px; letter-spacing:1.7px; } .ig1-seal-ribbon { font-size:.58rem; } }

/* ProGuard production landing */
:root{
  --bg:#060b12;
  --bg-2:#0b131d;
  --panel:rgba(255,255,255,.065);
  --panel-2:rgba(255,255,255,.09);
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.20);
  --text:#f8fbff;
  --muted:#a9b5c7;
  --muted-2:#7e8a9b;
  --accent:#ff7a18;
  --accent-2:#ffb45f;
  --green:#5ee476;
  --red:#ff5e5e;
  --shadow:0 26px 80px rgba(0,0,0,.35);
}
html{scroll-behavior:smooth}
body{
  color:var(--text);
  background:
    radial-gradient(circle at 12% -10%,rgba(255,122,24,.20),transparent 28rem),
    radial-gradient(circle at 88% 2%,rgba(69,255,136,.10),transparent 28rem),
    radial-gradient(circle at 50% 95%,rgba(63,116,255,.10),transparent 32rem),
    linear-gradient(180deg,var(--bg) 0%,var(--bg-2) 58%,#070b11 100%);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.26;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(180deg,black,transparent 80%);
}
a{color:inherit}
.landing-page{position:relative;z-index:1}
.muted{color:var(--muted)}
.glass,
.product-stage,
.split-card,
.feature-card,
.price-card,
.final-cta{
  background:linear-gradient(180deg,rgba(255,255,255,.082),rgba(255,255,255,.043));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
}
.glass-nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(6,11,18,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.glass-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.glass-nav .ms-auto{
  display:flex;
  align-items:center;
  margin-left:auto;
}
.navbar-brand{letter-spacing:-.03em}
.navbar-brand span{color:var(--accent)}
.btn{border-radius:999px;font-weight:750}
.btn-lg{padding:.9rem 1.25rem}
.btn-warning{
  --bs-btn-color:#111;
  --bs-btn-bg:#ff7a18;
  --bs-btn-border-color:#ff7a18;
  --bs-btn-hover-color:#111;
  --bs-btn-hover-bg:#ff9138;
  --bs-btn-hover-border-color:#ff9138;
  box-shadow:0 16px 46px rgba(255,122,24,.24);
}
.btn-outline-light{
  --bs-btn-border-color:rgba(255,255,255,.25);
  --bs-btn-hover-color:#071019;
}
.premium-hero{
  position:relative;
  padding:7rem 0 4.5rem;
}
.hero-orb{
  position:absolute;
  border-radius:999px;
  filter:blur(20px);
  opacity:.72;
  pointer-events:none;
}
.hero-orb-a{
  width:25rem;
  height:25rem;
  left:-10rem;
  top:4rem;
  background:radial-gradient(circle,rgba(255,122,24,.28),transparent 68%);
}
.hero-orb-b{
  width:28rem;
  height:28rem;
  right:-12rem;
  top:8rem;
  background:radial-gradient(circle,rgba(60,255,129,.16),transparent 68%);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.48rem;
  color:#ffe1c8;
  background:rgba(255,122,24,.105);
  border:1px solid rgba(255,122,24,.30);
  border-radius:999px;
  padding:.46rem .82rem;
  font-size:.75rem;
  font-weight:850;
  letter-spacing:.075em;
  text-transform:uppercase;
}
.hero-title{
  font-size:clamp(2.8rem,5vw,4.8rem);
  line-height:.95;
  letter-spacing:-.075em;
  font-weight:950;
  margin:0;
  text-wrap:balance;
}
.hero-copy{
  font-size:1.16rem;
  line-height:1.75;
  color:#c3cedd;
  max-width:720px;
}
.section-title{
  font-size:clamp(2rem,4vw,3.65rem);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:950;
  text-wrap:balance;
}
.section-heading{max-width:900px}
.section-heading p{font-size:1.08rem;line-height:1.75}
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}
.hero-proof span{
  color:#e7edf7;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  border-radius:999px;
  padding:.58rem .8rem;
  font-size:.94rem;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
}
.shine{position:relative;overflow:hidden}
.shine:before{
  content:"";
  position:absolute;
  z-index:2;
  inset:-70% auto auto -35%;
  width:42%;
  height:220%;
  transform:rotate(18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.16),transparent);
  animation:shine 8s linear infinite;
  pointer-events:none;
}
.product-stage{
  position:relative;
  padding:1rem;
  border-radius:32px;
  transform:perspective(1300px) rotateY(-4deg) rotateX(2deg);
  box-shadow:0 34px 100px rgba(0,0,0,.46),0 0 0 1px rgba(255,122,24,.08);
}
.product-stage:after{
  content:"";
  position:absolute;
  inset:12% -8% -10% 18%;
  background:radial-gradient(circle,rgba(255,122,24,.26),transparent 62%);
  filter:blur(28px);
  z-index:-1;
}
.stage-topline{
  display:flex;
  align-items:center;
  gap:.55rem;
  color:#cbd5e1;
  font-size:.86rem;
  padding:.15rem .45rem .85rem;
}
.stage-topline strong{margin-left:auto;color:#fff}
.status-dot{
  width:.64rem;
  height:.64rem;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 0 .45rem rgba(94,228,118,.12),0 0 28px rgba(94,228,118,.65);
  animation:pulse 1.8s infinite;
}
@keyframes pulse{
  50%{transform:scale(.78);box-shadow:0 0 0 .25rem rgba(94,228,118,.10),0 0 18px rgba(94,228,118,.45)}
}
.panel-shot{
  border-radius:24px;
  border:1px solid var(--line-strong);
  box-shadow:0 28px 80px rgba(0,0,0,.42);
  display:block;
  width:100%;
}
.live-card{
  position:absolute;
  z-index:5;
  min-width:12rem;
  padding:1rem 1.05rem;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:rgba(7,13,21,.78);
  box-shadow:0 22px 64px rgba(0,0,0,.36),0 0 36px rgba(255,122,24,.10);
  backdrop-filter:blur(18px);
}
.live-card span{display:block;color:var(--muted);font-size:.8rem}
.live-card strong{display:block;font-size:1.35rem;line-height:1.1}
.live-card em{font-style:normal;color:#8f9bad;font-size:.78rem}
.live-card-a{right:4%;top:17%;animation:floatA 5.5s ease-in-out infinite}
.live-card-b{left:4%;bottom:8%;animation:floatB 6s ease-in-out infinite}
@keyframes floatA{50%{transform:translateY(-10px)}}
@keyframes floatB{50%{transform:translateY(10px)}}
.mini-bars{display:flex;align-items:end;gap:.28rem;height:2.2rem;margin:.45rem 0}
.mini-bars i{
  display:block;
  width:.55rem;
  border-radius:.45rem;
  background:linear-gradient(180deg,var(--accent),#753306);
  animation:bar 1.4s ease-in-out infinite;
}
.mini-bars i:nth-child(1){height:38%}
.mini-bars i:nth-child(2){height:70%;animation-delay:.15s}
.mini-bars i:nth-child(3){height:45%;animation-delay:.28s}
.mini-bars i:nth-child(4){height:92%;animation-delay:.38s}
.mini-bars i:nth-child(5){height:58%;animation-delay:.52s}
@keyframes bar{50%{height:24%}}
.split-card{padding:2rem}
.split-card .kicker{
  color:var(--muted);
  font-weight:850;
  text-transform:uppercase;
  font-size:.78rem;
  letter-spacing:.10em;
}
.split-card h3{
  font-size:1.65rem;
  font-weight:900;
  letter-spacing:-.035em;
  margin:.65rem 0 1rem;
}
.split-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.75rem;
}
.split-card li{
  position:relative;
  padding-left:1.65rem;
  color:#c2ccda;
}
.split-card li:before{
  content:"";
  position:absolute;
  left:0;
  top:.55rem;
  width:.55rem;
  height:.55rem;
  border-radius:999px;
  background:var(--accent);
}
.split-card.good li:before{background:var(--green)}
.split-card.danger{background:linear-gradient(180deg,rgba(255,94,94,.09),rgba(255,255,255,.04))}
.split-card.good{background:linear-gradient(180deg,rgba(94,228,118,.10),rgba(255,255,255,.04))}
.feature-suite{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.feature-card{
  padding:1.35rem;
  min-height:240px;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,122,24,.35);
  box-shadow:0 30px 90px rgba(0,0,0,.42),0 0 44px rgba(255,122,24,.10);
}
.feature-card.featured{
  grid-column:span 2;
  background:linear-gradient(135deg,rgba(255,122,24,.16),rgba(255,255,255,.055) 52%,rgba(94,228,118,.08));
}
.feature-icon{
  display:inline-grid;
  place-items:center;
  width:2.5rem;
  height:2.5rem;
  border-radius:15px;
  background:rgba(255,122,24,.12);
  border:1px solid rgba(255,122,24,.32);
  color:#ffd9bd;
  font-weight:900;
  font-size:1rem;
}
.feature-card h3{
  font-size:1.24rem;
  font-weight:900;
  letter-spacing:-.03em;
  margin:1rem 0 .55rem;
}
.feature-card p{color:var(--muted);line-height:1.65;margin:0}
.product-experience{position:relative;overflow:hidden}
.product-experience:before{
  content:"";
  position:absolute;
  right:-12rem;
  top:-12rem;
  width:30rem;
  height:30rem;
  background:radial-gradient(circle,rgba(255,122,24,.18),transparent 65%);
}
.signal-list{display:grid;gap:.8rem}
.signal-list>div{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.2rem .8rem;
  padding:.9rem 1rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.signal-list>div:before{
  content:"";
  width:.8rem;
  height:.8rem;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 24px rgba(94,228,118,.5);
  grid-row:1 / span 2;
  margin-top:.35rem;
}
.signal-list strong{color:#fff}
.signal-list span{color:var(--muted)}
.screen-card{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:1px solid var(--line-strong);
  box-shadow:0 28px 80px rgba(0,0,0,.45);
}
.screen-card img{display:block}
.scan-line{
  position:absolute;
  left:0;
  right:0;
  top:-20%;
  height:24%;
  background:linear-gradient(180deg,transparent,rgba(94,228,118,.18),transparent);
  animation:scan 4.6s linear infinite;
}
@keyframes scan{100%{top:110%}}
.price-card{
  padding:2rem;
  border-color:rgba(255,122,24,.32);
  background:linear-gradient(180deg,rgba(255,122,24,.12),rgba(255,255,255,.052));
  box-shadow:0 30px 100px rgba(255,122,24,.10),var(--shadow);
}
.price-line{display:flex;align-items:end;gap:.55rem}
.price-line strong{font-size:3.2rem;line-height:1;color:#fff}
.price-line span{color:var(--muted);padding-bottom:.32rem}
.check-list{display:grid;gap:.8rem}
.check-list>div{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.25rem .75rem;
  padding:.9rem 1rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.check-list>div:before{
  content:"\2713";
  width:1.65rem;
  height:1.65rem;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  color:#071019;
  background:linear-gradient(135deg,var(--green),var(--accent));
  font-weight:900;
  grid-row:1 / span 2;
}
.check-list strong{color:#fff}
.check-list span{color:var(--muted)}
.check-list.compact>div{padding:.75rem .9rem}
.value-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.9rem;
}
.value-grid>div{
  padding:1rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.035));
}
.value-grid strong{display:block;color:#fff;margin-bottom:.25rem}
.value-grid span{color:var(--muted)}
.notice{
  border:1px solid rgba(255,122,24,.25);
  border-radius:20px;
  background:rgba(255,122,24,.08);
  color:#f1d5c0;
  padding:1rem 1.1rem;
  line-height:1.6;
}
.workflow{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}
.flow-step{
  position:relative;
  padding:1.35rem;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.052);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.flow-step span,
.timeline span{
  display:grid;
  place-items:center;
  width:2.4rem;
  height:2.4rem;
  border-radius:15px;
  color:#111;
  background:var(--accent);
  font-weight:900;
  box-shadow:0 12px 36px rgba(255,122,24,.25);
}
.flow-step h3{font-size:1.05rem;font-weight:900;margin:.85rem 0 .4rem}
.flow-step p{color:var(--muted);margin:0;line-height:1.55}
.timeline{display:grid;gap:1rem}
.timeline>div{display:grid;grid-template-columns:42px 1fr;gap:.85rem;align-items:start}
.timeline p{margin:0;color:#fff}
.timeline em{font-style:normal;color:var(--muted)}
.faq .accordion-item{
  margin-bottom:.75rem;
  overflow:hidden;
  border:1px solid var(--line)!important;
  background:rgba(255,255,255,.045);
}
.faq .accordion-button{
  background:rgba(255,255,255,.035);
  color:#fff;
  box-shadow:none;
  font-weight:750;
}
.faq .accordion-button:not(.collapsed){background:rgba(255,122,24,.12);color:#fff}
.faq .accordion-button:after{filter:invert(1)}
.faq .accordion-body{background:rgba(0,0,0,.10);line-height:1.7}
.ig1-product-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1fr) 190px;
  grid-template-areas:
    "brand seal"
    "copy seal";
  align-items:start;
  gap:1.2rem 2rem;
  padding:2rem 2.2rem;
  color:#15233a;
  background:
    radial-gradient(circle at 82% 18%,rgba(34,211,238,.25),transparent 18rem),
    radial-gradient(circle at 8% 10%,rgba(15,122,229,.12),transparent 18rem),
    linear-gradient(135deg,rgba(255,255,255,.97),rgba(240,247,255,.90));
  border:1px solid rgba(255,255,255,.86);
  border-radius:32px;
  box-shadow:0 32px 100px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.95);
}
.ig1-product-card:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(15,122,229,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(15,122,229,.055) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(90deg,black,transparent 78%);
}
.ig1-product-brand{
  position:relative;
  z-index:2;
  grid-area:brand;
  display:flex;
  align-items:center;
  gap:.9rem;
  margin:0 0 1.2rem;
}
.ig1-product-logo{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#ff7a18,#ffb45f);
  box-shadow:0 14px 34px rgba(255,122,24,.28);
  position:relative;
}
.ig1-product-logo:before{
  content:"";
  position:absolute;
  inset:12px 15px;
  border:4px solid white;
  border-radius:16px 16px 20px 20px;
  clip-path:polygon(50% 0,100% 18%,88% 78%,50% 100%,12% 78%,0 18%);
}
.ig1-product-brand strong{
  display:block;
  font-size:1.55rem;
  line-height:1;
  color:#07111f;
  letter-spacing:-.04em;
}
.ig1-product-brand small{
  display:block;
  color:#42526a;
  margin-top:.25rem;
}
.ig1-product-card p{
  position:relative;
  z-index:2;
  grid-area:copy;
  max-width:760px;
  margin:0;
  color:#334155;
  font-size:1.08rem;
  line-height:1.8;
}
.ig1-product-card a{
  color:#0576d8;
  font-weight:850;
  text-decoration:none;
}
.ig1-product-seal{
  position:relative;
  z-index:2;
  grid-area:seal;
  display:grid;
  place-items:center;
  justify-self:end;
  align-self:start;
  margin-top:-.25rem;
}
.ig1-product-card .ig1-holo-seal.ig1-holo-sticker{
  width:154px;
  max-width:38vw;
}
.ig1-product-card .ig1-seal-orbital-text text{
  font-size:11px;
  letter-spacing:2px;
}
.ig1-product-card .ig1-seal-ribbon{
  font-size:.56rem;
  padding:.38rem .52rem;
}
.ig1-product-card .ig1-seal-mark span{font-size:.82rem;letter-spacing:.16em}
.ig1-product-card .ig1-seal-mark i{font-size:.48rem}
.ig1-product-card .ig1-holo-core small{font-size:.48rem;padding:.18rem .35rem}
.final-cta{
  padding:3rem 2rem;
}
.final-cta p{max-width:760px}
.form-control,.form-select{
  background:rgba(255,255,255,.06);
  color:#fff;
  border-color:var(--line);
  border-radius:16px;
}
.form-control:focus,.form-select:focus{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,122,24,.60);
  box-shadow:0 0 0 .25rem rgba(255,122,24,.14);
}
.page-shell{min-height:70vh}
@media (max-width: 991.98px){
  .premium-hero{padding:5rem 0 3rem}
  .product-stage{transform:none}
  .feature-suite{grid-template-columns:repeat(2,minmax(0,1fr))}
  .workflow{grid-template-columns:repeat(2,minmax(0,1fr))}
  .live-card{display:none}
  .ig1-product-card{grid-template-columns:1fr;grid-template-areas:"brand" "seal" "copy";text-align:left}
  .ig1-product-seal{justify-content:start}
}
@media (max-width: 767.98px){
  .hero-title{font-size:3rem}
  .section-title{font-size:2.1rem}
  .feature-suite{grid-template-columns:1fr}
  .feature-card.featured{grid-column:auto}
  .workflow{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .price-line strong{font-size:2.4rem}
  .premium-hero{padding-top:3.4rem}
  .glass,.product-stage,.split-card,.feature-card,.price-card,.final-cta{border-radius:22px}
  .ig1-product-card{padding:1.5rem;border-radius:24px}
  .ig1-product-card .ig1-holo-seal.ig1-holo-sticker{width:150px}
}

/* Production corrections: balanced hero, circular brand and cleaner FAQ */
.brand-mark{
  display:inline-flex;
  align-items:center;
  gap:.62rem;
}
.brand-orb,
.mini-brand-orb,
.ig1-product-logo{
  flex:0 0 auto;
  display:block;
  border-radius:50%;
  object-fit:cover;
  background:transparent;
  box-shadow:0 12px 34px rgba(255,122,24,.24),0 0 0 1px rgba(255,255,255,.16);
}
.brand-orb{width:42px;height:42px}
.mini-brand-orb{width:28px;height:28px}
.brand-name{letter-spacing:-.04em}
.brand-name span{color:var(--accent)}
.premium-hero{
  min-height:calc(100vh - 72px);
  display:flex;
  align-items:center;
  padding:4rem 0 3.4rem;
}
.hero-grid{--bs-gutter-x:4rem}
.hero-title{
  max-width:720px;
  font-size:clamp(2.45rem,4vw,3.85rem);
  line-height:1.04;
  letter-spacing:-.055em;
}
.hero-copy{
  max-width:660px;
  font-size:1.08rem;
  line-height:1.72;
}
.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.75rem;
  max-width:720px;
}
.hero-highlights>div{
  min-height:86px;
  padding:.85rem .9rem;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-highlights strong{
  display:block;
  color:#fff;
  font-size:.96rem;
  margin-bottom:.22rem;
}
.hero-highlights span{
  display:block;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.35;
}
.hero-console{
  position:relative;
  overflow:hidden;
  padding:1rem;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:
    radial-gradient(circle at 80% 12%,rgba(94,228,118,.15),transparent 18rem),
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.04));
  box-shadow:0 34px 100px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
}
.hero-console:after{
  content:"";
  position:absolute;
  inset:auto 10% -18% 18%;
  height:46%;
  background:radial-gradient(circle,rgba(255,122,24,.18),transparent 70%);
  filter:blur(28px);
  pointer-events:none;
}
.hero-console-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  color:#cbd5e1;
  padding:.1rem .35rem .85rem;
  font-size:.9rem;
}
.hero-console-top span{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
}
.hero-console-top strong{color:#fff}
.hero-screen-wrap{
  position:relative;
  z-index:2;
  border-radius:24px;
  overflow:hidden;
}
.hero-screen-wrap .panel-shot{
  width:100%;
  border-radius:24px;
  opacity:.92;
}
.hero-status-card{
  position:absolute;
  right:1rem;
  top:1rem;
  width:min(250px,44%);
  padding:1rem;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(6,12,20,.84);
  box-shadow:0 24px 68px rgba(0,0,0,.38);
  backdrop-filter:blur(16px);
}
.hero-status-card span{display:block;color:var(--muted);font-size:.78rem}
.hero-status-card strong{display:block;color:#fff;font-size:1.12rem;line-height:1.1;margin:.2rem 0}
.hero-status-card em{display:block;font-style:normal;color:#92a0b4;font-size:.78rem}
.hero-metrics{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.7rem;
  margin-top:.8rem;
}
.hero-metrics>div{
  padding:.75rem .85rem;
  border:1px solid rgba(255,255,255,.11);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.hero-metrics span{display:block;color:var(--muted);font-size:.74rem}
.hero-metrics strong{display:block;color:#fff;font-size:.9rem}
.faq .accordion-item{
  border:0!important;
  background:transparent!important;
  box-shadow:none;
}
.faq .accordion-button{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px!important;
  background:linear-gradient(180deg,rgba(10,18,28,.92),rgba(8,14,22,.78))!important;
  color:#f7fbff;
  min-height:58px;
}
.faq .accordion-button:not(.collapsed){
  border-color:rgba(255,122,24,.34);
  background:linear-gradient(180deg,rgba(255,122,24,.16),rgba(10,18,28,.84))!important;
}
.faq .accordion-collapse{
  border:1px solid rgba(255,255,255,.10);
  border-top:0;
  border-radius:0 0 18px 18px;
  overflow:hidden;
}
.faq .accordion-body{
  background:rgba(5,10,16,.54)!important;
}
.ig1-product-logo{
  width:58px;
  height:58px;
}
.ig1-product-logo:before,
.ig1-product-logo:after{display:none}
.ig1-product-card{
  grid-template-columns:minmax(0,1fr) minmax(145px,180px);
}
.ig1-product-card .ig1-holo-seal.ig1-holo-sticker{
  width:178px!important;
  height:178px!important;
  max-width:178px!important;
  max-height:178px!important;
  min-width:178px!important;
  min-height:178px!important;
  aspect-ratio:1 / 1!important;
  overflow:visible!important;
}
.ig1-product-card .ig1-holo-core{
  width:56%!important;
  height:56%!important;
  min-width:0!important;
  min-height:0!important;
  padding:.38rem!important;
  gap:.12rem!important;
  overflow:hidden;
}
.ig1-product-card .ig1-seal-emblem strong{
  font-size:2rem!important;
  letter-spacing:-.08em!important;
}
.ig1-product-card .ig1-seal-emblem{
  gap:.25rem!important;
}
.ig1-product-card .ig1-seal-mark span{
  font-size:.52rem!important;
  letter-spacing:.16em!important;
}
.ig1-product-card .ig1-seal-mark i{
  font-size:.38rem!important;
  line-height:1.05!important;
}
.ig1-product-card .ig1-seal-ribbon{
  font-size:.40rem!important;
  line-height:1.05!important;
  padding:.24rem .36rem!important;
}
.ig1-product-card .ig1-holo-core small{
  font-size:.38rem!important;
  padding:.12rem .26rem!important;
}
.ig1-product-card p strong{color:#07111f}
@media (max-width: 991.98px){
  .premium-hero{
    min-height:auto;
    padding:3.2rem 0;
  }
  .hero-grid{--bs-gutter-x:1.5rem}
  .hero-highlights{grid-template-columns:1fr}
  .hero-console{margin-top:1rem}
}
@media (max-width: 575.98px){
  html,body{overflow-x:hidden}
  .brand-orb{width:34px;height:34px}
  .navbar .container{gap:.75rem}
  .navbar .ms-auto{display:none!important}
  .navbar .btn{padding:.32rem .55rem;font-size:.78rem}
  .hero-title{font-size:2.05rem;line-height:1.08;letter-spacing:-.04em;max-width:100%;overflow-wrap:break-word}
  .hero-copy{font-size:1rem;max-width:340px;padding-right:.75rem}
  .premium-hero .container{max-width:100%}
  .hero-status-card{position:static;width:auto;margin-top:.7rem}
  .hero-metrics{grid-template-columns:1fr}
  .ig1-product-card{grid-template-areas:"brand" "seal" "copy";grid-template-columns:1fr}
  .ig1-product-logo{width:54px;height:54px}
}

