:root{
  --bg:#16181f;
  --bg-deep:#111319;
  --surface:#1d2028;
  --surface-2:#20242c;
  --surface-3:#272b35;
  --surface-soft:rgba(255,255,255,.03);
  --primary:#ff0aa3;
  --primary-2:#ff57b9;
  --secondary:#d4ff2a;
  --secondary-2:#f0ff8f;
  --text:#ffffff;
  --text-soft:#d8d9df;
  --muted:#a9adb8;
  --border:rgba(255,10,163,.28);
  --border-soft:rgba(255,255,255,.08);
  --glow:rgba(255,10,163,.32);
  --shadow:0 20px 50px rgba(0,0,0,.34);
  --radius-sm:8px;
  --radius-md:8px;
  --radius-lg:10px;
  --container:1210px;
  --section-space:clamp(2.4rem,4vw,4.7rem);
  --h1:clamp(2.35rem,6vw,4.45rem);
  --h2:clamp(1.85rem,4vw,3.1rem);
  --h3:clamp(1rem,2vw,1.3rem);
  --btn-h:48px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  font-family:Inter,Segoe UI,Arial,Helvetica,sans-serif;
  line-height:1.55;
  background:
    linear-gradient(180deg, rgba(255,10,163,.06), transparent 18%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  position:relative;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.4;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:42px 42px,42px 42px;
  mix-blend-mode:screen;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.12;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255,255,255,.14) 22% 26%, transparent 26% 100%) 0 0/180px 180px,
    linear-gradient(180deg, transparent 0 38%, rgba(255,255,255,.11) 38% 43%, transparent 43% 100%) 0 0/220px 220px;
}
img{display:block; max-width:100%; height:auto}
a{color:inherit; text-decoration:none}
button,input{font:inherit}

.container{width:min(var(--container), calc(100% - 2rem)); margin:0 auto}
.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  background:#000;
  color:#fff;
  padding:.7rem .9rem;
  z-index:200;
}
.skip-link:focus{left:12px; top:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(19,22,29,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 0 rgba(255,255,255,.03) inset;
}
.header-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand{
  display:flex;
  flex-direction:column;
  gap:.15rem;
}
.brand a{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  font-family:"Arial Narrow","Franklin Gothic Medium","Segoe UI",sans-serif;
  font-size:1.55rem;
  font-weight:800;
  letter-spacing:-.03em;
}
.brand-mark{
  width:12px;
  height:32px;
  background:linear-gradient(180deg, var(--primary-2), var(--primary));
  clip-path:polygon(30% 0,100% 0,72% 32%,100% 100%,25% 100%,0 58%,34% 45%,0 0);
  box-shadow:0 0 18px var(--glow);
}
.brand-tagline{
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:.3rem;
  flex-wrap:wrap;
}
.nav a{
  position:relative;
  padding:.7rem .72rem;
  color:var(--text-soft);
  font-size:.88rem;
  letter-spacing:.01em;
  transition:color .18s ease;
}
.nav a::after{
  content:"";
  position:absolute;
  left:.72rem;
  right:.72rem;
  bottom:.28rem;
  height:2px;
  background:linear-gradient(90deg, var(--secondary), var(--primary));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.nav a:hover,
.nav a[aria-current="page"]{color:#fff}
.nav a:hover::after,
.nav a[aria-current="page"]::after{transform:scaleX(1)}

.header-cta{
  display:flex;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:var(--btn-h);
  padding:.72rem 1.2rem;
  border:1px solid transparent;
  border-radius:var(--radius-sm);
  font-weight:700;
  font-size:.95rem;
  line-height:1;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible{
  outline:2px solid var(--secondary);
  outline-offset:2px;
}
.btn-primary{
  background:linear-gradient(180deg, var(--primary-2), var(--primary));
  color:#fff;
  box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 18px rgba(255,10,163,.22);
}
.btn-primary:hover{box-shadow:0 0 0 1px rgba(255,255,255,.05) inset, 0 0 24px rgba(255,10,163,.32)}
.btn-secondary{
  background:rgba(255,255,255,.03);
  color:var(--secondary);
  border-color:rgba(212,255,42,.48);
}
.btn-secondary:hover{background:rgba(212,255,42,.08)}
.btn-outline{
  background:rgba(255,255,255,.02);
  color:var(--text-soft);
  border-color:var(--border);
}
.btn-outline:hover{background:rgba(255,10,163,.08); color:#fff}
.btn-ghost{
  background:rgba(255,255,255,.02);
  color:var(--text-soft);
  border-color:var(--border);
}
.btn-ghost:hover{background:rgba(255,10,163,.08); color:#fff}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:rgba(255,255,255,.03);
  color:#fff;
}
.nav-toggle svg{width:20px; height:20px}
.mobile-panel{
  display:none;
  position:fixed;
  inset:0;
  z-index:90;
  background:rgba(12,14,18,.78);
  backdrop-filter:blur(6px);
}
.mobile-panel[data-open="true"]{display:block}
.mobile-sheet{
  width:min(92vw, 420px);
  margin:1rem;
  border:1px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(35,39,48,.98), rgba(19,22,29,.98));
  box-shadow:var(--shadow);
}
.mobile-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem;
  border-bottom:1px solid var(--border-soft);
}
.mobile-links{
  display:grid;
  gap:.3rem;
  padding:.8rem 1rem;
}
.mobile-links a{
  padding:.85rem .9rem;
  border-radius:10px;
  color:var(--text-soft);
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.04);
}
.mobile-links a:hover{
  background:rgba(255,10,163,.08);
  color:#fff;
}
.mobile-cta{
  display:grid;
  gap:.75rem;
  padding:0 1rem 1rem;
}

main{padding:1.1rem 0 4rem}
section{position:relative}
section + section{margin-top:var(--section-space)}
.section .container{
  position:relative;
  padding-top:1.5rem;
}
.section .container::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,10,163,.85) 12%, rgba(255,10,163,.85) 78%, transparent);
}

.eyebrow,
.kicker{
  margin:0 0 .7rem;
  color:var(--primary-2);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h1,h2,h3{
  margin:0;
  font-family:"Arial Narrow","Franklin Gothic Medium","Segoe UI",sans-serif;
  font-weight:800;
  line-height:1.02;
  letter-spacing:-.03em;
}
h1{font-size:var(--h1)}
h2{font-size:var(--h2); margin-bottom:.9rem}
h3{font-size:var(--h3)}
p{margin:0 0 1rem; color:var(--text-soft)}
p strong{color:#fff}
.inline,
.text-link{
  color:#fff;
  text-decoration:underline;
  text-decoration-color:rgba(212,255,42,.65);
  text-underline-offset:3px;
}
.muted{color:var(--muted)}

.hero{
  margin-top:.4rem;
}
.hero-surface{
  position:relative;
  overflow:hidden;
  min-height:540px;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(35,39,48,.94), rgba(19,22,29,.98));
  box-shadow:var(--shadow);
}
.hero-surface::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(17,20,26,.9) 0, rgba(17,20,26,.76) 36%, rgba(17,20,26,.48) 70%, rgba(17,20,26,.8) 100%),
    radial-gradient(circle at 70% 20%, rgba(255,10,163,.28), transparent 32%);
  z-index:1;
}
.hero-backdrop{
  position:absolute;
  inset:0;
}
.hero-backdrop img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.28;
  filter:saturate(.9) contrast(1.05);
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  gap:1.2rem;
  padding:clamp(1.3rem,3vw,2rem);
  min-height:540px;
}
.hero-grid-home{
  grid-template-columns:minmax(0,1.2fr) minmax(340px,.85fr);
  align-items:end;
}
.hero-grid-utility,
.hero-grid-country{
  grid-template-columns:minmax(0,1fr) minmax(320px,.78fr);
  align-items:stretch;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  max-width:760px;
  padding-top:1rem;
}
.hero-summary{
  max-width:58ch;
  font-size:1.03rem;
  color:#eef0f5;
}
.hero-column{
  display:grid;
  gap:1rem;
  align-content:end;
}
.page-home .hero{
  margin-top:1.1rem;
}
.page-home .hero .container{
  width:min(1320px, calc(100% - 2.4rem));
}
.page-home .hero-surface{
  min-height:520px;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg, rgba(34,37,44,.96), rgba(22,24,30,.98));
  box-shadow:var(--shadow);
}
.page-home .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(19,22,29,.98) 0, rgba(19,22,29,.93) 48%, rgba(19,22,29,.34) 72%, rgba(19,22,29,.16) 100%),
    linear-gradient(180deg, rgba(255,10,163,.08), transparent 42%);
}
.page-home .hero-backdrop{
  inset:34px 34px 34px auto;
  width:min(48%, 680px);
  z-index:0;
  overflow:hidden;
  border:1px solid rgba(255,10,163,.46);
  border-radius:var(--radius-sm);
  background:#0f1116;
}
.page-home .hero-backdrop img{
  opacity:.9;
  filter:saturate(1.03) contrast(1.08);
  object-position:center;
}
.page-home .hero-grid-home{
  grid-template-columns:minmax(0,.9fr) minmax(430px,1fr);
  min-height:520px;
  place-items:stretch;
  align-items:center;
  padding:clamp(2rem,5vw,3.6rem);
  text-align:left;
}
.page-home .hero-copy{
  align-items:flex-start;
  justify-content:center;
  max-width:610px;
  margin:0;
  padding-top:0;
}
.page-home .hero-copy h1{
  max-width:620px;
  margin-bottom:.6rem;
  text-shadow:0 0 18px rgba(255,10,163,.42), 0 3px 22px rgba(0,0,0,.48);
}
.page-home .hero-summary{
  max-width:58ch;
  font-size:clamp(1rem,1.6vw,1.16rem);
  color:#e5e7ed;
}
.page-home .hero-actions,
.page-home .badge-row{
  justify-content:flex-start;
}
.page-home .hero-column{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin:1rem 0 1rem;
}
.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  min-height:36px;
  padding:.45rem .8rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(15,17,22,.55);
  color:#eef0f6;
  font-size:.82rem;
}
.chip-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--secondary);
  box-shadow:0 0 12px rgba(212,255,42,.45);
}

.hero-search-panel,
.utility-panel,
.warning-box,
.preview-card,
.note,
.card,
.step,
.cta-band,
.faq details{
  background:linear-gradient(180deg, rgba(38,42,51,.9), rgba(24,27,34,.95));
  border:1px solid var(--border-soft);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
}
.hero-search-panel,
.utility-panel,
.warning-box{padding:1rem}
.hero-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:.75rem;
}
.panel-label{
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--primary-2);
}
.panel-mark{
  font-size:.73rem;
  font-weight:700;
  color:var(--secondary);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.panel-note,
.demo-note{
  margin:0;
  font-size:.88rem;
  color:var(--muted);
}
.demo-note{
  max-width:52ch;
  padding:.9rem 1rem;
  border-left:3px solid var(--secondary);
  background:rgba(255,255,255,.03);
}

.search-demo{
  display:flex;
  align-items:center;
  gap:.7rem;
  min-height:58px;
  padding:.9rem 1rem;
  border-radius:12px;
  background:rgba(9,11,15,.65);
  border:1px solid rgba(255,255,255,.08);
}
.search-demo svg{width:20px; height:20px; color:var(--primary-2)}
.search-demo input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  font-size:.98rem;
}
.search-demo input::placeholder{color:#9095a1}
.kbd{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  min-height:30px;
  padding:0 .55rem;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--secondary);
  font-size:.75rem;
  text-transform:uppercase;
}
.suggest{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.8rem;
}
.suggest button{
  padding:.48rem .8rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--text-soft);
  cursor:pointer;
}
.suggest button:hover{
  background:rgba(255,10,163,.12);
  color:#fff;
}

.preview-card{
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr;
}
.preview-card.accent{
  padding:1rem;
  border-color:rgba(255,10,163,.35);
}
.preview-media{
  aspect-ratio:16/10;
  overflow:hidden;
}
.preview-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.preview-copy{
  padding:1rem;
}
.preview-copy h3{margin-bottom:.45rem}
.preview-copy p{margin-bottom:0}

.warning-box{
  margin-top:.4rem;
  border-color:rgba(212,255,42,.35);
  background:linear-gradient(180deg, rgba(45,48,29,.45), rgba(24,27,34,.96));
}
.warning-box strong{
  display:block;
  margin-bottom:.35rem;
  color:var(--secondary);
  font-size:1rem;
}
.warning-box p{margin:0}
.utility-list{
  margin:.3rem 0 0;
  padding-left:1rem;
  color:var(--text-soft);
}
.utility-list li + li{margin-top:.55rem}

.section h2 + p{max-width:65ch}

.grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:1rem;
}
.card{
  position:relative;
  overflow:hidden;
  padding:1.05rem;
  border-top:2px solid transparent;
}
.card::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(255,10,163,.85), transparent);
}
.card h3{margin-bottom:.45rem}
.card p{margin:0}
.icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  margin-bottom:.8rem;
  border-radius:10px;
  background:rgba(255,10,163,.12);
  border:1px solid rgba(255,10,163,.35);
  color:#fff;
}
.icon svg{width:20px; height:20px}
.span-4{grid-column:span 4}
.span-6{grid-column:span 6}
.span-8{grid-column:span 8}
.span-12{grid-column:span 12}

.media-strip{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:1.15rem;
  margin-top:1.4rem;
}
.media-card{
  grid-column:span 6;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(170px,.48fr) minmax(0,1fr);
  border:1px solid rgba(255,10,163,.3);
  border-radius:var(--radius-sm);
  background:linear-gradient(180deg, rgba(35,39,48,.92), rgba(22,24,30,.96));
  box-shadow:0 18px 36px rgba(0,0,0,.28);
}
.media-card:nth-child(1){
  grid-column:span 6;
  grid-row:auto;
}
.media-card:nth-child(2),
.media-card:nth-child(3){
  grid-column:span 6;
}
.media-card.wide{grid-column:span 6}
.media-frame{
  min-height:190px;
  aspect-ratio:auto;
  background:#0f1116;
  overflow:hidden;
}
.media-card:nth-child(1) .media-frame{
  aspect-ratio:auto;
}
.media-card:nth-child(4) .media-frame,
.media-card:nth-child(5) .media-frame{
  aspect-ratio:auto;
}
.media-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .26s ease;
}
.media-card:hover .media-frame img{transform:scale(1.03)}
.media-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:1rem 1.05rem;
}
.media-copy h3{
  margin-bottom:.25rem;
}
.media-copy p{
  margin:0;
  font-size:.9rem;
}

.section-visual{
  overflow:hidden;
  min-height:260px;
  border:1px solid rgba(255,10,163,.35);
  border-radius:var(--radius-sm);
  background:#101219;
  box-shadow:0 18px 38px rgba(0,0,0,.28);
}
.section-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04) contrast(1.04);
}
.section-visual-left img,
.section-visual-right img{
  object-position:center top;
}

.steps{counter-reset:step}
.step{
  display:flex;
  gap:.9rem;
  padding:1rem;
}
.step::before{
  counter-increment:step;
  content:counter(step);
  flex:0 0 42px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  font-family:"Arial Narrow","Franklin Gothic Medium","Segoe UI",sans-serif;
  font-size:1.15rem;
  font-weight:800;
  background:linear-gradient(180deg, var(--primary-2), var(--primary));
  color:#fff;
  box-shadow:0 0 16px rgba(255,10,163,.24);
}
.step h3{margin-bottom:.3rem}
.step p{margin:0}

.cta-band{
  display:grid;
  gap:1rem;
  align-items:center;
  grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr);
  padding:1.2rem;
  border:1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(255,10,163,.15), transparent 40%),
    linear-gradient(180deg, rgba(35,39,48,.95), rgba(19,22,29,.98));
}
.cta-band h2{margin-bottom:.6rem}
.cta-band p{margin:0; max-width:60ch}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:flex-end;
}

.faq{
  display:grid;
  gap:.7rem;
}
.faq details{
  overflow:hidden;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:1rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  font-weight:700;
}
.faq summary::-webkit-details-marker{display:none}
.faq-a{
  padding:0 1rem 1rem;
  color:var(--text-soft);
}
.caret{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  transition:transform .2s ease;
}
.faq details[open] .caret{transform:rotate(180deg)}

footer{
  margin-top:var(--section-space);
  border-top:1px solid var(--border);
  background:rgba(17,19,25,.94);
}
.footer-inner{padding:2.2rem 0}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:1.2rem;
  align-items:start;
}
.footer-brand{margin-bottom:.8rem}
.fineprint{
  max-width:65ch;
  color:var(--muted);
  font-size:.92rem;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:.6rem;
}
.footer-links a{
  padding:.6rem .78rem;
  border-radius:10px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:var(--text-soft);
  font-size:.86rem;
}
.footer-links a:hover{
  background:rgba(255,10,163,.1);
  color:#fff;
}

.ext{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
}
.ext svg{width:14px; height:14px}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.page-home main > section:nth-of-type(2) .container{
  padding:1.6rem 0 0;
}
.page-home main > section:nth-of-type(2) .container::before{
  top:0;
}
.page-home main > section:nth-of-type(3) .container{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(340px,1fr);
  gap:clamp(1.4rem,3vw,2.4rem);
  align-items:center;
}
.page-home main > section:nth-of-type(3) p:first-of-type{
  font-size:1.03rem;
  color:#eef0f5;
}
.page-home main > section:nth-of-type(3) .section-visual{
  grid-column:2;
  grid-row:1 / span 4;
  min-height:300px;
}
.page-home main > section:nth-of-type(3) .kicker,
.page-home main > section:nth-of-type(3) h2,
.page-home main > section:nth-of-type(3) p{
  grid-column:1;
}
.page-home main > section:nth-of-type(4) .grid .card:nth-child(1){grid-column:span 6}
.page-home main > section:nth-of-type(4) .grid .card:nth-child(2){grid-column:span 3}
.page-home main > section:nth-of-type(4) .grid .card:nth-child(3){grid-column:span 3}
.page-home main > section:nth-of-type(5) .container,
.page-login main > section:nth-of-type(4) .container{
  background:linear-gradient(180deg, rgba(35,39,48,.82), rgba(24,27,34,.95));
  border:1px solid rgba(212,255,42,.18);
  border-radius:16px;
  padding:1.4rem;
  box-shadow:var(--shadow);
}
.page-home main > section:nth-of-type(6) .container{
  background:linear-gradient(180deg, rgba(26,29,36,.88), rgba(18,20,25,.96));
  border:1px solid var(--border);
  border-radius:16px;
  padding:1.4rem;
  box-shadow:var(--shadow);
}
.page-home main > section:nth-of-type(5) .container,
.page-home main > section:nth-of-type(6) .container,
.page-home main > section:nth-of-type(7) .container{
  display:grid;
  grid-template-columns:minmax(320px,.88fr) minmax(0,1fr);
  gap:clamp(1.2rem,3vw,2.2rem);
  align-items:center;
}
.page-home main > section:nth-of-type(5) .section-visual,
.page-home main > section:nth-of-type(7) .section-visual{
  grid-column:1;
  grid-row:1 / span 6;
  min-height:310px;
}
.page-home main > section:nth-of-type(6) .section-visual{
  grid-column:2;
  grid-row:1 / span 6;
  min-height:310px;
}
.page-home main > section:nth-of-type(5) .kicker,
.page-home main > section:nth-of-type(5) h2,
.page-home main > section:nth-of-type(5) p,
.page-home main > section:nth-of-type(5) .hero-actions,
.page-home main > section:nth-of-type(7) .kicker,
.page-home main > section:nth-of-type(7) h2,
.page-home main > section:nth-of-type(7) p,
.page-home main > section:nth-of-type(7) .grid{
  grid-column:2;
}
.page-home main > section:nth-of-type(6) .kicker,
.page-home main > section:nth-of-type(6) h2,
.page-home main > section:nth-of-type(6) p,
.page-home main > section:nth-of-type(6) .search-demo,
.page-home main > section:nth-of-type(6) .suggest{
  grid-column:1;
}
.page-home main > section:nth-of-type(7) .grid{
  grid-template-columns:1fr;
}
.page-home main > section:nth-of-type(7) .grid .card{
  grid-column:span 1;
}
.page-home main > section:nth-of-type(7) .grid .card:nth-child(2){
  background:linear-gradient(180deg, rgba(255,10,163,.13), rgba(24,27,34,.95));
}
.page-home main > section:nth-of-type(8) .grid .card{
  min-height:170px;
}
.page-home main > section:nth-of-type(9) .grid{
  gap:.9rem;
}
.page-home main > section:nth-of-type(10) .grid article:nth-child(1){grid-column:span 4}
.page-home main > section:nth-of-type(10) .grid article:nth-child(2){grid-column:span 4}
.page-home main > section:nth-of-type(10) .grid article:nth-child(3){grid-column:span 4}
.page-home main > section:nth-of-type(10) .grid article:nth-child(4){grid-column:span 6}
.page-home main > section:nth-of-type(10) .grid article:nth-child(5){grid-column:span 6}
.page-home main > section:nth-of-type(10) .country-card{
  display:grid;
  grid-template-rows:auto 1fr;
  gap:.85rem;
  padding:.85rem;
}
.page-home main > section:nth-of-type(10) .country-card h3,
.page-home main > section:nth-of-type(10) .country-card p{
  padding:0 .15rem;
}
.country-media{
  overflow:hidden;
  width:100%;
  height:190px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,10,163,.28);
  background:#101219;
}
.country-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.04) contrast(1.04);
}
.page-home main > section:nth-of-type(10) .country-card:nth-child(2) .country-media img,
.page-home main > section:nth-of-type(10) .country-card:nth-child(3) .country-media img{
  object-position:center top;
}
.page-home main > section:nth-of-type(10) .country-card-wide{
  grid-template-columns:320px minmax(0,1fr);
  grid-template-rows:auto 1fr;
  align-items:center;
}
.page-home main > section:nth-of-type(10) .country-card-wide .country-media{
  grid-row:1 / span 2;
  width:320px;
  height:190px;
}
.page-home main > section:nth-of-type(11) .grid .card{
  border-color:rgba(212,255,42,.16);
}
.page-home main > section:nth-of-type(12) .grid .card{
  min-height:150px;
}

.page-login .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.96), rgba(17,20,26,.74) 52%, rgba(17,20,26,.85)),
    radial-gradient(circle at 78% 24%, rgba(212,255,42,.13), transparent 24%);
}
.page-search .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.96), rgba(17,20,26,.72) 52%, rgba(17,20,26,.85)),
    radial-gradient(circle at 72% 24%, rgba(255,10,163,.28), transparent 26%);
}

.page-country .hero-surface{
  min-height:430px;
}
.page-country .hero-grid-country{
  min-height:430px;
}
.page-id .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.95), rgba(17,20,26,.74) 48%, rgba(17,20,26,.88)),
    radial-gradient(circle at 80% 18%, rgba(255,132,0,.18), transparent 26%),
    radial-gradient(circle at 62% 30%, rgba(255,10,163,.18), transparent 28%);
}
.page-de .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.95), rgba(17,20,26,.74) 48%, rgba(17,20,26,.88)),
    radial-gradient(circle at 74% 18%, rgba(69,194,255,.16), transparent 24%),
    radial-gradient(circle at 58% 28%, rgba(255,10,163,.16), transparent 28%);
}
.page-uk .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.95), rgba(17,20,26,.74) 48%, rgba(17,20,26,.88)),
    radial-gradient(circle at 82% 20%, rgba(171,104,255,.17), transparent 24%),
    radial-gradient(circle at 62% 30%, rgba(255,10,163,.18), transparent 28%);
}
.page-ca .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.95), rgba(17,20,26,.74) 48%, rgba(17,20,26,.88)),
    radial-gradient(circle at 82% 20%, rgba(255,182,64,.17), transparent 24%),
    radial-gradient(circle at 58% 30%, rgba(255,10,163,.18), transparent 28%);
}
.page-au .hero-surface::before{
  background:
    linear-gradient(90deg, rgba(17,20,26,.95), rgba(17,20,26,.74) 48%, rgba(17,20,26,.88)),
    radial-gradient(circle at 82% 20%, rgba(50,255,212,.15), transparent 24%),
    radial-gradient(circle at 60% 30%, rgba(255,10,163,.18), transparent 28%);
}

.page-country.page-id main > section:nth-of-type(3) .container{
  background:linear-gradient(180deg, rgba(255,132,0,.08), rgba(24,27,34,.92));
  border:1px solid rgba(255,132,0,.18);
  border-radius:16px;
  padding:1.3rem;
}
.page-country.page-de main > section:nth-of-type(3) .container{
  background:linear-gradient(180deg, rgba(69,194,255,.08), rgba(24,27,34,.92));
  border:1px solid rgba(69,194,255,.16);
  border-radius:16px;
  padding:1.3rem;
}
.page-country.page-uk main > section:nth-of-type(3) .container{
  background:linear-gradient(180deg, rgba(171,104,255,.08), rgba(24,27,34,.92));
  border:1px solid rgba(171,104,255,.16);
  border-radius:16px;
  padding:1.3rem;
}
.page-country.page-ca main > section:nth-of-type(3) .container{
  background:linear-gradient(180deg, rgba(255,182,64,.08), rgba(24,27,34,.92));
  border:1px solid rgba(255,182,64,.16);
  border-radius:16px;
  padding:1.3rem;
}
.page-country.page-au main > section:nth-of-type(3) .container{
  background:linear-gradient(180deg, rgba(50,255,212,.08), rgba(24,27,34,.92));
  border:1px solid rgba(50,255,212,.16);
  border-radius:16px;
  padding:1.3rem;
}

.page-search main > section:nth-of-type(4) .grid .card,
.page-country main > section:nth-of-type(5) .grid .card{
  min-height:160px;
}

@media (max-width: 1060px){
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .header-cta{display:none}
  .hero-grid-home,
  .hero-grid-utility,
  .hero-grid-country{
    grid-template-columns:1fr;
  }
  .hero-surface,
  .hero-grid{min-height:auto}
  .hero-copy{padding-top:.2rem}
  .cta-band{
    grid-template-columns:1fr;
  }
  .cta-actions{justify-content:flex-start}
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-links{
    justify-content:flex-start;
  }
  .page-home main > section:nth-of-type(3) .container{
    grid-template-columns:1fr;
  }
  .page-home main > section:nth-of-type(3) .section-visual,
  .page-home main > section:nth-of-type(3) .kicker,
  .page-home main > section:nth-of-type(3) h2,
  .page-home main > section:nth-of-type(3) p,
  .page-home main > section:nth-of-type(5) .section-visual,
  .page-home main > section:nth-of-type(5) .kicker,
  .page-home main > section:nth-of-type(5) h2,
  .page-home main > section:nth-of-type(5) p,
  .page-home main > section:nth-of-type(5) .hero-actions,
  .page-home main > section:nth-of-type(6) .section-visual,
  .page-home main > section:nth-of-type(6) .kicker,
  .page-home main > section:nth-of-type(6) h2,
  .page-home main > section:nth-of-type(6) p,
  .page-home main > section:nth-of-type(6) .search-demo,
  .page-home main > section:nth-of-type(6) .suggest,
  .page-home main > section:nth-of-type(7) .section-visual,
  .page-home main > section:nth-of-type(7) .kicker,
  .page-home main > section:nth-of-type(7) h2,
  .page-home main > section:nth-of-type(7) p,
  .page-home main > section:nth-of-type(7) .grid{
    grid-column:1;
    grid-row:auto;
  }
  .page-home main > section:nth-of-type(5) .container,
  .page-home main > section:nth-of-type(6) .container,
  .page-home main > section:nth-of-type(7) .container{
    grid-template-columns:1fr;
  }
  .page-home .hero .container{
    width:min(100% - 1.6rem, 820px);
  }
  .page-home .hero-backdrop{
    position:relative;
    inset:auto;
    width:auto;
    height:clamp(240px,42vw,380px);
    margin:1rem 1rem 0;
  }
  .page-home .hero-grid-home{
    grid-template-columns:1fr;
    min-height:auto;
    padding:clamp(1.2rem,4vw,2rem);
  }
  .page-home .hero-copy{
    max-width:none;
  }
  .page-home .hero-copy h1,
  .page-home .hero-summary{
    max-width:100%;
  }
  .media-card,
  .media-card:nth-child(1),
  .media-card:nth-child(2),
  .media-card:nth-child(3),
  .media-card.wide{
    grid-column:span 12;
    grid-row:auto;
  }
}

@media (max-width: 760px){
  :root{
    --section-space:2rem;
  }
  .btn{
    width:100%;
  }
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .badge-row{
    gap:.5rem;
  }
  .media-card,
  .media-card:nth-child(1),
  .media-card:nth-child(2),
  .media-card:nth-child(3),
  .media-card.wide,
  .span-4,
  .span-6,
  .span-8{
    grid-column:span 12;
  }
  .footer-links{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .section .container{
    padding-top:1.2rem;
  }
  .page-home main > section:nth-of-type(10) .country-card-wide{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .page-home main > section:nth-of-type(10) .country-card-wide .country-media{
    grid-row:auto;
    width:100%;
    height:190px;
  }
  .page-home .hero .container{
    width:calc(100% - 1rem);
  }
  .page-home .hero-backdrop{
    height:230px;
    margin:.75rem .75rem 0;
  }
  .page-home .hero-grid-home{
    padding:1rem;
  }
  .page-home .badge-row .chip{
    flex:1 1 calc(50% - .5rem);
    justify-content:center;
  }
  .media-card{
    grid-template-columns:1fr;
  }
  .media-frame,
  .media-card:nth-child(1) .media-frame,
  .media-card:nth-child(4) .media-frame,
  .media-card:nth-child(5) .media-frame{
    min-height:0;
    aspect-ratio:16/10;
  }
  .section-visual{
    min-height:220px;
  }
}
