@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');
:root{
  --bg-main:#06130E;
  --bg-card:#0D2119;
  --accent:#22F58C;
  --accent-2:#E9B57B;
  --text-main:#F1FBF5;
  --text-muted:#7FA592;
  --border:#1C3B2C;

  /* Light surfaces reserved for header + footer (dark-toned brand logo must sit on light) */
  --surface-light:#EEF6F0;
  --surface-light-2:#F7FCF9;
  --on-light:#0A1C14;
  --on-light-muted:#4B6B59;
  --light-border:#D2E4D9;

  --font-head:'Poppins',system-ui,sans-serif;
  --font-body:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;

  --radius:14px;
  --radius-sm:9px;
  --radius-lg:22px;
  --shadow:0 10px 30px rgba(0,0,0,.4);
  --glow:0 8px 28px rgba(34,245,140,.45);
  --maxw:1180px;
  --pad:clamp(1rem,4vw,2rem);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:800;line-height:1.12;margin:0 0 .6em;letter-spacing:-.01em}
h1{font-size:clamp(2rem,6vw,3.4rem)}
h2{font-size:clamp(1.55rem,4vw,2.35rem)}
h3{font-size:clamp(1.15rem,2.5vw,1.4rem)}
p{margin:0 0 1rem}
strong{color:var(--text-main)}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}
::selection{background:var(--accent);color:#04110B}

/* ---------- LAYOUT: strips (full-width bands, alternating shade) ---------- */
.ivg-container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--pad)}
.ivg-section{padding-block:clamp(2.6rem,6vw,4.4rem)}
.ivg-section--alt{background:var(--bg-card);border-block:1px solid var(--border)}
.ivg-section__head{margin-bottom:2rem}
.ivg-eyebrow{
  font-family:var(--font-head);font-weight:700;font-size:.78rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--accent);margin:0 0 .7rem;display:inline-block;
}
.ivg-section__lead{color:var(--text-muted);max-width:none}

/* ---------- Buttons ---------- */
.ivg-btn{
  display:inline-flex;align-items:center;gap:.5rem;justify-content:center;
  font-family:var(--font-head);font-weight:700;font-size:.98rem;
  padding:.85rem 1.6rem;border-radius:999px;border:0;cursor:pointer;
  background:var(--accent);color:#04110B;box-shadow:var(--glow);
  transition:transform .15s ease,background .2s ease,box-shadow .2s ease;
  white-space:nowrap;line-height:1;
}
.ivg-btn:hover{background:#3BFFA0;transform:translateY(-2px);box-shadow:0 12px 34px rgba(34,245,140,.55)}
.ivg-btn:active{transform:translateY(0)}
.ivg-btn--pulse{animation:ivg-pulse 2.4s ease-in-out infinite}
@keyframes ivg-pulse{0%,100%{box-shadow:0 8px 28px rgba(34,245,140,.35)}50%{box-shadow:0 10px 40px rgba(34,245,140,.65)}}
.ivg-btn--ghost{background:transparent;color:var(--accent);box-shadow:none;border:1.5px solid var(--accent)}
.ivg-btn--ghost:hover{background:rgba(34,245,140,.12);color:var(--accent)}
.ivg-btn--lg{padding:1.05rem 2.1rem;font-size:1.08rem}
.ivg-btn--block{width:100%}

/* ---------- Icons ---------- */
.ivg-icon{width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;flex-shrink:0;stroke:currentColor;fill:none}
.ivg-icon--lg{width:2.1em;height:2.1em}

/* ================= HEADER (light surface — dark brand logo) ================= */
.ivg-header{
  position:sticky;top:0;z-index:50;
  background:var(--surface-light);
  border-bottom:1px solid var(--light-border);
  box-shadow:0 2px 14px rgba(0,0,0,.18);
}
.ivg-header__bar{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  max-width:var(--maxw);margin-inline:auto;padding:.6rem var(--pad);
}
.ivg-logo{display:inline-flex;align-items:center;flex-shrink:0;line-height:0}
.ivg-logo__img{height:40px;width:auto;display:block}
.ivg-nav{display:flex;align-items:center;gap:.35rem}
.ivg-nav a:not(.ivg-btn){
  font-family:var(--font-head);font-weight:600;font-size:.95rem;
  color:var(--on-light);padding:.55rem .85rem;border-radius:var(--radius-sm);
  transition:color .18s ease,background .18s ease;
}
.ivg-nav a:not(.ivg-btn):hover{color:#0A6B3E;background:rgba(34,245,140,.14)}
.ivg-nav a:not(.ivg-btn)[aria-current="page"]{color:#0A6B3E}
.ivg-header__cta{flex-shrink:0}
.ivg-header .ivg-header__cta.ivg-btn{padding:.7rem 1.3rem;font-size:.92rem}

.ivg-burger{
  display:none;flex-shrink:0;width:44px;height:44px;padding:0;
  background:transparent;border:1px solid var(--light-border);border-radius:var(--radius-sm);
  cursor:pointer;flex-direction:column;align-items:center;justify-content:center;gap:5px;
}
.ivg-burger span{display:block;width:22px;height:2px;background:var(--on-light);border-radius:2px;transition:transform .25s ease,opacity .2s ease}
.ivg-header.is-open .ivg-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ivg-header.is-open .ivg-burger span:nth-child(2){opacity:0}
.ivg-header.is-open .ivg-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:860px){
  .ivg-burger{display:flex}
  .ivg-logo__img{height:34px;max-width:min(45vw,190px)}
  .ivg-header .ivg-header__cta.ivg-btn{padding:.6rem 1rem;font-size:.85rem}
  .ivg-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:.15rem;
    background:var(--surface-light);border-bottom:1px solid var(--light-border);
    padding:.6rem var(--pad) 1rem;box-shadow:0 14px 24px rgba(0,0,0,.22);
  }
  .ivg-header.is-open .ivg-nav{display:flex}
  .ivg-nav a:not(.ivg-btn){padding:.85rem .6rem;border-bottom:1px solid var(--light-border);border-radius:0}
  .ivg-nav a:not(.ivg-btn):last-child{border-bottom:0}
}
@media (max-width:420px){
  .ivg-header__cta{display:none}
}

/* ================= HERO — split ================= */
.ivg-hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(120% 130% at 78% 12%,rgba(34,245,140,.16) 0%,transparent 46%),
    linear-gradient(155deg,#06130E 0%,#0D2119 100%);
  border-bottom:1px solid var(--border);
}
.ivg-hero::before{/* diagonal lime glow-beam */
  content:"";position:absolute;top:-30%;right:8%;width:46%;height:170%;
  background:linear-gradient(180deg,rgba(34,245,140,.28),transparent 70%);
  transform:rotate(18deg);filter:blur(46px);pointer-events:none;
}
.ivg-hero__inner{
  position:relative;z-index:1;
  max-width:var(--maxw);margin-inline:auto;padding:clamp(2.6rem,7vw,4.6rem) var(--pad);
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.5rem,4vw,3rem);align-items:center;
}
.ivg-hero__text>*{min-width:0}
.ivg-hero h1{margin-bottom:.5rem}
.ivg-hero__sub{font-size:clamp(1rem,2.2vw,1.2rem);color:var(--text-muted);margin-bottom:1.6rem;max-width:52ch}
.ivg-hero__actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-bottom:1.3rem}
.ivg-hero__rating{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--font-head);font-weight:600;color:var(--text-muted);font-size:.95rem}
.ivg-hero__stars{display:inline-flex;gap:2px;color:var(--accent-2)}
.ivg-hero__stars .ivg-icon{width:1.15em;height:1.15em;fill:var(--accent-2);stroke:var(--accent-2)}
.ivg-hero__visual{position:relative;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:3/2;
  background:linear-gradient(140deg,#0D2119,#06130E);border:1px solid var(--border)}
.ivg-hero__img{display:block;width:100%;height:auto;max-height:70vh;aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius-lg)}
@media (max-width:820px){
  .ivg-hero__inner{grid-template-columns:1fr;gap:1.8rem}
  .ivg-hero__sub{max-width:none}
}

/* ================= STATS-BAR — counters ================= */
.ivg-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(160px,100%),1fr));gap:clamp(1.2rem,4vw,2.4rem);text-align:center}
.ivg-stat__value{font-family:var(--font-head);font-weight:800;font-size:clamp(2.2rem,5vw,3.5rem);color:var(--accent);line-height:1;letter-spacing:-.02em}
.ivg-stat__value::after{content:"";display:block;width:34px;height:3px;background:var(--accent-2);border-radius:3px;margin:.55rem auto 0}
.ivg-stat__label{display:block;margin-top:.7rem;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted)}

/* ================= OVERVIEW ================= */
.ivg-overview p{color:var(--text-muted)}
.ivg-overview p strong{color:var(--text-main)}

/* ================= FEATURE-CARDS — grid ================= */
.ivg-features{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr));gap:clamp(1rem,2.5vw,1.6rem)}
.ivg-feature{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.6rem 1.4rem;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;min-width:0;
}
.ivg-feature:hover{transform:translateY(-4px);border-color:var(--accent);box-shadow:var(--shadow)}
.ivg-feature__icon{
  display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;
  border-radius:var(--radius-sm);background:rgba(34,245,140,.12);color:var(--accent);margin-bottom:1rem;
}
.ivg-feature__icon .ivg-icon{width:1.7em;height:1.7em}
.ivg-feature h3{margin-bottom:.4rem}
.ivg-feature p{color:var(--text-muted);margin:0;font-size:.95rem}

/* ================= CARDS-GRID ================= */
.ivg-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));gap:1.2rem}
.ivg-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem;min-width:0}
.ivg-card h3{margin-bottom:.5rem}
.ivg-card p{color:var(--text-muted);font-size:.94rem;margin:0}

/* ================= DATA-TABLE ================= */
.ivg-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;border:1px solid var(--border);border-radius:var(--radius)}
.ivg-table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:520px}
.ivg-table th,.ivg-table td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid var(--border)}
.ivg-table thead th{background:var(--accent);color:#04110B;font-family:var(--font-head);font-weight:700;white-space:nowrap;border-bottom:0}
.ivg-table tbody tr:nth-child(odd){background:var(--bg-main)}
.ivg-table tbody tr:nth-child(even){background:var(--bg-card)}
.ivg-table tbody tr:hover{background:rgba(233,181,123,.1)}
.ivg-table td strong{color:var(--accent-2)}

/* ================= TWO-COLS + content-panel ================= */
.ivg-two{display:grid;grid-template-columns:1.3fr .7fr;gap:clamp(1.4rem,4vw,2.6rem);align-items:start}
.ivg-two>*{min-width:0}
.ivg-two__text p{color:var(--text-muted)}
@media (max-width:820px){.ivg-two{grid-template-columns:1fr}}

.ivg-panel{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow)}
.ivg-panel__title{font-family:var(--font-head);font-weight:700;font-size:1.05rem;margin:0 0 1rem;color:var(--text-main)}
.ivg-facts{margin:0}
.ivg-facts__row{display:flex;justify-content:space-between;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--border)}
.ivg-facts__row:last-child{border-bottom:0}
.ivg-facts__row dt{color:var(--text-muted);font-size:.9rem;margin:0}
.ivg-facts__row dd{margin:0;font-weight:600;color:var(--text-main);text-align:right}
.ivg-checklist{list-style:none;margin:0;padding:0}
.ivg-checklist li{display:flex;gap:.6rem;align-items:flex-start;padding:.55rem 0;color:var(--text-muted)}
.ivg-checklist .ivg-icon{color:var(--accent);margin-top:.15em}
.ivg-tiles{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem}
.ivg-tile{background:var(--bg-main);border:1px solid var(--border);border-radius:var(--radius-sm);padding:.9rem}
.ivg-tile__v{font-family:var(--font-head);font-weight:800;font-size:1.35rem;color:var(--accent)}
.ivg-tile__l{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted)}
.ivg-score{display:flex;flex-direction:column;gap:.3rem;align-items:flex-start}
.ivg-score__num{font-family:var(--font-head);font-weight:800;font-size:2.6rem;color:var(--accent);line-height:1}
.ivg-score__stars{display:inline-flex;gap:2px;color:var(--accent-2)}
.ivg-score__stars .ivg-icon{fill:var(--accent-2);stroke:var(--accent-2);width:1.1em;height:1.1em}
.ivg-score__label{font-size:.85rem;color:var(--text-muted)}

/* ================= NUMBERED-LIST ================= */
.ivg-numbered{list-style:none;counter-reset:ivg-n;margin:1.4rem 0;padding:0}
.ivg-numbered li{counter-increment:ivg-n;position:relative;padding:.4rem 0 1rem 3.2rem;color:var(--text-muted)}
.ivg-numbered li::before{
  content:counter(ivg-n);position:absolute;left:0;top:.15rem;
  width:2.2rem;height:2.2rem;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-weight:800;color:#04110B;background:var(--accent);
  border-radius:50%;font-size:1rem;box-shadow:var(--glow);
}
.ivg-numbered li strong{color:var(--text-main);display:block;margin-bottom:.2rem;font-family:var(--font-head)}

/* ================= CATEGORIES-BAR ================= */
.ivg-cats{display:flex;flex-wrap:wrap;gap:.6rem}
.ivg-pill{
  display:inline-flex;align-items:center;gap:.4rem;padding:.5rem 1rem;border-radius:999px;
  background:var(--bg-card);border:1px solid var(--border);color:var(--text-muted);font-size:.88rem;font-weight:600;
}
.ivg-pill--gold{border-color:var(--accent-2);color:var(--accent-2)}

/* ================= PAGE-HEADER ================= */
.ivg-page-header{position:relative;background:var(--bg-card);border-bottom:1px solid var(--border);overflow:hidden}
.ivg-page-header__inner{position:relative;z-index:1;max-width:var(--maxw);margin-inline:auto;padding:clamp(2rem,5vw,3rem) var(--pad)}
.ivg-page-header h1{margin-bottom:.6rem}
.ivg-page-header__lead{color:var(--text-muted);max-width:64ch;margin:0}
.ivg-breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.85rem;color:var(--text-muted);margin-bottom:1rem}
.ivg-breadcrumb a{color:var(--text-muted)}
.ivg-breadcrumb a:hover{color:var(--accent)}
.ivg-breadcrumb span[aria-current]{color:var(--text-main)}
.ivg-breadcrumb .ivg-sep{opacity:.5}

/* ================= LEGAL-BODY ================= */
.ivg-legal{max-width:none;counter-reset:ivg-h}
.ivg-legal h2{counter-increment:ivg-h;margin-top:2rem}
.ivg-legal h2::before{content:counter(ivg-h) ". ";color:var(--accent)}
.ivg-legal p,.ivg-legal li{color:var(--text-muted)}
.ivg-legal ul,.ivg-legal ol{padding-left:1.3rem}
.ivg-legal li{margin-bottom:.5rem}

/* ================= TOC ================= */
.ivg-toc{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.4rem 1.5rem}
.ivg-toc__title{font-family:var(--font-head);font-weight:700;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin:0 0 .9rem}
.ivg-toc ol{list-style:none;counter-reset:ivg-toc;margin:0;padding:0}
.ivg-toc li{counter-increment:ivg-toc;margin-bottom:.5rem}
.ivg-toc a{display:flex;gap:.6rem;color:var(--text-muted)}
.ivg-toc a::before{content:counter(ivg-toc,decimal-leading-zero);color:var(--accent-2);font-family:var(--font-head);font-weight:700}
.ivg-toc a:hover{color:var(--accent)}

/* ================= FAQ — two-col ================= */
.ivg-faq{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 2.5rem;align-items:start}
.ivg-faq details{border-bottom:1px solid var(--border)}
.ivg-faq summary{cursor:pointer;padding:1rem 0;font-family:var(--font-head);font-weight:600;list-style:none;display:flex;align-items:baseline;color:var(--text-main)}
.ivg-faq summary::-webkit-details-marker{display:none}
.ivg-faq summary::before{content:'+';margin-right:.6rem;color:var(--accent);font-weight:800;transition:transform .2s}
.ivg-faq details[open] summary::before{content:'−'}
.ivg-faq details>:not(summary){padding:.2rem 0 1.1rem;color:var(--text-muted)}
@media (max-width:720px){.ivg-faq{grid-template-columns:1fr;gap:0}}

/* ================= CTA-BLOCK ================= */
.ivg-cta-block{
  position:relative;overflow:hidden;text-align:center;border-radius:var(--radius-lg);
  padding:clamp(2.2rem,6vw,3.6rem) var(--pad);
  background:radial-gradient(120% 140% at 50% 0%,rgba(34,245,140,.2),transparent 55%),linear-gradient(160deg,#0D2119,#06130E);
  border:1px solid var(--accent);box-shadow:var(--glow);
}
.ivg-cta-block h2{margin-bottom:.6rem}
.ivg-cta-block p{color:var(--text-muted);max-width:56ch;margin:0 auto 1.6rem}
.ivg-cta-block .ivg-btn{margin-inline:auto}

/* ================= PAYMENTS-TABLE ================= */
.ivg-pay td:first-child{display:flex;align-items:center;gap:.6rem;font-weight:600;color:var(--text-main)}
.ivg-pay .ivg-icon{color:var(--accent)}

/* ================= RTP-GRID ================= */
.ivg-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:640px){.ivg-rtp{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:960px){.ivg-rtp{grid-template-columns:repeat(4,minmax(0,1fr))}}
.ivg-rtp-item{position:relative;overflow:hidden;min-width:0;border-radius:var(--radius);border:1px solid var(--border);background:var(--bg-card);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.ivg-rtp-item:hover{transform:translateY(-4px);border-color:var(--accent);box-shadow:var(--glow)}
.ivg-rtp-item__thumb{aspect-ratio:3/2;position:relative;background:linear-gradient(140deg,#0D2119,#06130E)}
.ivg-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.ivg-rtp-item__badge{position:absolute;top:.5rem;right:.5rem;z-index:2;background:var(--accent-2);color:#2A1A06;font-family:var(--font-head);font-weight:700;font-size:.72rem;padding:.2rem .5rem;border-radius:6px}
.ivg-rtp-item__name{padding:.6rem .7rem;font-size:.88rem;font-weight:600;color:var(--text-main);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ivg-rtp-tooltip{position:absolute;left:0;right:0;bottom:0;opacity:0;transition:opacity .2s;background:linear-gradient(0deg,rgba(6,19,14,.96),rgba(6,19,14,.4));color:var(--text-main);padding:.7rem;font-size:.8rem;z-index:3}
.ivg-rtp-item:hover .ivg-rtp-tooltip{opacity:1}
/* touch devices have no hover — surface the slot info inline instead of hiding it */
@media (hover:none){
  .ivg-rtp-tooltip{position:static;opacity:1;background:none;padding:.4rem .7rem .7rem;color:var(--text-muted);font-size:.76rem;line-height:1.5}
  .ivg-rtp-item__name{white-space:normal}
}

/* ================= STICKY-NAV (mobile) ================= */
.ivg-sticky-nav{display:none}
@media (max-width:768px){
  .ivg-sticky-nav{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:60;
    background:var(--surface-light);border-top:1px solid var(--light-border);
    padding:.4rem;gap:.3rem;justify-content:space-around;box-shadow:0 -4px 16px rgba(0,0,0,.25);
  }
  .ivg-sticky-nav a{display:flex;flex-direction:column;align-items:center;gap:.15rem;font-size:.68rem;color:var(--on-light-muted);flex:1;padding:.3rem}
  .ivg-sticky-nav a .ivg-icon{color:var(--on-light)}
  .ivg-sticky-nav a--cta{color:#0A6B3E;font-weight:700}
}

/* ================= CHAT-WIDGET ================= */
.ivg-chat-btn{position:fixed;right:1rem;bottom:1rem;z-index:55;width:56px;height:56px;border-radius:50%;background:var(--accent);color:#04110B;border:0;box-shadow:var(--glow);cursor:pointer;display:flex;align-items:center;justify-content:center}
.ivg-chat-panel{position:fixed;right:1rem;bottom:5rem;z-index:56;width:min(320px,90vw);background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.2rem;display:none}
.ivg-chat-panel.is-open{display:block}

/* ================= FOOTER (light surface — dark brand logo) ================= */
.ivg-footer{background:var(--surface-light);color:var(--on-light);border-top:1px solid var(--light-border)}
.ivg-footer__top{
  max-width:var(--maxw);margin-inline:auto;padding:clamp(2.4rem,5vw,3.4rem) var(--pad) 1.8rem;
  display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:clamp(1.6rem,4vw,3rem);
}
.ivg-footer__brand .ivg-logo__img{height:38px;margin-bottom:1rem}
.ivg-footer__about{color:var(--on-light-muted);font-size:.92rem;max-width:42ch;margin:0 0 1rem}
.ivg-footer__col h3{font-family:var(--font-head);font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--on-light);margin:0 0 1rem}
.ivg-footer__col ul{list-style:none;margin:0;padding:0}
.ivg-footer__col li{margin-bottom:.6rem}
.ivg-footer__col a{color:var(--on-light-muted);font-size:.93rem}
.ivg-footer__col a:hover{color:#0A6B3E}
.ivg-footer__badges{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:.4rem}
.ivg-badge{display:inline-flex;align-items:center;gap:.4rem;font-size:.78rem;font-weight:700;color:var(--on-light);border:1px solid var(--light-border);border-radius:8px;padding:.3rem .6rem;background:var(--surface-light-2)}
.ivg-badge .ivg-icon{color:#0A6B3E}
.ivg-footer__disclaimer{
  max-width:var(--maxw);margin-inline:auto;padding:0 var(--pad) 1.4rem;
  color:var(--on-light-muted);font-size:.8rem;line-height:1.6;border-top:1px solid var(--light-border);padding-top:1.4rem;
}
.ivg-footer__bottom{
  max-width:var(--maxw);margin-inline:auto;padding:0 var(--pad) 2rem;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:.8rem;align-items:center;
  color:var(--on-light-muted);font-size:.82rem;
}
.ivg-footer__age{display:inline-flex;align-items:center;gap:.5rem;font-weight:700;color:var(--on-light)}
.ivg-footer__age b{background:#B4231E;color:#fff;border-radius:6px;padding:.1rem .45rem;font-size:.78rem}
@media (max-width:760px){
  .ivg-footer__top{grid-template-columns:1fr 1fr}
  .ivg-footer__brand{grid-column:1/-1}
}
@media (max-width:480px){.ivg-footer__top{grid-template-columns:1fr}}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.ivg-footer .ivg-logo__img{filter:none;background:transparent;padding:0}
.ivg-footer .ivg-footer__logo-chip{background:transparent;padding:0}
/* sa-ph-media */
.ivg-page-header:has(.ivg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.ivg-page-header:has(.ivg-hero__img) .ivg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.ivg-page-header:has(.ivg-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
.ivg-page-header:has(.ivg-hero__img)>:not(.ivg-hero__img){position:relative;z-index:2}
.ivg-page-header:has(.ivg-hero__img),.ivg-page-header:has(.ivg-hero__img) h1,.ivg-page-header:has(.ivg-hero__img) a,.ivg-page-header:has(.ivg-hero__img) p,.ivg-page-header:has(.ivg-hero__img) li,.ivg-page-header:has(.ivg-hero__img) span{color:#fff}
/* sa-hero-media */
.ivg-hero:has(>.ivg-hero__img){position:relative;isolation:isolate}
.ivg-hero:has(>.ivg-hero__img)>.ivg-hero__img{z-index:0}
.ivg-hero:has(>.ivg-hero__img)::after{z-index:1}
.ivg-hero:has(>.ivg-hero__img)>:not(.ivg-hero__img){position:relative;z-index:2}
/* sa-rhythm */
:where(.ivg-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.ivg-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.ivg-rtp-item,.ivg-rtp-item:hover,.ivg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
/* sa-readability — long-form article & legal body brighter than the muted UI tone */
.ivg-legal p,.ivg-legal li,.ivg-two__text p,.ivg-overview p{color:#BCD4C7}
.ivg-legal p strong,.ivg-two__text p strong,.ivg-overview p strong{color:var(--text-main)}
/* sa-pulse-calm — only the primary CTA pulses; header CTA stays static so two buttons don't throb in one viewport */
.ivg-header .ivg-btn--pulse{animation:none}
/* sa-empty-star — represent a partial rating honestly (4.2/5 → 4 filled + 1 outline) */
.ivg-hero__stars .ivg-icon--empty{fill:none;opacity:.4}
.ivg-score__stars .ivg-icon--empty{fill:none;opacity:.4}
/* sa-legal-legible — bump the smallest legal type on phones */
@media (max-width:480px){
  .ivg-footer__disclaimer{font-size:.86rem}
  .ivg-footer__bottom{font-size:.85rem}
  .ivg-badge{font-size:.82rem}
}
