:root{
  --bg:#16181f;
  --bg-2:#1a1d26;
  --panel:#20232d;
  --panel-2:#262a34;
  --panel-soft:#1d2028;
  --text:#f4f2f7;
  --muted:#b7b4c0;
  --line:rgba(228,74,148,.42);
  --line-soft:rgba(228,74,148,.18);
  --primary:#de3c86;
  --primary-2:#f06aa7;
  --accent:#d7d86a;
  --shadow:0 18px 45px rgba(0,0,0,.32);
  --radius:4px;
  --radius-sm:3px;
  --max:1240px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  overflow-x:clip;
}
body{
  margin:0;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.58;
  overflow-x:clip;
  background:
    linear-gradient(180deg,rgba(255,0,140,.06),rgba(255,0,140,0) 110px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(0deg,rgba(255,255,255,.022) 1px,transparent 1px),
    radial-gradient(circle at 15% 10%,rgba(100,130,255,.10),transparent 28%),
    radial-gradient(circle at 85% 20%,rgba(255,0,140,.07),transparent 30%),
    linear-gradient(180deg,#171920,#14161c);
  background-size:auto, 44px 44px, 44px 44px, auto, auto, auto;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

h1,h2,h3,.h2,.brand-title{
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-weight:800;
  letter-spacing:-.03em;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  background:var(--primary);
  color:#fff;
  padding:.75rem 1rem;
  z-index:1000;
}
.skip-link:focus{left:12px;top:12px}

.container{max-width:var(--max);margin:0 auto;padding:0 38px}
.header-inner,
.hero-grid,
.split,
.grid-3,
.mini-cards{min-width:0}
.content,
.card,
.card-pad,
.hero > .container,
.hero-grid > div,
.hero-media{min-width:0}
.section{
  padding:46px 0;
  position:relative;
}
.section::before{
  content:"";
  position:absolute;
  left:38px;
  right:38px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,0,140,.8),transparent);
  opacity:.55;
}

.topbar{
  background:rgba(12,13,18,.92);
  border-top:1px solid var(--line);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:9px 38px;
  font-size:12px;
  color:#9fa3b7;
  letter-spacing:.03em;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:none;
  background:none;
  color:#f18cba;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
}

header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(18,19,24,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:15px 0 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  background:
    linear-gradient(180deg,transparent 0 18%, rgba(255,255,255,.16) 18% 20%, transparent 20% 40%, rgba(255,255,255,.16) 40% 42%, transparent 42% 62%, rgba(255,255,255,.16) 62% 64%, transparent 64%),
    linear-gradient(135deg,rgba(240,106,167,.95),rgba(222,60,134,.88));
  position:relative;
  box-shadow:0 0 18px rgba(222,60,134,.22);
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:7px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:9px;
}
.brand-title{
  font-size:23px;
  line-height:1;
  color:#fff;
  text-shadow:none;
}
.brand-sub{
  font-size:11px;
  color:#989bad;
  margin-top:2px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  align-items:center;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  color:#b8bac7;
  font-size:14px;
  padding:8px 2px;
  border-radius:0;
  position:relative;
  font-weight:500;
  transition:color .18s ease,text-shadow .18s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:var(--primary);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.nav a:hover,.nav a:focus-visible{
  color:#fff;
  outline:none;
}
.nav a:hover::after,.nav a:focus-visible::after{transform:scaleX(1)}
.nav .cta-mini{
  padding:10px 15px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--primary-2),var(--primary));
  color:#fff;
  border-radius:5px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(222,60,134,.14);
}
.nav .cta-mini::after{display:none}

.desktop-nav{
  margin-left:auto;
}
.mobile-menu{
  display:block;
}
.mobile-menu-toggle{
  display:none;
}
body:has(.mobile-menu[open]){
  overflow:hidden;
}

@media (min-width: 761px){
  .desktop-nav{
    display:flex;
  }
  .mobile-menu{
    display:none;
  }
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 0% 0%,rgba(61,83,139,.22),transparent 26%),
    radial-gradient(circle at 100% 10%,rgba(255,0,140,.12),transparent 24%),
    linear-gradient(180deg,rgba(12,12,18,.28),rgba(12,12,18,.08));
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(14,16,20,.82) 0%,rgba(14,16,20,.55) 35%,rgba(14,16,20,.12) 100%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:var(--line);
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:30px;
  align-items:center;
  min-height:clamp(430px,66vh,690px);
  padding:46px 0 42px;
}
.hero h1{
  margin:0 0 14px;
  font-size:clamp(40px,5vw,64px);
  line-height:1.02;
  text-transform:none;
  color:#fff;
  text-shadow:0 2px 24px rgba(0,0,0,.35);
  max-width:12ch;
}
.hero p{
  margin:0 0 20px;
  color:#d2ced8;
  font-size:16px;
  max-width:62ch;
}
.hero .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:18px 0 20px}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.trust{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:#c7c2cd;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:3px;
  background:rgba(24,26,33,.52);
}
.trust i{
  width:8px;
  height:8px;
  border-radius:999px;
  display:inline-block;
  background:var(--accent);
  box-shadow:0 0 10px rgba(214,231,15,.35);
}
.hero-media{
  position:relative;
  border:1px solid rgba(255,255,255,.06);
  background:#12141a;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:340px;
}
.hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(19,21,28,.10),rgba(19,21,28,.46));
  z-index:1;
}
.hero-media img{
  width:100%;
  height:100%;
  min-height:340px;
  object-fit:cover;
  filter:saturate(.72) contrast(.98) brightness(.82);
}
.hero-media .caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:2;
  padding:10px 12px;
  font-size:12px;
  color:#d1ced6;
  background:rgba(17,18,24,.72);
  border-left:3px solid var(--primary);
}

body.home .hero{
  background:#11131a;
}
body.home .hero::before{
  background:linear-gradient(180deg,rgba(8,10,16,.18),rgba(8,10,16,.34) 28%,rgba(8,10,16,.82) 100%);
}
body.home .hero-grid{
  grid-template-columns:1fr;
  min-height:620px;
  padding:0;
}
body.home .hero-grid > :first-child{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:620px;
  padding:110px 0 82px;
}
body.home .hero .eyebrow{
  margin:0 0 16px;
}
body.home .hero h1{
  max-width:14ch;
  margin:0 auto 16px;
  font-size:clamp(48px,5.8vw,78px);
}
body.home .hero p{
  max-width:54ch;
  margin:0 auto 22px;
  font-size:18px;
}
body.home .hero .hero-actions{
  justify-content:center;
}
body.home .hero .trust-row{
  justify-content:center;
}
body.home .hero-media{
  position:absolute;
  inset:0;
  min-height:100%;
  border:none;
  box-shadow:none;
}
body.home .hero-media::before{
  background:linear-gradient(180deg,rgba(10,12,18,.06),rgba(10,12,18,.28) 26%,rgba(10,12,18,.72) 100%);
}
body.home .hero-media img{
  min-height:100%;
  height:100%;
  filter:saturate(.7) contrast(.95) brightness(.58);
}
body.home .hero-media .caption{
  display:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:11px 18px;
  border:1px solid transparent;
  border-radius:5px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  letter-spacing:0;
  cursor:pointer;
  transition:transform .08s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease,color .18s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(180deg,var(--primary-2),var(--primary));
  color:#fff;
  border-color:rgba(255,93,196,.9);
  box-shadow:0 10px 24px rgba(222,60,134,.18);
}
.btn-primary:hover,.btn-primary:focus-visible{
  color:#fff;
  box-shadow:0 14px 30px rgba(222,60,134,.24);
  outline:none;
}
.btn-secondary,.btn-ghost{
  background:rgba(20,22,29,.88);
  color:var(--accent);
  border-color:rgba(214,231,15,.45);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.btn-secondary:hover,.btn-secondary:focus-visible,
.btn-ghost:hover,.btn-ghost:focus-visible{
  color:#fff;
  border-color:var(--primary);
  background:rgba(25,27,35,.96);
  outline:none;
}

.card{
  background:linear-gradient(180deg,rgba(35,38,48,.95),rgba(28,31,39,.98));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:var(--line);
}
.card-pad{padding:26px}
.eyebrow{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#e98ebd;
  font-weight:600;
}
.h2{
  font-size:clamp(30px,3.7vw,48px);
  line-height:1.04;
  letter-spacing:-.035em;
  margin:12px 0 12px;
  color:#fff;
}
.lead{
  color:#c8c4cf;
  max-width:76ch;
  margin:0;
  font-size:16px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.grid-3 > .card:nth-child(1){transform:translateY(0)}
.grid-3 > .card:nth-child(2){transform:translateY(18px)}
.grid-3 > .card:nth-child(3){transform:translateY(6px)}
.rec-title{
  font-size:24px;
  line-height:1.08;
  margin:0 0 10px;
  color:#fff;
}
.rec-platform{
  font-weight:600;
  color:var(--accent);
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.small{font-size:14px;color:#bfbac5}

.mid-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
  background:linear-gradient(90deg,rgba(255,0,140,.10),rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.mid-cta strong{
  display:block;
  color:#fff;
  font-size:21px;
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-weight:700;
  line-height:1.15;
}

.table-wrap{
  overflow:auto;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg,rgba(29,31,40,.96),rgba(23,25,33,.98));
  box-shadow:var(--shadow);
}
table{
  border-collapse:collapse;
  width:100%;
  min-width:760px;
  background:transparent;
}
th,td{
  padding:16px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
  vertical-align:top;
}
th{
  text-align:left;
  color:#f6f2fb;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:rgba(255,0,140,.08);
}
td{color:#d5d0da}
tr:hover td{background:rgba(255,255,255,.02)}
tr:last-child td{border-bottom:none}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
.badge.good{
  border-color:rgba(214,231,15,.4);
  background:rgba(214,231,15,.12);
  color:#f0f8af;
}
.badge.warn{
  border-color:rgba(255,0,140,.42);
  background:rgba(255,0,140,.12);
  color:#ff9dd7;
}
.badge.neutral{
  border-color:rgba(115,159,255,.35);
  background:rgba(115,159,255,.12);
  color:#cad8ff;
}

.content{max-width:80ch}
.content h2{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(30px,3.4vw,44px);
  line-height:1.06;
}
.content h3{
  margin:22px 0 10px;
  color:#fff;
  font-size:24px;
  line-height:1.15;
  font-weight:700;
}
.content p{
  margin:0 0 14px;
  color:#c4c0ca;
  font-size:16px;
}
.content ul{
  margin:0 0 14px;
  color:#c4c0ca;
  padding-left:20px;
}
.content li{margin:8px 0}
.content strong{color:#fff}

.split{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:22px;
  align-items:start;
}
.aside-card .title{
  font-weight:700;
  margin:0 0 8px;
  color:#fff;
  font-size:22px;
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
}
.aside-card .small{margin:0 0 10px}

.faq{
  display:grid;
  gap:14px;
  max-width:86ch;
}
.faq details{
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg,rgba(35,38,48,.95),rgba(27,29,37,.98));
  padding:16px 18px;
  box-shadow:var(--shadow);
  position:relative;
}
.faq details::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(180deg,var(--primary),rgba(255,0,140,0));
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  letter-spacing:-.01em;
  list-style:none;
  color:#fff;
  font-size:17px;
}
.faq summary::-webkit-details-marker{display:none}
.faq .ans{
  margin-top:10px;
  color:#c3bfca;
  font-size:15px;
}

.mini-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.mini{
  padding:16px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg,rgba(30,33,42,.98),rgba(23,26,34,.98));
  position:relative;
}
.mini::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  height:1px;
  background:rgba(214,231,15,.55);
}
.mini strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:17px;
  font-family:"Segoe UI","Helvetica Neue",Arial,sans-serif;
  font-weight:700;
}
.mini span{color:#b8b4bf;font-size:13px}

main > section:nth-of-type(odd):not(.hero){
  background:linear-gradient(180deg,rgba(255,255,255,.015),rgba(255,255,255,0));
}
main > section:nth-of-type(even):not(.hero){
  background:linear-gradient(180deg,rgba(255,0,140,.035),rgba(255,255,255,0));
}

footer{
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,rgba(23,24,31,.98),rgba(17,18,24,1));
}
.footer-inner{
  padding:34px 0 40px;
  display:grid;
  gap:14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
}
.footer-links a{
  text-decoration:none;
  color:#c0bcc6;
  font-weight:700;
  font-size:14px;
}
.footer-links a:hover,.footer-links a:focus-visible{
  color:var(--accent);
  outline:none;
}
.fineprint{
  color:#9ea2b2;
  font-size:13px;
  max-width:92ch;
}

@media (max-width: 1080px){
  .container{padding:0 24px}
  .section::before{left:24px;right:24px}
  .hero-grid{grid-template-columns:1fr;min-height:auto;padding:34px 0}
  .hero h1{font-size:clamp(42px,12vw,72px)}
  .split{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-3 > .card:nth-child(1),
  .grid-3 > .card:nth-child(2),
  .grid-3 > .card:nth-child(3){transform:none}
  .mini-cards{grid-template-columns:1fr}
  .mid-cta{flex-direction:column;align-items:flex-start}
}

@media (max-width: 760px){
  .desktop-nav{
    display:none;
  }
  html,body{
    max-width:100%;
    overflow-x:hidden;
  }
  .topbar{display:none}
  .header-inner{
    align-items:center;
    flex-direction:row;
    justify-content:space-between;
    gap:12px;
    padding:12px 0;
    position:relative;
  }
  .brand{
    width:auto;
    gap:10px;
    min-width:0;
    flex:1 1 auto;
    overflow:hidden;
  }
  .brand > span:last-child{
    min-width:0;
  }
  .brand-mark{
    width:32px;
    height:32px;
    border-radius:10px;
    flex:0 0 32px;
  }
  .brand-title{
    font-size:18px;
    line-height:1.05;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .brand-sub{
    font-size:9px;
    line-height:1.3;
    letter-spacing:.08em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .mobile-menu{
    margin-left:auto;
    position:static;
  }
  .mobile-menu-toggle{
    list-style:none;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    width:44px;
    height:44px;
    border-radius:4px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    cursor:pointer;
  }
  .mobile-menu-toggle::-webkit-details-marker{display:none}
  .mobile-menu-toggle span{
    width:18px;
    height:2px;
    background:#f4f2f7;
    border-radius:999px;
    transition:transform .18s ease,opacity .18s ease;
  }
  .mobile-menu[open] .mobile-menu-toggle span:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }
  .mobile-menu[open] .mobile-menu-toggle span:nth-child(2){
    opacity:0;
  }
  .mobile-menu[open] .mobile-menu-toggle span:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }
  .mobile-menu::before{display:none}
  .mobile-menu .nav{
    position:absolute;
    left:0;
    right:0;
    top:calc(100% + 1px);
    width:100%;
    max-width:100%;
    max-height:min(72svh,520px);
    padding:24px 24px 26px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    justify-content:flex-start;
    background:linear-gradient(180deg,#1b1d24,#171920);
    border-top:1px solid var(--line);
    border-bottom:1px solid rgba(255,255,255,.06);
    box-shadow:0 20px 40px rgba(0,0,0,.32);
    transform:translateY(-10px);
    opacity:0;
    visibility:hidden;
    transition:transform .18s ease,opacity .18s ease,visibility .18s ease;
    overflow:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    z-index:120;
  }
  .mobile-menu[open] .nav{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }
  .mobile-menu .nav a{
    width:100%;
    padding:2px 0;
    font-size:16px;
    line-height:1.4;
    white-space:normal;
    background:none;
    border:none;
    border-radius:0;
    color:#f3f2f7;
  }
  .mobile-menu .nav a::after{display:none}
  .mobile-menu .nav .cta-mini{
    width:auto;
    margin-top:10px;
    padding:12px 18px;
    border-radius:10px;
    font-size:16px;
  }
  .hero{
    overflow:hidden;
  }
  .hero,
  .hero *{
    max-width:100%;
  }
  .hero-grid{
    gap:0;
    padding:20px 0 24px;
  }
  .hero h1{
    font-size:clamp(28px,11vw,46px);
    line-height:1.02;
    max-width:none;
    margin-bottom:12px;
    overflow-wrap:break-word;
  }
  .hero p,.lead,.content p{font-size:15px}
  .hero .hero-actions{
    gap:10px;
    margin:14px 0 16px;
  }
  .hero .hero-actions .btn{
    width:100%;
    min-height:52px;
    border-radius:12px;
  }
  .trust-row{
    gap:8px;
  }
  .trust{
    width:100%;
    justify-content:flex-start;
  }
  .hero-media{
    min-height:220px;
  }
  .hero-media img{
    min-height:220px;
  }
  .hero-media .caption{
    left:10px;
    right:10px;
    bottom:10px;
    font-size:11px;
    padding:8px 10px;
  }
  body.home .hero{
    min-height:calc(100svh - 72px);
  }
  body.home .hero::before{
    background:linear-gradient(180deg,rgba(8,10,16,.08),rgba(8,10,16,.30) 26%,rgba(8,10,16,.86) 100%);
  }
  body.home .hero-grid{
    min-height:calc(100svh - 72px);
    padding:0;
  }
  body.home .hero-grid > :first-child{
    min-height:calc(100svh - 72px);
    justify-content:flex-end;
    padding:98px 0 32px;
  }
  body.home .hero .eyebrow{
    max-width:20em;
    margin:0 auto 12px;
    font-size:11px;
    line-height:1.45;
  }
  body.home .hero h1{
    max-width:8.5ch;
    font-size:clamp(26px,10vw,46px);
    margin:0 auto 16px;
  }
  body.home .hero p{
    max-width:28ch;
    font-size:15px;
    margin:0 auto 18px;
  }
  body.home .hero .hero-actions{
    width:100%;
    max-width:320px;
    margin:18px auto 0;
  }
  body.home .hero .trust-row{
    display:none;
  }
  body.home .hero-media{
    min-height:100%;
  }
  body.home .hero-media img{
    min-height:100%;
    height:100%;
    object-position:center top;
    filter:saturate(.7) contrast(.94) brightness(.48);
  }
  .content h2,.h2{font-size:34px}
  .content h3,.rec-title{font-size:22px}
  .card-pad{padding:20px}
  .mid-cta{
    padding:18px;
  }
  .mid-cta strong{
    font-size:19px;
  }
  .footer-links{
    gap:8px 12px;
  }
  .footer-links a{
    font-size:13px;
  }
  table{min-width:640px}
}

@supports not (height: 100svh){
  @media (max-width: 760px){
    body.home .hero{
      min-height:calc(100vh - 72px);
    }
    body.home .hero-grid{
      min-height:calc(100vh - 72px);
    }
    body.home .hero-grid > :first-child{
      min-height:calc(100vh - 72px);
    }
  }
}
