:root{
  --bg:#050712;
  --panel: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.07);

  --text:#eaf0ff;
  --muted:#aab4d8;
  --muted2:#7f8ab4;

  --blue:#2f7df6;
  --blue2:#1dd6f2;
  --purple:#8b5cf6;

  --good:#22c55e;
  --warn:#f59e0b;
  --bad:#ef4444;

  --shadow: 0 18px 45px rgba(0,0,0,.55);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: #050712;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  animation: pageEnter .38s ease both;
}

body:before{
  content:none;
}

@keyframes floatGlow{
  0%{transform: translateY(0)}
  100%{transform: translateY(-18px)}
}

@keyframes pageEnter{
  from{opacity:0; transform: translateY(10px)}
  to{opacity:1; transform: none}
}

@media (prefers-reduced-motion: reduce){
  body{animation:none}
}

@keyframes stroke-animation {
  0% {
    stroke-dashoffset: 295;
    stroke-dasharray: 25 270;
  }
  50% {
    stroke-dashoffset: 68;
    stroke-dasharray: 59 236;
  }
  65% {
    stroke-dashoffset: 59;
    stroke-dasharray: 59 236;
  }
  100% {
    stroke-dashoffset: 68;
    stroke-dasharray: 59 236;
  }
}

@keyframes stroke-animation-reverse {
  0% {
    stroke-dashoffset: 68;
    stroke-dasharray: 59 236;
  }
  50% {
    stroke-dashoffset: 290;
    stroke-dasharray: 25 270;
  }
  65% {
    stroke-dashoffset: 295;
    stroke-dasharray: 25 270;
  }
  100% {
    stroke-dashoffset: 290;
    stroke-dasharray: 25 270;
  }
}

a{color:inherit; text-decoration:none}
.wrap{width:min(980px, calc(100% - 44px)); margin:0 auto}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

body, .hero, .subtitle, .fine, .hero-cta, .details, .criteria, .criteria ul,
.search, .result, .result-top, .checks, .why, #copyStatus, .privacy,
.ai-overview, .ai-actions, .ai-text, .stats{
  transition:
    margin .55s ease,
    padding .55s ease,
    gap .55s ease,
    line-height .55s ease,
    min-height .55s ease;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(4,5,18,.68);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke2);
}
.topbar-inner{
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  position:relative;
}
.brand{
  display:flex; align-items:center; gap:6px;
  font-weight:900;
  letter-spacing:.3px;
}
.brand-logo{
  height:26px;
  width:auto;
  object-fit:contain;
  border-radius:0;
  box-shadow:none;
  background: transparent;
}
.brand-name{
  font-size:17px;
  font-weight:800;
  color:#ffffff;
  letter-spacing:.15px;
  text-shadow: 0 0 14px rgba(255,255,255,.35), 0 0 26px rgba(99,102,241,.22);
}

.nav{display:flex; gap:14px; color:var(--muted); font-weight:700; font-size:14px;}
.nav a{padding:10px 10px; border-radius:12px; border:1px solid transparent;}
.nav a:hover{color:var(--text); background: rgba(255,255,255,.03); border-color: var(--stroke2);}
.nav-toggle{
  display:none;
  --color: rgba(234,240,255,.95);
  width:56px;
  height:56px;
  position:absolute;
  right:0;
  top:8px;
  align-items:center;
  justify-content:center;
}
.nav-toggle input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
  z-index:2;
}
.nav-toggle svg{
  width:46px;
  height:26px;
  fill:none;
  stroke: var(--color);
  stroke-width:7px;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-toggle svg use:nth-of-type(1){
  opacity:1;
  stroke-dashoffset:221;
  stroke-dasharray:46 249;
  transition: stroke-dashoffset .12s linear .2s, stroke-dasharray .12s linear .2s, opacity 0s linear .2s;
}
.nav-toggle svg use:nth-of-type(2){
  animation: stroke-animation-reverse 1.2s ease-out forwards;
}
.nav-toggle input:checked + svg use:nth-of-type(1){
  stroke-dashoffset:175;
  stroke-dasharray:0 295;
  opacity:0;
  transition: stroke-dashoffset .07s linear .07s, stroke-dasharray .07s linear .07s, opacity 0s linear .14s;
}
.nav-toggle input:checked + svg use:nth-of-type(2){
  animation: stroke-animation 1.2s ease-out forwards;
}

/* Buttons */
.btn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:850;
  border-radius: 14px;
  padding:10px 14px;
  cursor:pointer;
  transition: .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(139,92,246,.55); box-shadow: 0 8px 24px rgba(139,92,246,.22);}
.btn.primary{
  background: linear-gradient(180deg, #5b3bff 0%, #4a2bd6 100%);
  border-color: rgba(125,112,255,.7);
  box-shadow:
    0 10px 24px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 26px rgba(99,102,241,.28);
}
.btn.primary:hover{
  border-color: rgba(155,140,255,.9);
  box-shadow:
    0 12px 28px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 32px rgba(99,102,241,.38);
}
.btn.primary:active{transform: translateY(0); filter: brightness(.98);}

/* AI glow button */
.btn.ai{
  position:relative;
  padding:12px 22px 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5b3bff 0%, #4a2bd6 100%);
  border-color: rgba(125,112,255,.7);
  box-shadow:
    0 12px 28px rgba(74,43,214,.45),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 30px rgba(99,102,241,.35);
}
.btn.ai:hover{
  border-color: rgba(155,140,255,.9);
  box-shadow:
    0 14px 32px rgba(74,43,214,.5),
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 38px rgba(99,102,241,.45);
}
.btn.ai::before{
  content:"✦";
  display:inline-block;
  margin-right:10px;
  font-size:14px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 0 10px rgba(255,255,255,.35);
}
.btn.ai::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius: 999px;
  background: radial-gradient(120px 60px at 50% 50%, rgba(99,102,241,.35), transparent 70%);
  opacity:.8;
  filter: blur(10px);
  z-index:-1;
}
.btn.ghost{background: transparent;}
.btn.icon{
  padding:10px 12px;
  min-width:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.btn.small{padding:9px 12px; border-radius: 12px; font-size:13px;}

.eye{
  width:16px;height:10px;border:2px solid rgba(234,240,255,.85);
  border-radius: 999px;
  position:relative;
  display:inline-block;
}
.eye:after{
  content:"";
  width:4px;height:4px;border-radius:999px;
  background: rgba(234,240,255,.9);
  position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
}

/* Hero */
.hero{padding: 86px 0 50px; position:relative; flex:0 0 auto;}
.hero-inner{text-align:center;}
.hero-glow{
  position:absolute;
  left:50%; top:120px;
  width:min(720px, 86vw);
  height:240px;
  transform: translateX(-50%);
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(47,125,246,.22), transparent 70%),
    radial-gradient(45% 60% at 50% 30%, rgba(139,92,246,.18), transparent 70%);
  filter: blur(18px);
  opacity:.9;
  pointer-events:none;
}
h1{
  margin: 0;
  font-size: clamp(40px, 5.2vw, 74px);
  letter-spacing:-.9px;
  line-height:1.02;
  text-shadow: 0 6px 30px rgba(0,0,0,.45);
}
.hero-title{
  color: var(--text);
  max-width: 14ch;
  margin: 0 auto;
}
.hero-title-link{
  display: inline-block;
  text-decoration: none;
  vertical-align: baseline;
  transition: filter .15s ease, transform .15s ease;
}
.hero-title-link .ai-accent{
  text-decoration: underline;
  text-decoration-color: rgba(155,140,255,.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  text-shadow:
    0 0 16px rgba(139,92,246,.22),
    0 0 34px rgba(99,102,241,.12);
}
.hero-title-link:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.hero-title-link:hover .ai-accent{
  text-decoration-color: rgba(196,181,253,.92);
  text-shadow:
    0 0 18px rgba(139,92,246,.3),
    0 0 38px rgba(99,102,241,.18);
}
.ai-accent{
  background: linear-gradient(90deg, #8b5cf6 0%, #9b7bff 45%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 12px rgba(139,92,246,.45),
    0 0 26px rgba(155,140,255,.35);
}
.subtitle{
  margin: 24px auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 17px;
  line-height:1.6;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.hero-metric{
  margin: 18px auto 0;
  color: var(--muted2);
  font-size: 14px;
  letter-spacing: .2px;
}
.about-metric{
  margin: 0;
}
.hero-metric #weeklyActiveUsersCount{
  color: var(--text);
  font-weight: 800;
}
.hero-metric #activeUsersCount{
  color: var(--text);
  font-weight: 800;
}
.subtle-app-link{
  color: inherit;
  opacity: .88;
  text-decoration: none;
  border-bottom: 1px dotted rgba(176,210,255,.35);
}
.subtle-app-link:hover{
  opacity: 1;
  border-bottom-color: rgba(176,210,255,.65);
}
.live-dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  margin-right:8px;
  vertical-align:middle;
  transform: translateY(-1px);
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse{
  0%{box-shadow: 0 0 0 0 rgba(34,197,94,.6);}
  70%{box-shadow: 0 0 0 10px rgba(34,197,94,0);}
  100%{box-shadow: 0 0 0 0 rgba(34,197,94,0);}
}
.fine{
  margin: 44px 0 0;
  font-size:12px;
  color: var(--muted2);
}
.link{color: rgba(176,210,255,.95); text-decoration: underline; text-underline-offset: 3px;}
.link:hover{color: #ffffff}

.hero-cta{
  margin: 64px auto 0;
  width:min(720px, 100%);
  display:flex;
  justify-content:center;
}
.hero-cta .btn{padding:12px 18px;}

.details{
  margin-top: 40px;
  display:flex;
  flex-direction:column;
  gap:40px;
  overflow:hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .2s ease, transform .28s ease;
}
.details.is-open{
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}
.details[hidden]{display:none;}
.details > *{
  width:min(720px, 100%);
  margin-left:auto;
  margin-right:auto;
}

.criteria{
  margin: 56px auto 0;
  width:min(720px, 100%);
  text-align:left;
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.50);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}
.criteria-title{color: var(--text); font-weight:850; margin-bottom:6px;}
.criteria ul{margin:0; padding-left:18px; display:grid; gap:20px;}

/* Input group */
.search{
  margin: 76px auto 0;
  width:min(720px, 100%);
  display:grid;
  grid-template-columns: 1fr auto auto auto;
  gap:24px;
  align-items:center;
  padding: 28px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(8,12,28,.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.search input{
  height:52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.92);
  color: #0a1020;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: .15s ease;
}
.search input:focus{border-color: rgba(47,125,246,.55); box-shadow: 0 10px 34px rgba(47,125,246,.18);}
.search .btn{height:52px}

.btn.copy{
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.03);
  border-color: var(--stroke);
  box-shadow: none;
}
.btn.copy:hover{
  border-color: rgba(47,125,246,.45);
  box-shadow: 0 8px 24px rgba(47,125,246,.18);
}

.copy-icon{
  width:16px;
  height:16px;
  display:inline-block;
  position:relative;
  transform: translate(1px, 1px);
}
.copy-icon::before,
.copy-icon::after{
  content:"";
  position:absolute;
  border:2px solid rgba(234,240,255,.85);
  border-radius:4px;
  box-sizing:border-box;
}
.copy-icon::before{
  width:12px;
  height:12px;
  top:2px;
  left:2px;
  background: rgba(255,255,255,.05);
}
.copy-icon::after{
  width:12px;
  height:12px;
  top:-2px;
  left:-2px;
  background: transparent;
  opacity:.7;
}

/* Result */
.result{
  margin: 64px auto 0;
  width:min(720px, 100%);
  text-align:left;
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 16px;
}
.result-top{display:flex; flex-direction:column; gap:24px;}
.label{display:flex; justify-content:space-between; align-items:baseline; gap:12px;}
.strength{
  font-weight: 950;
  letter-spacing:.2px;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke2);
  background: rgba(0,0,0,.18);
}
.score{color: var(--muted); font-weight:800; font-size:13px;}
.meter .bar{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--stroke2);
  overflow:hidden;
}
.fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--bad), var(--warn), var(--good));
  transition: width .15s ease;
}

.checks{
  list-style:none;
  padding:0;
  margin: 40px 0 0;
  display:grid;
  gap:24px;
}
.checks li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--muted);
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke2);
  background: rgba(0,0,0,.18);
  font-size: 13px;
  line-height:1.45;
}
.tick{
  width:18px;height:18px;border-radius:6px;
  background: rgba(29,214,242,.12);
  border:1px solid rgba(29,214,242,.22);
  display:inline-grid; place-items:center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.22) inset;
  flex:0 0 auto;
}
.tick:before{
  content:"";
  width:8px;height:4px;
  border-left:2px solid rgba(29,214,242,.95);
  border-bottom:2px solid rgba(29,214,242,.95);
  transform: rotate(-45deg);
  margin-top:-1px;
  opacity:.35;
}
.checks li.ok{
  color: rgba(234,240,255,.92);
  border-color: rgba(29,214,242,.28);
  background: rgba(29,214,242,.08);
}
.checks li.ok .tick:before{opacity:1}

.why{
  margin-top: 40px;
  color: var(--muted2);
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px dashed var(--stroke2);
  background: rgba(0,0,0,.12);
  min-height: 36px;
}

.status{color: var(--muted2); font-size:12px;}
#copyStatus{margin: 38px auto 0; width:min(720px, 100%); text-align:left;}
.privacy{
  margin-top: 40px;
  color: var(--muted2);
  font-size:12px;
  border-top: 1px solid var(--stroke2);
  padding-top: 10px;
}


.ai-overview{
  margin-top: 56px;
  border-radius: 12px;
  border:1px solid rgba(125,112,255,.35);
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(99,102,241,.16), rgba(7,10,22,.35));
  box-shadow: 0 12px 32px rgba(74,43,214,.22), 0 0 0 1px rgba(255,255,255,.06) inset;
  text-align:center;
}
.ai-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 12px;
  justify-content:center;
}
.ai-logo{
  width:22px;
  height:22px;
  object-fit:contain;
  filter: drop-shadow(0 0 10px rgba(125,112,255,.5));
}
.ai-title{
  font-weight: 900;
  font-size: 16px;
  letter-spacing:.2px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(99,102,241,.55);
}
.ai-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  margin-bottom: 30px;
}
.ai-actions .btn.ai{
  padding: 8px 14px 8px 12px;
  font-size: 12px;
}
.ai-actions .status{
  color: var(--muted2);
  font-size: 12px;
}
.ai-text{
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.8;
  min-height: 46px;
  max-width: 56ch;
  margin: 0 auto;
}
.result-ai{
  border:1px solid rgba(99,102,241,.35);
}

/* Stats */
.stats{
  margin: 44px auto 0;
  width:min(720px, 100%);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
}

body.compact .hero{padding: 38px 0 30px;}
body.compact .subtitle{margin: 14px auto 0;}
body.compact .fine{margin: 10px 0 0;}
body.compact .hero-cta{margin: 18px auto 0;}
body.compact .details{margin-top: 6px; gap:12px;}
body.compact .criteria{margin: 16px auto 0;}
body.compact .criteria ul{gap:6px;}
body.compact .search{margin: 22px auto 0; gap:10px; padding:14px;}
body.compact .result{margin: 18px auto 0;}
body.compact .result-top{gap:10px;}
body.compact .checks{margin: 14px 0 0; gap:10px;}
body.compact .why{margin-top: 10px;}
body.compact #copyStatus{margin: 8px auto 0;}
body.compact .privacy{margin-top: 10px;}
body.compact .ai-overview{margin-top: 14px;}
body.compact .ai-actions{gap:6px; margin-bottom: 10px;}
body.compact .ai-text{line-height: 1.5; min-height: 24px;}
body.compact .stats{margin: 6px auto 0; gap:14px;}
.stat{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.55);
  backdrop-filter: blur(8px);
}
.stat-num{
  font-size: 26px;
  font-weight: 950;
  letter-spacing:-.3px;
  background: linear-gradient(90deg, rgba(176,210,255,1), rgba(29,214,242,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.stat-label{margin-top:6px; color: var(--muted); font-weight:750; font-size:13px;}

/* Footer */
.footer{
  border-top:1px solid var(--stroke2);
  background: transparent;
  backdrop-filter: none;
  padding: 22px 0 28px;
  margin-top:auto;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:8px;
  line-height:1;
  margin:0;
}
body.compact .footer-brand{margin:0;}
.footer-logo{
  height:20px;
  width:auto;
  border-radius:6px;
}
.footer-links{display:flex; gap:14px; color: var(--muted); align-items:center;}
.footer-links a{display:inline-flex; align-items:center;}
.muted{color: var(--muted2);}

/* Responsive */
@media (max-width: 900px){
  .topbar-inner{
    height:auto;
    display:grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items:center;
    row-gap:10px;
    padding:12px 0 14px;
  }
  .brand{grid-column:1;}
  .nav-toggle{
    display:inline-flex;
    position:relative;
    right:auto;
    top:auto;
    width:46px;
    height:46px;
    grid-column:2;
    justify-self:end;
  }
  .nav{
    grid-column:1 / -1;
    width:100%;
    display:grid;
    grid-template-columns: 1fr;
    gap:8px;
    font-size:13px;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transform: translateY(-6px) scale(.98);
    padding-top:0;
    transition: max-height .35s ease, opacity .25s ease, transform .35s ease, padding .35s ease;
  }
  .nav.is-open{
    max-height:280px;
    opacity:1;
    transform: translateY(0) scale(1);
    padding-top:8px;
  }
  .nav a{
    padding:10px 12px;
    justify-content:center;
    text-align:center;
    border:1px solid var(--stroke2);
    background: rgba(255,255,255,.03);
  }
  .hero-title{max-width: 13ch;}
  .search{grid-template-columns: 1fr;}
  .search .btn{width:100%}
  .stats{grid-template-columns: 1fr}
}

@media (max-width: 560px){
  .wrap{width:min(980px, calc(100% - 18px));}

  .topbar-inner{
    row-gap:8px;
    padding:10px 0 12px;
  }

  .brand-name{
    font-size:16px;
  }

  .nav-toggle{
    width:42px;
    height:42px;
  }

  .nav-toggle svg{
    width:34px;
    height:20px;
    stroke-width:5px;
  }

  .hero{
    padding: 54px 0 34px;
  }

  .hero-glow{
    top:86px;
    width:min(92vw, 520px);
    height:180px;
    filter: blur(16px);
  }

  .hero-title{
    max-width: 12.25ch;
    font-size: clamp(32px, 11.6vw, 52px);
    line-height: 1.04;
  }

  .hero-title-link .ai-accent{
    text-underline-offset: 7px;
  }

  .subtitle{
    margin: 20px auto 0;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-metric{
    margin: 16px auto 0;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
  }

  .search{
    margin: 36px auto 0;
    padding: 14px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 64px 64px;
    border-radius: 20px;
  }

  .search input{
    grid-column: 1 / -1;
    font-size: 16px;
  }

  .search .btn{
    width:100%;
    min-width:0;
  }

  #checkBtn{
    grid-column: 1 / 2;
    padding: 12px 14px 12px 12px;
  }

  #checkBtn::before{
    margin-right:8px;
    font-size:12px;
  }

  #copyBtn,
  #toggleBtn{
    padding: 0;
  }

  #copyStatus,
  .fine{
    text-align:center;
  }

  .hero-cta{
    margin: 40px auto 0;
  }

  .page{
    padding: 54px 0 64px;
  }

  .page-hero{
    margin-bottom: 34px;
  }

  .page-hero h1{
    max-width: 12.5ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(33px, 11vw, 48px);
    line-height: 1.05;
  }

  .page-subtitle,
  .section-subtitle{
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .section-wrap,
  .page-grid,
  .seo-grid,
  .faq-card,
  .split,
  .blog-sortbar,
  .blog-grid,
  .card.policy,
  .post{
    width:min(980px, calc(100% - 18px));
  }

  .page-grid,
  .blog-grid,
  .seo-grid,
  .split{
    gap: 16px;
  }

  .page-section{
    margin-top: 28px;
  }

  .section-wrap{
    margin-bottom: 14px;
  }

  .section-title{
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.15;
  }

  .card{
    padding: 16px;
  }

  .card-actions,
  .post-actions,
  .cta-row{
    gap: 10px;
  }

  .card-actions .btn,
  .post-actions .btn,
  .cta-row .btn{
    width: 100%;
    justify-content: center;
  }
}

/* Generic pages */
.page{
  padding: 70px 0 80px;
  flex: 1 0 auto;
}
.coming-soon {
  position: relative;
}
.blurred-content {
  filter: blur(5px);
  pointer-events: none;
}
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 18, 0.8);
  z-index: 10;
}
.coming-soon-card {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
/* Removed coming soon and blurred content styles */
.page-hero{
  text-align:center;
  margin-bottom: 50px;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--muted2);
  margin: 0 0 12px;
}
.eyebrow a{
  color: var(--muted2);
  text-decoration: none;
}
.eyebrow a:hover{
  color: var(--accent);
}
.page-subtitle{
  color: var(--muted);
  max-width: 70ch;
  margin: 22px auto 0;
  line-height: 1.6;
}
.cta-row{
  margin-top: 28px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.page-section{margin: 36px auto 0;}
.section-wrap{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto 18px;
}
.section-title{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.3px;
}
.section-subtitle{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}
.page-grid{
  width:min(980px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}
.tools-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card{
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.55);
  backdrop-filter: blur(8px);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h2, .card h3{margin-top:0;}
.card.policy{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto;
}
.collapse-card{
  padding: 18px 20px;
  display:block;
}
.collapse-card + .collapse-card{
  margin-top: 6px;
}
.collapse-card summary{
  cursor:pointer;
  list-style:none;
  font-weight: 800;
  font-size: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.collapse-card summary::-webkit-details-marker{display:none;}
.collapse-card summary::after{
  content:"+";
  font-size: 18px;
  line-height:1;
  color: var(--muted2);
  transition: transform .3s ease, color .3s ease;
}
.collapse-card[open] summary::after{
  transform: rotate(45deg);
  color: var(--text);
}
.collapse-body{
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.collapse-body h3{
  margin: 14px 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted2);
}
.collapse-body h3:first-child{margin-top: 0;}
.collapse-body p{margin: 0 0 12px;}
.collapse-body p:last-child{margin-bottom: 0;}

.seo-grid{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items: start;
  margin-bottom: 80px;
}
.seo-card{
  padding: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  min-height: 210px;
}
.seo-card.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.seo-card .section-title{
  margin-top: 0;
}
.seo-card .section-subtitle{
  margin: 10px 0 0;
}
.seo-card .seo-collapse{
  margin-top: 16px;
  padding: 0;
  border:1px solid var(--stroke2);
  border-radius: 12px;
  background: rgba(10,14,30,.35);
}
.seo-card .seo-collapse summary{
  padding: 12px 14px;
}
.seo-card .seo-collapse .collapse-body{
  padding: 0 14px 14px;
}
.faq-card{
  width:min(980px, calc(100% - 44px));
  margin-left:auto;
  margin-right:auto;
}
.page-section:last-of-type{
  margin-bottom: 80px;
}
.hover-card-shell{
  padding: 0;
  max-height: 140px;
  overflow: hidden;
  transition: max-height .6s ease, transform .6s ease, box-shadow .6s ease;
}
.hover-card-shell:hover{
  max-height: 360px;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}
.hover-card{
  position:relative;
  min-height: 190px;
  display:grid;
  gap:0;
}
.hover-card__slide{
  position:relative;
  padding: 18px;
  transition: transform .7s ease, opacity .7s ease;
}
.hover-card__slide--front{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transform: translateY(32px);
}
.hover-card__slide--back{
  transform: translateY(-32px);
  opacity:0;
}
.card:hover .hover-card__slide--front{
  transform: translateY(0);
}
.card:hover .hover-card__slide--back{
  transform: translateY(0);
  opacity:1;
}
.hover-card__hint{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted2);
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.04);
  animation: hoverPulse 2.2s ease-in-out infinite;
}
.hover-card__slide--back p{margin:0; color: var(--muted); line-height:1.6;}

@keyframes hoverPulse{
  0%{transform: translateY(0); opacity:.75;}
  50%{transform: translateY(-4px); opacity:1;}
  100%{transform: translateY(0); opacity:.75;}
}

@media (max-width: 900px){
  .hover-card-shell{
    max-height: none;
    overflow: visible;
    box-shadow: var(--shadow);
  }
  .hover-card-shell:hover{
    transform: none;
  }
  .hover-card{
    min-height: auto;
  }
  .hover-card__slide{
    padding: 18px;
    transition: none;
  }
  .hover-card__slide--front,
  .hover-card__slide--back{
    transform: none;
    opacity:1;
  }
  .hover-card__slide--front{
    margin-bottom: 10px;
  }
  .hover-card__hint{display:none;}
  .about-page .page-grid .hover-card-shell{
    animation: mobileCardFade .6s ease both;
  }
  .about-page .page-grid .hover-card-shell:nth-child(1){animation-delay: .05s;}
  .about-page .page-grid .hover-card-shell:nth-child(2){animation-delay: .14s;}
  .about-page .page-grid .hover-card-shell:nth-child(3){animation-delay: .22s;}
}

@keyframes mobileCardFade{
  from{opacity:0; transform: translateY(8px);}
  to{opacity:1; transform: translateY(0);}
}
.list{margin: 12px 0 0; padding-left: 18px; color: var(--muted);}
.list li{margin-bottom: 8px;}
.split{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:22px;
  align-items: start;
}
.note{
  border-radius: 14px;
  border:1px dashed var(--stroke2);
  background: rgba(0,0,0,.12);
  padding: 16px;
  color: var(--muted2);
}

/* Blog */
.blog-page .page-hero{
  text-align:center;
  margin-bottom: 40px;
}
.blog-page .page-subtitle{
  margin-left:auto;
  margin-right:auto;
}
.blog-page .section-wrap{
  text-align:left;
}
.blog-sortbar{
  width:min(980px, calc(100% - 44px));
  margin: 14px auto 18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.blog-sort-label{
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.blog-sort-wrap{
  position:relative;
  display:inline-flex;
  width: fit-content;
}
.blog-sort-wrap::after{
  content:"";
  position:absolute;
  right:14px;
  top:50%;
  width:8px;
  height:8px;
  border-right:2px solid var(--muted);
  border-bottom:2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events:none;
}
.blog-sort-select{
  appearance:none;
  -webkit-appearance:none;
  min-width: 210px;
  padding: 10px 34px 10px 12px;
  border-radius: 12px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height:1.2;
  box-shadow:
    0 8px 24px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.02);
  cursor:pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.blog-sort-select:hover{
  border-color: rgba(139,92,246,.55);
  box-shadow:
    0 10px 26px rgba(0,0,0,.32),
    0 0 0 1px rgba(139,92,246,.14);
}
.blog-sort-select:focus{
  outline:none;
  border-color: rgba(99,102,241,.75);
  box-shadow:
    0 0 0 3px rgba(99,102,241,.18),
    0 10px 26px rgba(0,0,0,.32);
}
.blog-sort-select option{
  background: #0b1022;
  color: var(--text);
}
.blog-grid{
  width:min(980px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:22px;
}
.blog-card p{color: var(--muted);}
.tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(99,102,241,.45);
  color: #c7d2fe;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.card-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px;}
.post{
  width:min(760px, calc(100% - 44px));
  margin: 0 auto 80px;
}
.post h2{margin-top: 48px; font-size: 24px; color: #C9D4E5;}
.post p{margin-bottom: 28px; max-width: 70ch;}
.post-meta{color: var(--muted2); font-size: 12px; margin-bottom: 18px;}
.post-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 26px;}
.post hr{border: none; border-top: 1px solid var(--stroke2); margin: 40px 0;}
.post .card{
  padding: 24px 0;
  margin: 24px 0;
  background: none;
  border: none;
  box-shadow: none;
}
.post .card.tip{
  background: rgba(10,14,30,.55);
  border:1px solid var(--stroke2);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.nutshell{
  padding: 24px 0;
  margin: 24px 0;
}
.breadcrumb{margin-bottom: 20px; font-size: 14px; color: var(--muted2);}
.last-updated{color: var(--muted2); font-size: 13px; margin-top: 10px;}

/* FAQ */
.faq{
  width:min(820px, calc(100% - 44px));
  margin: 0 auto;
  display:grid;
  gap:14px;
}
.faq details{
  border-radius: 14px;
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.55);
  padding: 14px 16px;
  display:grid;
  grid-template-rows: auto 0fr;
  transition: grid-template-rows .45s ease;
}
.faq details[open]{
  grid-template-rows: auto 1fr;
}
.faq summary{
  cursor:pointer;
  font-weight: 750;
}
.faq p{
  color: var(--muted);
  margin: 10px 0 0;
  opacity: 0;
  overflow: hidden;
  min-height: 0;
  transition: opacity .35s ease;
}
.faq details[open] p{
  opacity: 1;
}

@media (prefers-reduced-motion: reduce){
  .faq details{transition: none;}
  .faq p{transition: none; opacity: 1;}
}

/* Forms */
.form{display:grid; gap:14px;}
.form-row{display:grid; gap:8px;}
.form-row label{font-weight: 700; color: var(--muted);}
.form input, .form select, .form textarea{
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.92);
  color: #0a1020;
  font-size: 14px;
  padding: 10px 12px;
  outline:none;
}
.form textarea{resize: vertical;}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center;}
.form-card{width:min(820px, calc(100% - 44px)); margin: 0 auto;}
.input--hidden{
  position:absolute;
  left:-9999px;
}

/* API coming soon page */
.api-page{
  position: relative;
  overflow: hidden;
}
.api-page::before{
  content:"";
  position:absolute;
  top:-180px;
  left:50%;
  width:min(920px, 92vw);
  height:520px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 28%, rgba(99,102,241,.24), transparent 58%),
    radial-gradient(circle at 58% 34%, rgba(29,214,242,.12), transparent 64%);
  pointer-events:none;
}
.api-page > *{
  position:relative;
  z-index:1;
}
.api-hero h1{
  max-width: 11.5ch;
  margin-left:auto;
  margin-right:auto;
  font-size: clamp(40px, 5.4vw, 68px);
}
.api-hero .page-subtitle{
  max-width: 64ch;
}
.api-hero-note{
  margin: 16px auto 0;
  max-width: 44ch;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.65;
}
.api-mini-grid{
  width:min(980px, calc(100% - 44px));
  margin: 30px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}
.api-mini-card{
  text-align:left;
  background: rgba(10,14,30,.64);
}
.api-mini-label{
  margin:0 0 10px;
  color: var(--muted2);
  font-size:11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.api-mini-card h2{
  margin:0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}
.api-mini-card p,
.api-teaser-card p{
  margin:0;
  color: var(--muted);
  line-height: 1.65;
}
.api-teaser-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.api-teaser-card{
  min-height: 210px;
}
.api-teaser-card h3{
  margin:0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}
.api-inline-form{
  width:min(640px, 100%);
  margin: 18px auto 0;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.api-inline-form input{
  flex:1 1 280px;
  min-height:54px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.94);
  color:#0a1020;
  font-size:15px;
  padding: 0 18px;
  outline:none;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.api-inline-form input:focus{
  border-color: rgba(47,125,246,.55);
  box-shadow: 0 10px 34px rgba(47,125,246,.18);
}
.api-inline-form .btn{
  min-height:54px;
  padding: 0 24px;
  border-radius: 999px;
}
.api-inline-form .btn:disabled{
  cursor: default;
  opacity:.88;
  transform:none;
}
.api-waitlist-status{
  margin-top: 14px;
  text-align:center;
}
.api-waitlist-status[data-state="error"]{
  color: #fda4af;
}
.api-waitlist-status[data-state="success"]{
  color: #a7f3d0;
}

@media (max-width: 900px){
  .api-mini-grid{
    grid-template-columns: 1fr;
  }
  .api-inline-form .btn{
    width:100%;
    justify-content:center;
  }
}

/* eSIM tool */
.esim-tool-page{
  position: relative;
  overflow: hidden;
}
.esim-tool-page::before{
  content:"";
  position:absolute;
  top:-170px;
  left:-160px;
  width:540px;
  height:540px;
  border-radius:50%;
  background:
    radial-gradient(circle at center, rgba(29,214,242,.20), rgba(29,214,242,.01) 65%);
  filter: blur(14px);
  animation: esimGlowDriftLeft 13s ease-in-out infinite;
  pointer-events:none;
}
.esim-tool-page::after{
  content:"";
  position:absolute;
  right:-180px;
  top:20px;
  width:600px;
  height:600px;
  border-radius:50%;
  background:
    radial-gradient(circle at center, rgba(47,125,246,.22), rgba(47,125,246,.02) 68%);
  filter: blur(16px);
  animation: esimGlowDriftRight 15s ease-in-out infinite;
  pointer-events:none;
}
.esim-tool-page .page-hero{
  margin-bottom: 36px;
  position:relative;
  z-index:2;
}
.esim-grid-overlay{
  position:absolute;
  inset: 70px 0 0;
  z-index:0;
  pointer-events:none;
  opacity:.2;
  background-image:
    linear-gradient(rgba(199,210,254,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,210,254,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 65% at 50% 22%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 65% at 50% 22%, #000 30%, transparent 100%);
  animation: esimGridShift 14s linear infinite;
}
.esim-social-proof{
  margin: 12px auto 0;
  font-size: 13px;
  color: #c7d2fe;
  letter-spacing: .2px;
}
.esim-social-proof::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  margin-right:8px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 5px rgba(34,197,94,.18);
}
.esim-tool-shell{
  width:min(980px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap:22px;
  align-items:start;
  position:relative;
  z-index:1;
}
.esim-output-stack{
  width:min(980px, calc(100% - 44px));
  margin: 22px auto 0;
  display:grid;
  gap:16px;
  position:relative;
  z-index:1;
}
.esim-seo-section{
  position:relative;
  z-index:1;
}
.esim-seo-section .seo-card .section-subtitle{
  min-height: 52px;
}
.esim-faq-stack{
  margin-top: 18px;
  display:grid;
  gap:12px;
}
.esim-faq-stack .seo-collapse{
  margin-top: 0;
}
.esim-input-card{
  background: linear-gradient(165deg, rgba(8,14,34,.9), rgba(7,11,29,.72));
  border-color: rgba(99,102,241,.22);
}
.esim-trust-card{
  background: linear-gradient(160deg, rgba(8,13,32,.9), rgba(5,10,26,.72));
  border-color: rgba(29,214,242,.22);
}
.esim-copy{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 640;
}
.esim-trust-inline{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.esim-trust-inline span{
  display:inline-flex;
  align-items:center;
  font-size: 11px;
  letter-spacing: .2px;
  color: #c7d2fe;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(99,102,241,.35);
  background: rgba(99,102,241,.12);
}
.esim-field-grid{
  margin-top: 20px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  align-items:end;
}
.esim-field{
  display:grid;
  gap:10px;
  min-width:0;
}
.esim-field-wide{
  grid-column: 1 / -1;
}
.esim-field span{
  font-size: 13px;
  font-weight: 750;
  color: #b8c0d4;
}
.esim-select,
.esim-unlock-input{
  display:block;
  width:100%;
  height:48px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(7,13,32,.92);
  color: #eef3ff;
  font-size: 14px;
  padding: 0 12px;
  outline:none;
  box-shadow:
    0 10px 20px rgba(0,0,0,.22) inset,
    0 0 0 1px rgba(255,255,255,.02);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.esim-select:hover{
  border-color: rgba(125,151,255,.68);
  box-shadow:
    0 0 0 1px rgba(125,151,255,.24),
    0 10px 24px rgba(29,214,242,.12),
    0 10px 20px rgba(0,0,0,.22) inset;
}
.esim-unlock-input:hover{
  border-color: rgba(99,102,241,.45);
}
.esim-select:focus,
.esim-unlock-input:focus{
  border-color: rgba(29,214,242,.62);
  box-shadow: 0 0 0 3px rgba(29,214,242,.14), 0 0 18px rgba(29,214,242,.2);
  transform: translateY(-1px);
}
.esim-select:invalid{
  color: #b8c0d4;
}
.esim-select option,
.esim-select optgroup{
  color:#e6eaf2;
  background:#0b1635;
}
.esim-select option:hover,
.esim-select option:focus{
  color:#ffffff;
  background:#17305f;
}
.esim-select option:checked{
  color:#ffffff;
  background:#1f3a72;
}
.esim-select:disabled{
  opacity:.62;
  cursor:not-allowed;
}
.esim-actions{
  margin-top: 24px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.esim-regional-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5;
}
.esim-actions .btn.primary{
  width:min(320px, 100%);
  min-height: 52px;
  min-width: 0;
  box-shadow:
    0 12px 30px rgba(47,125,246,.35),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 22px rgba(29,214,242,.22);
}
.esim-actions .btn.primary:hover{
  box-shadow:
    0 14px 34px rgba(47,125,246,.42),
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 28px rgba(29,214,242,.3);
}
.esim-actions .btn.primary:disabled{
  opacity:.52;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}
.esim-status{
  margin: 12px 0 0;
  min-height: 16px;
}
.esim-result-card{
  border-color: rgba(255,255,255,.14);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, border-color .25s ease, box-shadow .25s ease;
}
.esim-result-card.is-visible{
  opacity:1;
  transform: translateY(0);
}
.esim-result-card.is-compatible{
  border-color: rgba(34,197,94,.45);
  background: linear-gradient(145deg, rgba(10,31,26,.74), rgba(7,17,29,.68));
  box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    0 0 0 1px rgba(34,197,94,.2) inset,
    0 0 26px rgba(34,197,94,.2);
  animation: esimPulseCompatible 2.8s ease-in-out infinite;
}
.esim-result-card.is-warning{
  border-color: rgba(245,158,11,.45);
  background: linear-gradient(145deg, rgba(40,27,8,.62), rgba(10,16,31,.68));
  box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    0 0 0 1px rgba(245,158,11,.18) inset,
    0 0 22px rgba(245,158,11,.22);
}
.esim-result-top{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.esim-result-icon{
  width:46px;
  height:46px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-size: 24px;
  font-weight: 900;
  line-height:1;
  margin-top: 2px;
  flex:0 0 auto;
  color: #dbeafe;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.esim-result-card.is-compatible .esim-result-icon{
  color: #1f9f4d;
  border-color: rgba(34,197,94,.4);
  background: rgba(34,197,94,.14);
}
.esim-result-card.is-warning .esim-result-icon{
  color: #f59e0b;
  border-color: rgba(245,158,11,.42);
  background: rgba(245,158,11,.14);
}
.esim-result-badge{
  margin: 0;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #c7d2fe;
}
.esim-result-message{
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 760;
}
.esim-next-step{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.esim-score-wrap{
  margin-top: 12px;
}
.esim-score-label{
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.esim-score-row{
  margin-top: 6px;
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap:10px;
  align-items:center;
}
.esim-score-bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  background: rgba(255,255,255,.05);
}
.esim-score-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, #f59e0b, #22c55e);
  transition: width .45s ease;
}
.esim-score-text{
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  color: #e2e8f0;
}
.esim-result-meta{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.esim-guide-card h3{
  margin: 0;
}
.esim-guide-card{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.esim-guide-card.is-visible{
  opacity:1;
  transform: translateY(0);
}
.esim-guide-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:20px;
}
.esim-guide-grid h4{
  margin: 0;
  font-size: 14px;
  letter-spacing:.2px;
}
.esim-guide-grid .list{
  margin-top: 8px;
}
.esim-visual{
  margin: -2px 0 8px;
  border-radius: 14px;
  border:1px solid rgba(29,214,242,.24);
  background:
    radial-gradient(120px 80px at 28% 32%, rgba(29,214,242,.16), transparent 75%),
    radial-gradient(140px 90px at 75% 70%, rgba(99,102,241,.2), transparent 78%),
    rgba(7,13,32,.66);
  padding: 8px;
}
.esim-visual svg{
  width:100%;
  height:auto;
  display:block;
  animation: esimVisualFloat 7s ease-in-out infinite;
}
.esim-visual-phone,
.esim-visual-screen,
.esim-visual-sim,
.esim-visual-chip,
.esim-visual-wave,
.esim-visual-chip-lines{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.esim-visual-phone,
.esim-visual-screen{
  stroke: rgba(29,214,242,.88);
  stroke-width: 2.4;
}
.esim-visual-sim{
  stroke: rgba(34,197,94,.9);
  stroke-width: 2.6;
}
.esim-visual-chip{
  stroke: rgba(34,197,94,.7);
  stroke-width: 1.8;
}
.esim-visual-chip-lines{
  stroke: rgba(34,197,94,.62);
  stroke-width: 1.8;
}
.esim-visual-wave{
  stroke: rgba(29,214,242,.72);
  stroke-width: 2;
}
.esim-visual-dot{
  fill: rgba(29,214,242,.95);
}
.esim-trust-card .list{
  margin-top: 8px;
}
.esim-how-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap:12px;
}
.esim-how-list li{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  color: #e6eaf2;
  font-size: 14px;
  font-weight: 650;
}
.esim-how-icon{
  width:24px;
  height:24px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, #2f7df6 0%, #2466c7 100%);
  color:#fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(47,125,246,.35);
  flex:0 0 auto;
}
.esim-popup-form{
  width:min(420px, 100%);
  margin: 22px auto 0;
  display:grid;
  grid-template-columns: minmax(0, 1fr);
  gap:14px;
  align-items:center;
}
.esim-popup-input{
  height:48px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(8,14,34,.92);
  color: var(--text);
  font-size: 14px;
  padding: 0 14px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.esim-popup-input:focus{
  border-color: rgba(29,214,242,.6);
  box-shadow: 0 0 0 3px rgba(29,214,242,.14);
}
.esim-popup-form .btn{
  border-radius: 999px;
  min-height: 48px;
  min-width: 0;
  width:100%;
  padding-left: 20px;
  padding-right: 20px;
  white-space: nowrap;
}

@media (max-width: 900px){
  .esim-tool-shell{
    grid-template-columns: 1fr;
  }
  .esim-field-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .esim-guide-grid{
    grid-template-columns: 1fr;
  }
  .esim-popup-form{
    grid-template-columns: 1fr;
  }
  .esim-popup-form .btn{
    width:100%;
    min-width: 0;
  }
}
@media (max-width: 700px){
  .esim-field-grid{
    grid-template-columns: 1fr;
  }
}

@keyframes esimGlowDriftLeft{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(18px, -14px);}
}
@keyframes esimGlowDriftRight{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(-20px, 16px);}
}
@keyframes esimGridShift{
  0%{transform: translateY(0);}
  100%{transform: translateY(44px);}
}
@keyframes esimPulseCompatible{
  0%, 100%{
    box-shadow:
      0 20px 50px rgba(0,0,0,.45),
      0 0 0 1px rgba(34,197,94,.2) inset,
      0 0 26px rgba(34,197,94,.2);
  }
  50%{
    box-shadow:
      0 20px 50px rgba(0,0,0,.45),
      0 0 0 1px rgba(34,197,94,.26) inset,
      0 0 34px rgba(34,197,94,.28);
  }
}
@keyframes esimVisualFloat{
  0%, 100%{transform: translateY(0);}
  50%{transform: translateY(-5px);}
}

@media (prefers-reduced-motion: reduce){
  .esim-tool-page::before,
  .esim-tool-page::after,
  .esim-grid-overlay,
  .esim-result-card.is-compatible,
  .esim-visual svg{
    animation: none;
  }
}

/* Account recovery checklist tool */
.recovery-tool-page{
  position: relative;
  overflow: hidden;
}
.recovery-tool-page::before{
  content:"";
  position:absolute;
  top:-180px;
  left:-180px;
  width:560px;
  height:560px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(29,214,242,.16), rgba(29,214,242,.01) 68%);
  filter: blur(14px);
  animation: recoveryGlowDriftLeft 12s ease-in-out infinite;
  pointer-events:none;
}
.recovery-tool-page::after{
  content:"";
  position:absolute;
  right:-190px;
  top:20px;
  width:620px;
  height:620px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(99,102,241,.2), rgba(99,102,241,.02) 70%);
  filter: blur(16px);
  animation: recoveryGlowDriftRight 14s ease-in-out infinite;
  pointer-events:none;
}
.recovery-grid-overlay{
  position:absolute;
  inset: 70px 0 0;
  z-index:0;
  pointer-events:none;
  opacity:.2;
  background-image:
    linear-gradient(rgba(199,210,254,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,210,254,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 22%, #000 28%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 22%, #000 28%, transparent 100%);
  animation: recoveryGridShift 15s linear infinite;
}
.recovery-tool-page .page-hero{
  margin-bottom: 36px;
  position:relative;
  z-index:2;
}
.recovery-support-copy{
  margin: 12px auto 0;
  font-size: 13px;
  color: #c7d2fe;
  letter-spacing: .2px;
}
.recovery-necessity{
  margin: 12px auto 0;
  color: #d7deef;
  font-weight: 760;
  font-size: 15px;
  text-align:center;
}
.recovery-support-copy::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  margin-right:8px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 5px rgba(34,197,94,.18);
}
.recovery-tool-shell{
  width:min(860px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "flow"
    "support";
  gap:16px;
  align-items:stretch;
  position:relative;
  z-index:1;
}
.recovery-input-card{
  grid-area: flow;
  display:block;
  background: linear-gradient(160deg, rgba(8,13,33,.92), rgba(7,11,30,.76));
  border-color: rgba(99,102,241,.24);
}
.recovery-step-indicator{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom: 18px;
}
.recovery-step-pill{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
  color: #b8c0d4;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .3px;
  opacity:.68;
}
.recovery-step-pill.is-active{
  border-color: rgba(29,214,242,.48);
  background: rgba(29,214,242,.14);
  color: #e2e8f0;
  opacity:1;
  box-shadow: 0 0 0 1px rgba(29,214,242,.2), 0 8px 20px rgba(29,214,242,.14);
}
.recovery-step-pill.is-complete{
  border-color: rgba(34,197,94,.45);
  background: rgba(34,197,94,.12);
  color:#e6f9ef;
  opacity:.94;
}
.recovery-step-pill.is-locked{
  border-style:dashed;
  color:#93a0c4;
  opacity:.5;
}
.recovery-step-panel{
  margin-top: 0;
}
.recovery-step-panel h2{
  text-align:center;
}
.recovery-copy{
  margin: 10px auto 0;
  color: var(--muted);
  text-align:center;
  max-width: 62ch;
}
.recovery-platform-grid{
  margin: 18px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  max-width: 620px;
}
.recovery-other-wrap{
  margin: 0 auto;
  max-width: 620px;
  display:grid;
  gap:8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  pointer-events:none;
  transition: max-height .28s ease, opacity .2s ease, transform .28s ease, margin .28s ease;
}
.recovery-other-wrap.is-open{
  margin-top: 14px;
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  pointer-events:auto;
}
.recovery-other-label{
  color:#c7d2fe;
  font-size: 13px;
  font-weight: 700;
  text-align:left;
}
.recovery-other-input{
  height:46px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(8,14,34,.92);
  color: var(--text);
  font-size: 14px;
  padding: 0 12px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.recovery-other-input:focus{
  border-color: rgba(29,214,242,.62);
  box-shadow: 0 0 0 3px rgba(29,214,242,.14);
}
.recovery-platform-btn{
  --platform-ring: rgba(125,151,255,.62);
  --platform-ring-soft: rgba(125,151,255,.24);
  --platform-glow: rgba(29,214,242,.12);
  min-height: 48px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(8,14,34,.86);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 750;
  cursor:pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.recovery-platform-btn:hover{
  border-color: var(--platform-ring);
  box-shadow: 0 0 0 1px var(--platform-ring-soft), 0 10px 24px var(--platform-glow);
  transform: translateY(-1px);
}
.recovery-platform-btn.is-selected{
  border-color: var(--platform-ring);
  background: linear-gradient(160deg, rgba(16,32,52,.88), rgba(7,14,33,.82));
  box-shadow: 0 0 0 1px var(--platform-ring-soft), 0 12px 26px var(--platform-glow);
  color:#f3f7ff;
}
.recovery-question-card{
  margin: 18px auto 0;
  max-width: 700px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(6,11,29,.7);
  padding: 18px;
}
.recovery-mode-note{
  margin: 8px auto 0;
  color:#c7d2fe;
  font-size: 13px;
  text-align:center;
}
.recovery-progress-wrap{
  margin: 0 auto 14px;
  max-width: 560px;
}
.recovery-progress-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.recovery-progress-label{
  margin:0;
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .65px;
}
.recovery-progress-text{
  margin:0;
  color:#d7deef;
  font-size: 12px;
  font-weight: 800;
}
.recovery-progress-bar{
  margin-top: 8px;
  height:10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.recovery-progress-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(47,125,246,.92), rgba(29,214,242,.95));
  transition: width .35s ease;
}
.recovery-question-prompt{
  margin: 10px 0 0;
  font-size: 22px;
  line-height:1.35;
  text-align:center;
}
.recovery-question-hint{
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.5;
  text-align:center;
}
.recovery-answer-grid{
  margin: 16px auto 0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  max-width: 520px;
}
.recovery-answer-btn{
  min-height: 44px;
  border-radius: 11px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: #d7deef;
  font-size: 14px;
  font-weight: 750;
  cursor:pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.recovery-answer-btn:hover{
  border-color: rgba(125,151,255,.56);
  box-shadow: 0 10px 22px rgba(99,102,241,.16);
}
.recovery-answer-btn.is-selected{
  border-color: rgba(29,214,242,.6);
  background: rgba(29,214,242,.14);
  color:#f8fbff;
  box-shadow: 0 0 0 1px rgba(29,214,242,.25), 0 12px 24px rgba(29,214,242,.18);
}
.recovery-nav-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}
.recovery-step-panel[data-step-panel="1"] .recovery-nav-actions{
  margin-top: 26px;
}
.recovery-nav-actions .btn.primary{
  min-height: 48px;
  min-width: 168px;
  box-shadow:
    0 12px 30px rgba(47,125,246,.3),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 24px rgba(29,214,242,.2);
}
.recovery-nav-actions .btn.primary:hover{
  box-shadow:
    0 14px 34px rgba(47,125,246,.38),
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 30px rgba(29,214,242,.3);
}
.recovery-nav-actions .btn.primary:disabled{
  opacity:.52;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}
.recovery-start-tease{
  margin: 14px auto 0;
  color: #d7deef;
  font-size: 13px;
  font-weight: 700;
  text-align:center;
}
.recovery-start-trust{
  margin: 8px auto 2px;
  color: var(--muted2);
  font-size: 12px;
  text-align:center;
}
.recovery-status{
  margin: 12px 0 0;
  min-height: 16px;
  text-align:center;
}
.recovery-score-wrap{
  margin: 16px auto 0;
  max-width: 700px;
}
.recovery-score-label{
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.recovery-score-row{
  margin-top: 6px;
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap:10px;
  align-items:center;
}
.recovery-score-bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  background: rgba(255,255,255,.05);
}
.recovery-score-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, #f59e0b, #22c55e);
  transition: width .45s ease;
}
.recovery-score-text{
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  color: #e2e8f0;
}
.recovery-checklist{
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap:12px;
  max-width: 700px;
}
.recovery-checklist-item{
  display:grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap:10px;
  align-items:start;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  padding: 12px;
  background: rgba(255,255,255,.03);
}
.recovery-checklist-item.is-yes{
  border-color: rgba(34,197,94,.42);
  background: rgba(34,197,94,.09);
}
.recovery-checklist-item.is-no{
  border-color: rgba(245,158,11,.42);
  background: rgba(245,158,11,.09);
}
.recovery-checklist-item.is-unsure{
  border-color: rgba(148,163,184,.44);
  background: rgba(148,163,184,.09);
}
.recovery-checklist-marker{
  width:24px;
  height:24px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color:#f8fafc;
  margin-top: 1px;
}
.recovery-checklist-title{
  margin:0;
  font-weight: 760;
  color:#eff4ff;
}
.recovery-checklist-status{
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.recovery-guidance{
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.6;
  text-align:center;
  max-width: 65ch;
}
.recovery-custom-cta{
  margin: 10px auto 0;
  max-width: 65ch;
  color:#c7d2fe;
  font-size: 13px;
  text-align:center;
}
.recovery-trust-card{
  grid-area: support;
  background: rgba(8,13,32,.42);
  border-color: rgba(255,255,255,.12);
  text-align:center;
  box-shadow: none;
  padding: 14px 16px;
}
.recovery-trust-card h3{
  margin: 0;
  font-size: 15px;
  color: #bcc7e6;
  font-weight: 700;
}
.recovery-support-list{
  margin: 10px auto 0;
  padding-left: 18px;
  color: var(--muted2);
  font-size: 13px;
  display:grid;
  gap:8px;
  max-width: 640px;
  text-align:left;
}
.recovery-trust-note{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted2);
  border-top:1px solid rgba(255,255,255,.1);
  padding-top: 10px;
}
.recovery-seo-section{
  position:relative;
  z-index:1;
}
.recovery-seo-section .seo-card .section-subtitle{
  min-height: 52px;
}
.recovery-faq-stack{
  margin-top: 18px;
  display:grid;
  gap:12px;
}
.recovery-faq-stack .seo-collapse{
  margin-top: 0;
}
.recovery-popup-form{
  width:min(420px, 100%);
  margin: 22px auto 0;
  display:grid;
  grid-template-columns: minmax(0, 1fr);
  gap:14px;
  align-items:center;
}
.recovery-popup-input{
  height:48px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(8,14,34,.92);
  color: var(--text);
  font-size: 14px;
  padding: 0 14px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.recovery-popup-input:focus{
  border-color: rgba(29,214,242,.62);
  box-shadow: 0 0 0 3px rgba(29,214,242,.14);
}
.recovery-popup-form .btn{
  border-radius: 999px;
  min-height: 48px;
  white-space: nowrap;
  min-width: 0;
  width:100%;
}
.gate-bonus-block{
  display:grid;
  gap:10px;
  text-align:center;
}
.gate-bonus-trigger{
  width:100%;
  min-height:44px;
  border-radius:999px;
  border:1px dashed rgba(125,211,252,.34);
  background: linear-gradient(180deg, rgba(17,24,45,.76), rgba(12,18,36,.56));
  color:#e8efff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.gate-bonus-trigger:hover{
  border-color: rgba(125,211,252,.54);
  background: linear-gradient(180deg, rgba(20,29,56,.84), rgba(14,21,42,.62));
}
.gate-bonus-trigger::before{
  content:"+";
  margin-right:10px;
  color:#7dd3fc;
  font-weight:800;
}
.gate-bonus-trigger[aria-expanded="true"]::before{
  content:"-";
}
.gate-bonus-panel{
  display:grid;
  gap:10px;
  padding:14px 14px 10px;
  border-radius:18px;
  border:1px solid rgba(125,211,252,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.gate-bonus-panel[hidden]{
  display:none !important;
}
.gate-bonus-copy{
  margin:0;
  color: #eef3ff;
  font-size:13px;
  line-height:1.55;
  font-weight:700;
}
.gate-phone-row{
  display:grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap:10px;
  align-items:center;
}
.gate-country-select{
  padding-right: 34px;
  text-align:center;
}
.gate-bonus-note{
  margin:0;
  color: var(--muted2);
  font-size:12px;
  line-height:1.5;
}
.widget-bonus-block{
  width:100%;
  margin-top: 2px;
}
.widget-bonus-block[hidden]{
  display:none !important;
}
.widget-bonus-panel{
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.widget-inline-input{
  width: 100%;
  min-width: 0;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,40,.08);
  background: rgba(255,255,255,.92);
  color:#0a1020;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}
.widget-inline-input:focus{
  border-color: rgba(29,214,242,.62);
  box-shadow: 0 0 0 3px rgba(29,214,242,.14);
}
.widget-inline-input::placeholder{
  color:#5b667f;
}
.singular-form-widget > div[data-role="input-container"]{
  gap: 12px;
}
.singular-form-widget > div[data-role="input-container"] .widget-inline-input,
.singular-form-widget > div[data-role="input-container"] .widget-bonus-block{
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.singular-form-widget > div[data-role="input-container"].shown .widget-inline-input,
.singular-form-widget > div[data-role="input-container"].shown .widget-bonus-block{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.singular-form-widget > div[data-role="input-container"] .gate-bonus-panel{
  pointer-events: auto;
}
.widget-bonus-panel .gate-phone-row{
  grid-template-columns: 96px minmax(0, 1fr);
  gap:10px;
}
@media (max-width: 700px){
  .singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"]{
    flex-wrap:wrap;
  }
  .singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"] button[data-role="send"]{
    width:100%;
    min-width:0;
  }
}

@media (max-width: 900px){
  .recovery-platform-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px){
  .recovery-platform-grid{
    grid-template-columns: 1fr;
  }
  .recovery-answer-grid{
    grid-template-columns: 1fr;
  }
  .gate-phone-row{
    grid-template-columns: 1fr;
  }
  .recovery-question-prompt{
    font-size: 20px;
  }
  .recovery-nav-actions .btn.primary,
  .recovery-nav-actions .btn.ghost,
  .recovery-nav-actions .btn{
    width:100%;
    min-width: 0;
    max-width: 340px;
  }
}

@keyframes recoveryGlowDriftLeft{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(18px, -14px);}
}
@keyframes recoveryGlowDriftRight{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(-20px, 16px);}
}
@keyframes recoveryGridShift{
  0%{transform: translateY(0);}
  100%{transform: translateY(44px);}
}

@media (prefers-reduced-motion: reduce){
  .recovery-tool-page::before,
  .recovery-tool-page::after,
  .recovery-grid-overlay{
    animation: none;
  }
}

/* Refund and dispute deadline calculator */
.refund-tool-page{
  position: relative;
  overflow: hidden;
}
.refund-tool-page::before{
  content:"";
  position:absolute;
  top:-180px;
  left:-200px;
  width:560px;
  height:560px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(251,191,36,.2), rgba(251,191,36,.02) 70%);
  filter: blur(14px);
  animation: refundGlowLeft 12s ease-in-out infinite;
  pointer-events:none;
}
.refund-tool-page::after{
  content:"";
  position:absolute;
  right:-200px;
  top:20px;
  width:620px;
  height:620px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(6,182,212,.18), rgba(6,182,212,.02) 70%);
  filter: blur(14px);
  animation: refundGlowRight 14s ease-in-out infinite;
  pointer-events:none;
}
.refund-grid-overlay{
  position:absolute;
  inset: 70px 0 0;
  z-index:0;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,236,179,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,249,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 22%, #000 28%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 22%, #000 28%, transparent 100%);
  animation: refundGridShift 16s linear infinite;
}
.refund-tool-page .page-hero{
  margin-bottom: 36px;
  position:relative;
  z-index:2;
}
.refund-accent{
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 45%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.refund-hero-note{
  margin: 12px auto 0;
  color: #d7deef;
  font-size: 13px;
  text-align:center;
}
.refund-tool-shell{
  width:min(980px, calc(100% - 44px));
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:22px;
  align-items:start;
  position:relative;
  z-index:1;
  min-height: 420px;
}
.refund-tool-shell::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.07;
  background-image:
    linear-gradient(rgba(103,232,249,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,249,.18) 1px, transparent 1px),
    linear-gradient(110deg, rgba(251,191,36,.08), rgba(6,182,212,.06), rgba(251,191,36,.08));
  background-size: 32px 32px, 32px 32px, 280% 280%;
  background-position: 0 0, 0 0, 0% 50%;
  animation: refundSectionGridDrift 24s linear infinite;
}
.refund-tool-shell::after{
  content:none;
}
.refund-input-card{
  position:relative;
  z-index:1;
  background: linear-gradient(160deg, rgba(24,20,7,.88), rgba(8,13,30,.76));
  border-color: rgba(251,191,36,.24);
}
.refund-input-card::after{
  content:"";
  position:absolute;
  inset:-16% -12% -20% -12%;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(48% 40% at 76% 22%, rgba(251,191,36,.12), transparent 72%),
    radial-gradient(42% 38% at 82% 66%, rgba(103,232,249,.10), transparent 72%);
  filter: blur(10px);
  animation: refundFormAura 20s ease-in-out infinite;
}
.refund-result-card{
  position:relative;
  z-index:1;
  grid-column: 2;
  background: linear-gradient(160deg, rgba(8,13,30,.86), rgba(7,12,20,.76));
  border-color: rgba(103,232,249,.24);
}
.refund-model-card{
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position:relative;
  z-index:1;
  grid-column: 2;
  min-height: 420px;
  border-color: rgba(103,232,249,.2);
  background:
    linear-gradient(155deg, rgba(8,13,32,.86), rgba(7,12,22,.78));
  overflow:hidden;
  transform: perspective(880px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .28s ease, border-color .24s ease, box-shadow .24s ease;
}
.refund-model-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:
    linear-gradient(rgba(103,232,249,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,249,.16) 1px, transparent 1px);
  background-size: 30px 30px;
}
.refund-model-card::after{
  content:"";
  position:absolute;
  inset:-18% -12%;
  pointer-events:none;
  background:
    radial-gradient(40% 34% at 72% 28%, rgba(103,232,249,.14), transparent 72%),
    radial-gradient(36% 32% at 30% 70%, rgba(251,191,36,.10), transparent 72%);
  animation: refundModelGlow 18s ease-in-out infinite;
}
.refund-model-card.is-hover{
  border-color: rgba(103,232,249,.34);
  box-shadow:
    0 20px 52px rgba(0,0,0,.46),
    0 0 0 1px rgba(103,232,249,.16) inset;
}
.refund-model-hover-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background: radial-gradient(180px 180px at var(--mx) var(--my), rgba(103,232,249,.16), transparent 72%);
  opacity:0;
  transition: opacity .22s ease;
}
.refund-model-card.is-hover .refund-model-hover-glow{
  opacity:1;
}
.refund-model-eyebrow{
  position:relative;
  z-index:2;
  margin:0;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  color: rgba(226,232,240,.5);
}
.refund-model-title{
  position:relative;
  z-index:2;
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.3;
}
.refund-model-sub{
  position:relative;
  z-index:2;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.6;
}
.refund-model-rotator{
  position:relative;
  z-index:2;
  margin-top: 18px;
  min-height: 170px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  transition: border-color .22s ease, background .22s ease;
}
.refund-model-rotator.is-hover{
  border-color: rgba(103,232,249,.28);
  background: rgba(255,255,255,.04);
}
.refund-model-slide{
  position:absolute;
  inset:0;
  padding: 18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  opacity:0;
  transform: translateY(6px);
  animation: refundModelRotate 16s linear infinite;
  transition: background .2s ease;
}
.refund-model-rotator.is-hover .refund-model-slide{
  animation-play-state: paused;
}
.refund-model-rotator.is-hover .refund-model-slide{
  background: linear-gradient(165deg, rgba(103,232,249,.05), rgba(251,191,36,.02));
}
.refund-model-slide:nth-child(2){animation-delay: 4s;}
.refund-model-slide:nth-child(3){animation-delay: 8s;}
.refund-model-slide:nth-child(4){animation-delay: 12s;}
.refund-model-key{
  margin:0;
  font-size: 18px;
  font-weight: 760;
  color: #e9eefb;
}
.refund-model-val{
  margin: 7px 0 0;
  color: #c8d2ea;
  line-height:1.6;
  font-size: 14px;
}
.refund-field-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
.refund-field{
  display:grid;
  gap:8px;
}
.refund-field-hidden{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events:none;
}
.refund-field span{
  font-size: 13px;
  font-weight: 740;
  color: #d8dde9;
}
.refund-select,
.refund-input{
  height:46px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(8,14,34,.92);
  color: var(--text);
  font-size: 14px;
  padding: 0 12px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.refund-select:focus,
.refund-input:focus{
  border-color: rgba(103,232,249,.64);
  box-shadow: 0 0 0 3px rgba(103,232,249,.16);
}
.refund-actions{
  margin-top: 18px;
}
.refund-actions .btn.primary{
  width:min(320px, 100%);
  min-height: 50px;
  min-width:0;
  background: linear-gradient(180deg, #d97706 0%, #b45309 100%);
  border-color: rgba(251,191,36,.52);
  box-shadow:
    0 12px 30px rgba(180,83,9,.35),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 22px rgba(6,182,212,.18);
}
.refund-actions .btn.primary:disabled{
  opacity:.55;
  box-shadow:none;
  cursor:not-allowed;
}
.refund-status{
  margin: 12px 0 0;
  min-height: 16px;
}
.refund-indicator{
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border:1px solid rgba(255,255,255,.14);
  font-weight: 760;
}
.refund-indicator-likely{
  border-color: rgba(34,197,94,.4);
  background: rgba(34,197,94,.12);
  color: #dcfce7;
}
.refund-indicator-urgent{
  border-color: rgba(245,158,11,.4);
  background: rgba(245,158,11,.12);
  color: #fde68a;
}
.refund-indicator-expired{
  border-color: rgba(239,68,68,.4);
  background: rgba(239,68,68,.12);
  color: #fecaca;
}
.refund-indicator-neutral{
  color: var(--muted);
}
.refund-metrics{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.refund-metric{
  border-radius: 10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
}
.refund-metric-label{
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.refund-metric-value{
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 760;
}
.refund-progress-wrap{
  margin-top: 12px;
}
.refund-progress-bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.refund-progress-fill{
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg, #22c55e 0%, #f59e0b 48%, #ef4444 100%);
  transition: width .4s ease;
}
.refund-next-step,
.refund-reasoning{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.refund-estimate-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: #fcd34d;
}
.refund-disclaimer{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted2);
}
.refund-seo-section{
  position:relative;
  z-index:1;
}
.refund-source-list{
  margin-top: 8px;
}

@media (max-width: 900px){
  .refund-tool-shell{
    grid-template-columns: 1fr;
  }
  .refund-tool-shell::after{
    content:none;
  }
  .refund-result-card{
    grid-column: 1;
  }
  .refund-model-card{
    grid-column: 1;
    min-height: 330px;
  }
}
@media (max-width: 700px){
  .refund-field-grid{
    grid-template-columns: 1fr;
  }
  .refund-actions .btn.primary{
    width:100%;
  }
}

@keyframes refundGlowLeft{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(18px, -14px);}
}
@keyframes refundGlowRight{
  0%, 100%{transform: translate(0,0);}
  50%{transform: translate(-20px, 16px);}
}
@keyframes refundGridShift{
  0%{transform: translateY(0);}
  100%{transform: translateY(44px);}
}
@keyframes refundSectionGridDrift{
  0%{background-position: 0 0, 0 0, 0% 50%;}
  50%{background-position: 0 0, 0 0, 100% 50%;}
  100%{background-position: 0 0, 0 0, 0% 50%;}
}
@keyframes refundFormAura{
  0%, 100%{opacity:.8; transform: translate(0,0);}
  50%{opacity:1; transform: translate(2%, -1%);}
}
@keyframes refundModelGlow{
  0%, 100%{opacity:.72; transform: translate(0,0);}
  50%{opacity:1; transform: translate(-1%, 1%);}
}

.link-decoder-page{
  position:relative;
  overflow:hidden;
  padding-top: 18px;
  padding-bottom: 64px;
}
.link-decoder-grid{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(rgba(139,92,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  animation: linkDecoderGridShift 16s linear infinite;
}
.link-decoder-page .page-hero{
  position:relative;
  z-index:2;
  margin-bottom: 0;
}
.link-decoder-hero{
  padding: 32px 0 18px;
}
.link-decoder-hero h1{
  max-width: 12ch;
  margin: 0 auto;
}
.link-decoder-hero .page-subtitle{
  max-width: 52ch;
}
.link-decoder-note{
  margin: 14px auto 0;
  color: #d7deef;
  font-size: 13px;
  text-align:center;
}
.link-decoder-shell{
  width:min(760px, calc(100% - 44px));
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:stretch;
  position:relative;
  z-index:1;
  transition: width .24s ease;
}
.link-decoder-shell.is-idle{
  width:min(760px, calc(100% - 44px));
}
.link-decoder-shell.has-result{
  width:min(860px, calc(100% - 44px));
}
.link-decoder-shell::before{
  content:none;
}
.link-decoder-search{
  margin: 22px auto 0;
  width:100%;
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:16px;
  align-items:center;
  padding: 18px;
  border-radius: 22px;
  border:1px solid rgba(139,92,246,.16);
  background:
    linear-gradient(180deg, rgba(11,15,34,.86), rgba(8,12,26,.8));
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 44px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.03) inset;
}
.link-decoder-url-input{
  height:56px;
  width:100%;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(5,9,24,.88);
  color: #eef2ff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: .15s ease;
}
.link-decoder-url-input::placeholder{
  color: rgba(201,210,232,.56);
}
.link-decoder-url-input:focus{
  border-color: rgba(155,140,255,.5);
  box-shadow: 0 0 0 4px rgba(139,92,246,.12);
}
.link-decoder-search .btn{
  height:56px;
}
.link-decoder-search .btn.primary.ai{
  min-width: 134px;
  padding-inline: 20px;
}
.link-clear-icon{
  position:relative;
  display:inline-block;
  width:16px;
  height:16px;
}
.link-clear-icon::before,
.link-clear-icon::after{
  content:"";
  position:absolute;
  left:7px;
  top:1px;
  width:2px;
  height:14px;
  border-radius:999px;
  background: rgba(234,240,255,.9);
}
.link-clear-icon::before{transform: rotate(45deg);}
.link-clear-icon::after{transform: rotate(-45deg);}
.link-decoder-search .btn.icon{
  min-width: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
  box-shadow:none;
}
.link-decoder-search .btn.icon:hover{
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 10px 28px rgba(139,92,246,.12);
}
.link-decoder-status{
  margin: 0;
  min-height: 16px;
  text-align:center;
}
.link-scan-panel{
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(139,92,246,.18);
  background:
    radial-gradient(circle at top right, rgba(139,92,246,.14), transparent 34%),
    linear-gradient(180deg, rgba(12,17,37,.88), rgba(7,11,23,.84));
  box-shadow:
    0 18px 46px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.link-scan-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-100%);
  animation: linkScanSweep 1.8s linear infinite;
  pointer-events:none;
}
.link-scan-head{
  display:grid;
  gap:6px;
}
.link-scan-kicker{
  margin:0;
  color:#a5b4fc;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.link-scan-lead{
  margin:0;
  font-size:20px;
  font-weight:760;
  color:#eff4ff;
}
.link-scan-progress{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.05);
}
.link-scan-progress-bar{
  display:block;
  height:100%;
  width:8%;
  border-radius:inherit;
  background: linear-gradient(90deg, #8b5cf6, #60a5fa 55%, #7dd3fc);
  box-shadow: 0 0 24px rgba(96,165,250,.35);
  transition: width .48s ease;
}
.link-scan-steps{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}
.link-scan-step{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(215,222,239,.72);
  font-size:14px;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.link-scan-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 5px rgba(255,255,255,.02);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.link-scan-step.is-active{
  color:#f7f9ff;
  transform: translateX(3px);
}
.link-scan-step.is-active .link-scan-dot{
  background:#8b5cf6;
  box-shadow: 0 0 0 6px rgba(139,92,246,.14), 0 0 18px rgba(139,92,246,.28);
  transform: scale(1.12);
}
.link-scan-step.is-complete{
  color:#dbeafe;
}
.link-scan-step.is-complete .link-scan-dot{
  background:#22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.link-decoder-result-card{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding: 26px 28px 24px;
  background:
    radial-gradient(circle at top center, rgba(96,165,250,.08), transparent 34%),
    linear-gradient(160deg, rgba(10,15,33,.94), rgba(7,11,21,.88));
  border-color: rgba(104,126,184,.2);
  margin-top: 6px;
  transform: translateY(0);
  opacity: 1;
  box-shadow:
    0 24px 56px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: opacity .24s ease, transform .24s ease, margin-top .24s ease;
}
.link-decoder-result-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 50%;
  width: 72%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.34), transparent);
  pointer-events:none;
}
.link-decoder-shell.is-idle .link-decoder-result-card{
  transform: translateY(12px);
  opacity: 0;
}
.link-seo-section{
  margin-top: clamp(84px, 12vh, 132px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.link-seo-section.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.reveal-item{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .72s ease, transform .72s ease, filter .72s ease;
}
.reveal-item.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.link-result-top{
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap:24px;
  align-items:start;
}
.link-result-top > div:first-child{
  display:grid;
  justify-items:center;
  align-content:start;
  text-align:center;
}
.link-verdict-title{
  margin: 0;
  max-width: 16ch;
  font-size: 40px;
  font-weight: 830;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.link-analysis-basis{
  margin: 14px 0 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.link-analysis-facts{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}
.link-analysis-fact{
  display:inline-flex;
  align-items:center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border:1px solid rgba(96,165,250,.2);
  background: linear-gradient(180deg, rgba(32,49,92,.34), rgba(15,24,49,.24));
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.link-score-wrap{
  flex:0 0 auto;
  display:grid;
  gap:12px;
  justify-items:center;
  padding: 14px 14px 10px;
  min-width: 120px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.link-score-ring{
  width: 96px;
  aspect-ratio: 1;
  display:grid;
  place-items:center;
  position:relative;
  isolation:isolate;
}
.link-score-ring::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(6,10,24,.96) 0 68%, rgba(10,16,33,.92) 69% 100%);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  z-index:0;
}
.link-score-ring-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transform: rotate(-90deg);
  overflow:visible;
}
.link-score-ring-track,
.link-score-ring-progress{
  fill:none;
  stroke-width:8;
}
.link-score-ring-track{
  stroke: rgba(255,255,255,.1);
}
.link-score-ring-progress{
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.link-score-ring span{
  position:relative;
  z-index:1;
}
.link-score-ring span{
  font-size: 28px;
  font-weight: 820;
}
.link-score-ring-neutral,
.link-score-ring-safe{
  color: #22c55e;
}
.link-score-ring-caution{
  color: #facc15;
}
.link-score-ring-warn{
  color: #f59e0b;
}
.link-score-ring-danger{
  color: #ef4444;
}
.link-score-label{
  margin:0;
  color: var(--muted2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.link-summary-grid{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.link-summary-box{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 16px 18px;
  text-align:center;
}
.link-summary-label{
  margin:0;
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.link-summary-value{
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 760;
  overflow-wrap:anywhere;
}
.link-breakdown{
  margin-top: 16px;
  display:grid;
  gap:12px;
}
.link-breakdown-row{
  display:grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap:16px;
  align-items:center;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
  padding: 14px 16px;
}
.link-breakdown-key{
  color: var(--muted2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-align:center;
}
.link-breakdown-val{
  color: #edf2ff;
  font-weight: 700;
  text-align:center;
  overflow-wrap:anywhere;
}
.link-findings-section,
.link-next-section{
  margin-top: 24px;
}
.link-section-heading{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.link-section-heading h3,
.link-next-section h3{
  margin:0;
  font-size: 24px;
  text-align:center;
  letter-spacing: -.02em;
}
.link-findings-list{
  list-style:none;
  margin: 18px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}
.link-finding{
  display:grid;
  gap:8px;
  border-radius: 16px;
  padding: 16px 18px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  text-align:center;
}
.reveal-finding{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .64s ease, transform .64s ease, border-color .3s ease, background .3s ease;
}
.reveal-finding.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.link-finding strong{
  font-size: 18px;
  line-height: 1.3;
}
.link-finding span{
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.65;
}
.link-finding-positive{
  border-color: rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}
.link-finding-low{
  border-color: rgba(125,211,252,.2);
}
.link-finding-medium{
  border-color: rgba(250,204,21,.22);
  background: rgba(250,204,21,.06);
}
.link-finding-high{
  border-color: rgba(239,68,68,.22);
  background: rgba(239,68,68,.08);
}
.link-next-copy{
  margin: 14px auto 0;
  max-width: 54ch;
  color: var(--muted);
  text-align:center;
  line-height: 1.7;
}
@media (max-width: 900px){
  .link-decoder-page{
    padding-top: 12px;
    padding-bottom: 56px;
  }
  .link-decoder-hero{
    padding: 22px 0 14px;
  }
  .link-decoder-search{
    margin-top: 18px;
  }
  .link-decoder-shell{
    width:min(720px, calc(100% - 44px));
  }
  .link-seo-section{
    margin-top: 72px;
  }
  .link-decoder-result-card{
    padding: 22px 20px 20px;
  }
  .link-verdict-title{
    font-size: 34px;
  }
  .link-breakdown-row{
    grid-template-columns: 140px minmax(0, 1fr);
  }
}
@media (max-width: 700px){
  .link-decoder-search{
    grid-template-columns: 1fr;
    gap:12px;
    padding: 16px;
  }
  .link-result-top,
  .link-section-heading{
    flex-direction:column;
    align-items:center;
  }
  .link-result-top{
    grid-template-columns: 1fr;
  }
  .link-seo-section{
    margin-top: 56px;
  }
  .link-summary-grid{
    grid-template-columns: 1fr;
  }
  .link-breakdown-row{
    grid-template-columns: 1fr;
  }
  .link-decoder-search .btn,
  .link-section-heading .btn{
    width:100%;
  }
  .link-verdict-title{
    font-size: 30px;
  }
  .link-analysis-basis,
  .link-next-copy,
  .link-finding span{
    max-width: none;
  }
}

@keyframes linkDecoderGridShift{
  0%{transform: translateY(0);}
  100%{transform: translateY(42px);}
}
@keyframes linkScanSweep{
  0%{transform: translateX(-100%);}
  100%{transform: translateX(100%);}
}

.breach-check-page{
  position:relative;
  overflow:hidden;
  padding-top: 18px;
  padding-bottom: 64px;
}
.breach-check-grid{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:
    linear-gradient(rgba(37,99,235,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,214,242,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  animation: breachCheckGridShift 17s linear infinite;
}
.breach-check-page .page-hero{
  position:relative;
  z-index:2;
  margin-bottom:0;
}
.breach-check-hero{
  padding: 32px 0 18px;
}
.breach-check-hero h1{
  max-width: 10ch;
  margin: 0 auto;
}
.breach-check-hero .page-subtitle{
  max-width: 54ch;
}
.breach-check-note{
  margin: 14px auto 0;
  color: #d7deef;
  font-size: 13px;
  text-align:center;
}
.breach-check-shell{
  width:min(820px, calc(100% - 44px));
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:stretch;
  position:relative;
  z-index:1;
  transition: width .24s ease;
}
.breach-check-shell.is-idle{
  width:min(820px, calc(100% - 44px));
}
.breach-check-shell.has-result{
  width:min(1080px, calc(100% - 44px));
}
.breach-check-search{
  margin: 22px auto 0;
  width:100%;
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:16px;
  align-items:center;
  padding: 18px;
  border-radius: 22px;
  border:1px solid rgba(59,130,246,.16);
  background:
    linear-gradient(180deg, rgba(11,15,34,.86), rgba(8,12,26,.8));
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 44px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.03) inset;
}
.breach-check-input{
  height:56px;
  width:100%;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(5,9,24,.88);
  color: #eef2ff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: .15s ease;
}
.breach-check-input::placeholder{
  color: rgba(201,210,232,.56);
}
.breach-check-input:focus{
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}
.breach-check-search .btn{
  height:56px;
}
.breach-check-search .btn.primary.ai{
  min-width: 134px;
  padding-inline: 20px;
}
.breach-check-search .btn.icon{
  min-width: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
  box-shadow:none;
}
.breach-check-search .btn.icon:hover{
  border-color: rgba(59,130,246,.35);
  box-shadow: 0 10px 28px rgba(59,130,246,.12);
}
.breach-check-status{
  margin: 0;
  min-height: 16px;
  text-align:center;
}
.breach-loading-panel{
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,.18);
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.14), transparent 34%),
    linear-gradient(180deg, rgba(12,17,37,.88), rgba(7,11,23,.84));
  box-shadow:
    0 18px 46px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.breach-loading-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-100%);
  animation: linkScanSweep 1.8s linear infinite;
  pointer-events:none;
}
.breach-loading-head{
  display:grid;
  gap:6px;
  justify-items:center;
  text-align:center;
}
.breach-loading-kicker{
  margin:0;
  color:#93c5fd;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.breach-loading-lead{
  margin:0;
  font-size:20px;
  font-weight:760;
  color:#eff4ff;
}
.breach-loading-explain{
  margin: 2px auto 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.breach-loading-progress{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.05);
}
.breach-loading-progress-bar{
  display:block;
  height:100%;
  width:8%;
  border-radius:inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8 55%, #7dd3fc);
  box-shadow: 0 0 24px rgba(56,189,248,.35);
  transition: width .48s ease;
}
.breach-loading-steps{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}
.breach-loading-step{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(215,222,239,.72);
  font-size:14px;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.breach-loading-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 5px rgba(255,255,255,.02);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.breach-loading-step.is-active{
  color:#f7f9ff;
  transform: translateX(3px);
}
.breach-loading-step.is-active .breach-loading-dot{
  background:#38bdf8;
  box-shadow: 0 0 0 6px rgba(56,189,248,.14), 0 0 18px rgba(56,189,248,.28);
  transform: scale(1.12);
}
.breach-loading-step.is-complete{
  color:#dbeafe;
}
.breach-loading-step.is-complete .breach-loading-dot{
  background:#22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.breach-result-card{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding: 26px 28px 24px;
  background:
    radial-gradient(circle at top center, rgba(56,189,248,.08), transparent 34%),
    linear-gradient(160deg, rgba(10,15,33,.94), rgba(7,11,21,.88));
  border-color: rgba(104,126,184,.2);
  margin-top: 6px;
  transform: translateY(0);
  opacity: 1;
  box-shadow:
    0 24px 56px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: opacity .24s ease, transform .24s ease, margin-top .24s ease;
  max-width: 1080px;
  margin-inline: auto;
}
.breach-result-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 50%;
  width: 72%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.34), transparent);
  pointer-events:none;
}
.breach-result-top{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  justify-items:center;
  align-items:start;
}
.breach-result-top > div:first-child{
  display:grid;
  justify-items:center;
  align-content:start;
  text-align:center;
}
.breach-result-pill{
  display:inline-flex;
  align-items:center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#dbeafe;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.breach-result-pill.is-good{
  border-color: rgba(34,197,94,.24);
  background: rgba(34,197,94,.08);
  color:#dcfce7;
}
.breach-result-pill.is-bad{
  border-color: rgba(239,68,68,.24);
  background: rgba(239,68,68,.08);
  color:#fee2e2;
}
.breach-headline{
  margin: 16px 0 0;
  max-width: 18ch;
  font-size: 46px;
  font-weight: 830;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.breach-message{
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.breach-facts{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  max-width: 62ch;
}
.breach-fact{
  display:inline-flex;
  align-items:center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border:1px solid rgba(56,189,248,.2);
  background: linear-gradient(180deg, rgba(24,52,92,.34), rgba(12,27,49,.22));
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.breach-score-wrap{
  flex:0 0 auto;
  display:grid;
  gap:12px;
  justify-items:center;
  padding: 14px 14px 10px;
  min-width: 120px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  margin-inline:auto;
}
.breach-count-ring{
  width: 96px;
  aspect-ratio: 1;
  display:grid;
  place-items:center;
  position:relative;
  isolation:isolate;
}
.breach-count-ring::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(6,10,24,.96) 0 68%, rgba(10,16,33,.92) 69% 100%);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  z-index:0;
}
.breach-count-ring-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transform: rotate(-90deg);
  overflow:visible;
}
.breach-count-ring-track,
.breach-count-ring-progress{
  fill:none;
  stroke-width:8;
}
.breach-count-ring-track{
  stroke: rgba(255,255,255,.1);
}
.breach-count-ring-progress{
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.breach-count-ring span{
  position:relative;
  z-index:1;
  font-size: 28px;
  font-weight: 820;
}
.breach-count-ring-neutral{
  color:#7dd3fc;
}
.breach-count-ring-good{
  color:#22c55e;
}
.breach-count-ring-bad{
  color:#ef4444;
}
.breach-score-label{
  margin:0;
  color: var(--muted2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.breach-summary-grid{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.breach-summary-box{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 16px 18px;
  text-align:center;
  min-height: 118px;
  display:grid;
  align-content:center;
}
.breach-summary-label{
  margin:0;
  font-size: 12px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.breach-summary-value{
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 760;
  overflow-wrap:anywhere;
  line-height: 1.35;
}
.breach-summary-email{
  font-size: 16px;
  line-height: 1.55;
  word-break: break-word;
  max-width: 22ch;
  margin-inline:auto;
}
.breach-next-section,
.breach-list-section{
  margin-top: 24px;
}
.breach-next-section h3,
.breach-section-heading h3{
  margin:0;
  font-size: 24px;
  text-align:center;
  letter-spacing: -.02em;
}
.breach-next-steps{
  list-style:none;
  margin: 16px auto 0;
  padding:0;
  display:grid;
  gap:10px;
  max-width: 56ch;
}
.breach-next-steps li{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 14px 16px;
  color:#e7eeff;
  text-align:center;
  line-height:1.6;
}
.breach-section-heading{
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
}
.breach-list-lead{
  margin:0;
  color: var(--muted);
  text-align:center;
}
.breach-list{
  display:grid;
  gap:14px;
  margin-top: 18px;
}
.breach-item{
  display:grid;
  gap:14px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  border:1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.breach-item-top{
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap:16px;
  align-items:start;
}
.breach-item-title{
  margin:0;
  font-size: 22px;
  letter-spacing: -.02em;
}
.breach-item-meta{
  margin: 8px 0 0;
  color: var(--muted2);
  font-size: 13px;
}
.breach-item-count{
  margin:0;
  min-width: 110px;
  text-align:right;
  color:#dbeafe;
  font-size: 13px;
  font-weight:700;
}
.breach-item-description{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}
.breach-item-info{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.breach-item-flags,
.breach-item-data{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.breach-reference-link{
  display:inline-flex;
  align-items:center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border:1px solid rgba(56,189,248,.24);
  background: rgba(56,189,248,.08);
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
}
.breach-reference-link:hover{
  border-color: rgba(125,211,252,.42);
  box-shadow: 0 10px 24px rgba(56,189,248,.12);
}
.breach-badge{
  display:inline-flex;
  align-items:center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border:1px solid rgba(148,163,184,.24);
  background: rgba(15,23,42,.34);
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
}
.breach-badge.good{
  border-color: rgba(34,197,94,.24);
  background: rgba(34,197,94,.08);
  color:#dcfce7;
}
.breach-badge.warn{
  border-color: rgba(245,158,11,.24);
  background: rgba(245,158,11,.08);
  color:#fef3c7;
}
.breach-badge.bad{
  border-color: rgba(239,68,68,.24);
  background: rgba(239,68,68,.08);
  color:#fee2e2;
}
.breach-empty{
  border-radius: 16px;
  border:1px solid rgba(34,197,94,.16);
  background: rgba(34,197,94,.06);
  padding: 18px;
  text-align:center;
  color:#dcfce7;
  line-height:1.7;
}
.breach-card-privacy{
  margin: 24px auto 0;
  max-width: 58ch;
  color: var(--muted2);
  text-align:center;
  line-height:1.7;
}
.breach-seo-section{
  margin-top: clamp(84px, 12vh, 132px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.breach-seo-section.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 900px){
  .breach-check-page{
    padding-top: 12px;
    padding-bottom: 56px;
  }
  .breach-check-hero{
    padding: 22px 0 14px;
  }
  .breach-check-search{
    margin-top: 18px;
  }
  .breach-check-shell{
    width:min(760px, calc(100% - 44px));
  }
  .breach-result-card{
    padding: 22px 20px 20px;
  }
  .breach-headline{
    font-size: 38px;
  }
  .breach-summary-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px){
  .breach-check-search{
    grid-template-columns: 1fr;
    gap:12px;
    padding: 16px;
  }
  .breach-result-top,
  .breach-item-top{
    grid-template-columns: 1fr;
  }
  .breach-item-count{
    text-align:left;
    min-width:0;
  }
  .breach-summary-grid{
    grid-template-columns: 1fr;
  }
  .breach-check-search .btn{
    width:100%;
  }
  .breach-headline{
    font-size: 30px;
  }
}
@keyframes breachCheckGridShift{
  0%{transform: translateY(0);}
  100%{transform: translateY(44px);}
}
.password-exposure-page{
  position:relative;
  overflow:hidden;
  padding-top: 18px;
  padding-bottom: 64px;
}
.password-exposure-grid{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:
    linear-gradient(rgba(139,92,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 22%, #000 30%, transparent 100%);
  animation: breachCheckGridShift 17s linear infinite;
}
.password-exposure-page .page-hero{
  position:relative;
  z-index:2;
  margin-bottom:0;
}
.password-exposure-hero{
  padding: 32px 0 18px;
}
.password-exposure-hero h1{
  max-width: 12ch;
  margin: 0 auto;
}
.password-exposure-hero .page-subtitle{
  max-width: 56ch;
}
.password-exposure-note{
  margin: 14px auto 0;
  color: #d7deef;
  font-size: 13px;
  text-align:center;
  max-width: 70ch;
}
.password-exposure-shell{
  width:min(820px, calc(100% - 44px));
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:stretch;
  position:relative;
  z-index:1;
  transition: width .24s ease;
}
.password-exposure-shell.is-idle{
  width:min(820px, calc(100% - 44px));
}
.password-exposure-shell.has-result{
  width:min(1040px, calc(100% - 44px));
}
.password-exposure-search{
  margin: 22px auto 0;
  width:100%;
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:16px;
  align-items:center;
  padding: 18px;
  border-radius: 22px;
  border:1px solid rgba(139,92,246,.16);
  background: linear-gradient(180deg, rgba(11,15,34,.86), rgba(8,12,26,.8));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.password-exposure-input{
  height:56px;
  width:100%;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(5,9,24,.88);
  color: #eef2ff;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: .15s ease;
}
.password-exposure-input::placeholder{
  color: rgba(201,210,232,.56);
}
.password-exposure-input:focus{
  border-color: rgba(155,140,255,.5);
  box-shadow: 0 0 0 4px rgba(139,92,246,.12);
}
.password-exposure-search .btn{
  height:56px;
}
.password-exposure-search .btn.primary.ai{
  min-width: 170px;
}
.password-exposure-search .btn.icon{
  min-width:56px;
  border-radius:16px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
  box-shadow:none;
}
.password-exposure-search .btn.icon:hover{
  border-color: rgba(139,92,246,.35);
  box-shadow: 0 10px 28px rgba(139,92,246,.12);
}
.password-exposure-status{
  margin:0;
  min-height:16px;
  text-align:center;
}
.password-exposure-loading-panel{
  position:relative;
  overflow:hidden;
  padding: 18px 18px 16px;
  border-radius:20px;
  border:1px solid rgba(139,92,246,.18);
  background:
    radial-gradient(circle at top right, rgba(139,92,246,.14), transparent 34%),
    linear-gradient(180deg, rgba(12,17,37,.88), rgba(7,11,23,.84));
  box-shadow: 0 18px 46px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
}
.password-exposure-loading-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-100%);
  animation: linkScanSweep 1.8s linear infinite;
  pointer-events:none;
}
.password-exposure-loading-head{
  display:grid;
  gap:6px;
  justify-items:center;
  text-align:center;
}
.password-exposure-loading-kicker{
  margin:0;
  color:#c4b5fd;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.password-exposure-loading-lead{
  margin:0;
  font-size:20px;
  font-weight:760;
  color:#eff4ff;
  max-width:24ch;
}
.password-exposure-loading-explain{
  margin:2px auto 0;
  max-width:60ch;
  color: var(--muted);
  font-size:14px;
  line-height:1.65;
}
.password-exposure-loading-progress{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.05);
}
.password-exposure-loading-progress-bar{
  display:block;
  height:100%;
  width:8%;
  border-radius:inherit;
  background: linear-gradient(90deg, #8b5cf6, #60a5fa 55%, #7dd3fc);
  box-shadow: 0 0 24px rgba(96,165,250,.35);
  transition: width .48s ease;
}
.password-exposure-loading-steps{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:10px;
}
.password-exposure-loading-step{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(215,222,239,.72);
  font-size:13px;
  line-height:1.45;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.password-exposure-loading-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 5px rgba(255,255,255,.02);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.password-exposure-loading-step.is-active{
  color:#f7f9ff;
  transform: translateX(3px);
}
.password-exposure-loading-step.is-active .password-exposure-loading-dot{
  background:#8b5cf6;
  box-shadow: 0 0 0 6px rgba(139,92,246,.14), 0 0 18px rgba(139,92,246,.28);
  transform: scale(1.12);
}
.password-exposure-loading-step.is-complete{
  color:#dbeafe;
}
.password-exposure-loading-step.is-complete .password-exposure-loading-dot{
  background:#22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.password-exposure-result-card{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding: 26px 28px 24px;
  background:
    radial-gradient(circle at top center, rgba(96,165,250,.08), transparent 34%),
    linear-gradient(160deg, rgba(10,15,33,.94), rgba(7,11,21,.88));
  border-color: rgba(104,126,184,.2);
  margin-top:6px;
  box-shadow: 0 24px 56px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.04);
  max-width:1040px;
  margin-inline:auto;
}
.password-exposure-result-top{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  justify-items:center;
}
.password-exposure-result-top > div:first-child{
  display:grid;
  justify-items:center;
  text-align:center;
}
.password-exposure-result-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding: 0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#dbeafe;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.password-exposure-result-pill.is-good{
  border-color: rgba(34,197,94,.24);
  background: rgba(34,197,94,.08);
  color:#dcfce7;
}
.password-exposure-result-pill.is-bad{
  border-color: rgba(239,68,68,.24);
  background: rgba(239,68,68,.08);
  color:#fee2e2;
}
.password-exposure-headline{
  margin:16px 0 0;
  max-width:16ch;
  font-size:44px;
  font-weight:830;
  line-height:1.08;
  letter-spacing:-.03em;
}
.password-exposure-message{
  margin:14px 0 0;
  max-width:60ch;
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
}
.password-exposure-facts{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  max-width:62ch;
}
.password-exposure-fact{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  border-radius:999px;
  border:1px solid rgba(96,165,250,.2);
  background: linear-gradient(180deg, rgba(32,49,92,.34), rgba(15,24,49,.24));
  color:#dbeafe;
  font-size:12px;
  font-weight:700;
}
.password-exposure-score-wrap{
  display:grid;
  gap:12px;
  justify-items:center;
  padding:14px 14px 10px;
  min-width:120px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.password-exposure-count-ring{
  width:96px;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  position:relative;
  isolation:isolate;
}
.password-exposure-count-ring::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(6,10,24,.96) 0 68%, rgba(10,16,33,.92) 69% 100%);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.password-exposure-count-ring-svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  transform: rotate(-90deg);
}
.password-exposure-count-ring-track,
.password-exposure-count-ring-progress{
  fill:none;
  stroke-width:8;
}
.password-exposure-count-ring-track{stroke: rgba(255,255,255,.1);}
.password-exposure-count-ring-progress{
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray:100;
  stroke-dashoffset:100;
}
.password-exposure-count-ring span{
  position:relative;
  z-index:1;
  font-size:28px;
  font-weight:820;
  line-height:1;
  letter-spacing:-.04em;
  text-align:center;
}
.password-exposure-count-ring span.is-compact{
  font-size:22px;
}
.password-exposure-count-ring-neutral{color:#7dd3fc;}
.password-exposure-count-ring-good{color:#22c55e;}
.password-exposure-count-ring-bad{color:#ef4444;}
.password-exposure-score-label{
  margin:0;
  color:var(--muted2);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.password-exposure-summary-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.password-exposure-summary-box{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding:16px 18px;
  text-align:center;
  min-height:118px;
  display:grid;
  align-content:center;
}
.password-exposure-summary-label{
  margin:0;
  font-size:12px;
  color:var(--muted2);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.password-exposure-summary-value{
  margin:8px 0 0;
  font-size:20px;
  font-weight:760;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.password-exposure-meaning-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.password-exposure-meaning-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at top right, rgba(96,165,250,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  padding:18px 18px 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.password-exposure-meaning-label{
  margin:0;
  color:var(--muted2);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.password-exposure-meaning-title{
  margin:8px 0 0;
  font-size:22px;
  letter-spacing:-.02em;
  color:#eef3ff;
}
.password-exposure-meaning-text{
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
}
.password-exposure-next-section,
.password-exposure-tips-section{
  margin-top:24px;
}
.password-exposure-next-section h3,
.password-exposure-section-heading h3{
  margin:0;
  font-size:24px;
  text-align:center;
  letter-spacing:-.02em;
}
.password-exposure-next-steps{
  list-style:none;
  margin:16px auto 0;
  padding:0;
  display:grid;
  gap:10px;
  max-width:56ch;
}
.password-exposure-next-steps li,
.password-exposure-tip-card{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding:14px 16px;
  color:#e7eeff;
  text-align:center;
  line-height:1.6;
}
.password-exposure-section-heading{
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
}
.password-exposure-list-lead{
  margin:0;
  color:var(--muted);
  text-align:center;
}
.password-exposure-tips{
  display:grid;
  gap:10px;
  max-width:62ch;
  margin:18px auto 0;
}
.password-exposure-tip-card{
  display:block;
}
.password-exposure-card-privacy{
  margin:24px auto 0;
  max-width:58ch;
  color:var(--muted2);
  text-align:center;
  line-height:1.7;
}
.password-exposure-seo-section{
  margin-top: clamp(84px, 12vh, 132px);
  opacity:0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events:none;
}
.password-exposure-seo-section.is-visible{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
@media (max-width: 900px){
  .password-exposure-shell{
    width:min(760px, calc(100% - 44px));
  }
  .password-exposure-headline{
    font-size:38px;
  }
  .password-exposure-summary-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .password-exposure-meaning-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px){
  .password-exposure-search{
    grid-template-columns: 1fr;
    gap:12px;
    padding:16px;
  }
  .password-exposure-search .btn{
    width:100%;
  }
  .password-exposure-summary-grid{
    grid-template-columns: 1fr;
  }
  .password-exposure-meaning-card{
    padding:16px;
  }
  .password-exposure-headline{
    font-size:30px;
  }
}
@keyframes linkDecoderAura{
  0%{background-position: 0 0, 0 0, 0% 50%;}
  50%{background-position: 0 0, 0 0, 100% 50%;}
  100%{background-position: 0 0, 0 0, 0% 50%;}
}
@keyframes refundModelRotate{
  0%, 20%{opacity:0; transform: translateY(6px);}
  24%, 46%{opacity:1; transform: translateY(0);}
  50%, 100%{opacity:0; transform: translateY(-6px);}
}
@media (prefers-reduced-motion: reduce){
  .refund-tool-page::before,
  .refund-tool-page::after,
  .refund-grid-overlay,
  .refund-tool-shell::before,
  .refund-input-card::after,
  .refund-model-card::after,
  .refund-model-slide{
    animation: none;
  }
  .refund-model-card{
    transform:none;
  }
  .refund-model-slide{opacity:1; transform:none;}
}

/* Newsletter signup */
.newsletter-section{
  margin-top: 30px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.newsletter-section.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.newsletter-section.is-visible .newsletter-shell{
  animation: newsletterFloat 5.2s ease-in-out .8s infinite;
}
.newsletter-shell{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.newsletter-shell::before{
  content:"";
  position:absolute;
  top:-140px;
  left:-90px;
  width:340px;
  height:340px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(99,102,241,.26), transparent 72%);
  pointer-events:none;
}
.newsletter-shell::after{
  content:"";
  position:absolute;
  right:-130px;
  bottom:-200px;
  width:360px;
  height:360px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(29,214,242,.18), transparent 72%);
  pointer-events:none;
}
.newsletter-shell > *{
  position:relative;
  z-index:1;
}
.newsletter-copy{
  text-align:center;
  margin-bottom: 18px;
}
.newsletter-copy .section-title{
  margin-left:auto;
  margin-right:auto;
}
.newsletter-copy .eyebrow{
  margin-bottom: 8px;
}
.newsletter-copy .section-subtitle{
  margin: 10px auto 0;
  max-width: 62ch;
}
.newsletter-footnote{
  margin: 12px 0 0;
  text-align:center;
  color: var(--muted2);
  font-size:12px;
  letter-spacing:.2px;
}
.newsletter-widget{
  width: 19rem;
  max-width: 100%;
  height: 48px;
  margin: 16px auto 0;
  padding: 0;
  border-radius: 999px;
  border:none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    width .4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    height .2s ease,
    padding .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}
.newsletter-widget.expanded{
  width: min(37rem, 100%);
  height: 4.1rem;
  padding: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  overflow: hidden;
}
.newsletter-widget.expanded[data-capture-stage="phone"]{
  height: 4.1rem;
}
.newsletter-widget.expanded[data-capture-stage="name"]{
  height: 4.1rem;
}
.singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"]{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:10px;
}
.singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"] button[data-role="send"]{
  min-width: 118px;
  width:auto;
}
.singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"] .widget-bonus-block{
  width:100%;
  min-width:0;
}
.singular-form-widget{
  position:relative;
  width:100%;
  height:100%;
}
.singular-form-widget button,
.singular-form-widget input{
  font-size:16px;
  font-family: inherit;
  font-weight: 800;
}
.singular-form-widget > button[data-role="trigger"],
.singular-form-widget > div[data-role="input-container"],
.singular-form-widget > div[data-role="success"]{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  border-radius: 999px;
  transform: scale(.96);
  opacity: 0;
  pointer-events:none;
  transition: transform .3s ease, opacity .3s ease;
}
.singular-form-widget > button[data-role="trigger"]{
  top:50%;
  left:50%;
  right:auto;
  bottom:auto;
  width: auto;
  min-width: 280px;
  max-width: 100%;
  height:48px;
  padding: 0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0;
  border:none;
  outline:none;
  border-radius:999px;
  background: linear-gradient(180deg, #5b3bff 0%, #4a2bd6 100%);
  color:#fff;
  cursor:pointer;
  box-shadow:
    0 12px 28px rgba(74,43,214,.45),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 30px rgba(99,102,241,.35);
  transition: transform .3s ease, opacity .3s ease, box-shadow .2s ease, border-color .2s ease;
}
.singular-form-widget > button[data-role="trigger"].shown{
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events:auto;
  animation: newsletterGlowPulse 3.6s ease-in-out infinite;
}
.singular-form-widget > button[data-role="trigger"]:hover{
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow:
    0 14px 32px rgba(74,43,214,.5),
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 38px rgba(99,102,241,.45);
}
.singular-form-widget > div[data-role="input-container"]{
  display:flex;
  align-items:stretch;
  flex-wrap:wrap;
  gap:12px;
}
.singular-form-widget > div[data-role="input-container"] input{
  flex:1 1 250px;
  height:48px;
  border:none;
  outline:none;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color:#0a1020;
  transform: scale(.92);
  opacity:0;
  transition: transform .3s ease, opacity .3s ease;
}
.singular-form-widget > div[data-role="input-container"] input::placeholder{
  color:#5b667f;
}
.singular-form-widget > div[data-role="input-container"] button[data-role="send"]{
  min-width: 110px;
  height:48px;
  border:none;
  outline:none;
  border-radius: 999px;
  padding: 0 22px;
  cursor:pointer;
  color:#fff;
  background: linear-gradient(180deg, #5b3bff 0%, #4a2bd6 100%);
  box-shadow:
    0 10px 22px rgba(74,43,214,.38),
    0 0 0 1px rgba(255,255,255,.08) inset;
  transform: scale(.92);
  opacity:0;
  pointer-events:none;
  transition: transform .3s ease, opacity .3s ease;
}
.singular-form-widget > div[data-role="input-container"].shown{
  transform: scale(1);
  opacity:1;
  pointer-events:auto;
}
.singular-form-widget > div[data-role="input-container"] input.shown,
.singular-form-widget > div[data-role="input-container"] button[data-role="send"].shown{
  transform: scale(1);
  opacity:1;
  pointer-events:auto;
}
.singular-form-widget > div[data-role="input-container"] button[data-role="send"].shown:hover{
  transform: scale(1.05);
}
.singular-form-widget > div[data-role="success"]{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#4a2bd6;
  font-size:20px;
}
.singular-form-widget > div[data-role="success"].shown{
  transform: scale(1);
  opacity:1;
}
.singular-form-widget .input--hidden{
  position:absolute;
  left:-9999px;
}

@keyframes newsletterGlowPulse{
  0%, 100%{
    box-shadow:
      0 12px 28px rgba(74,43,214,.45),
      0 0 0 1px rgba(255,255,255,.08) inset,
      0 0 30px rgba(99,102,241,.35);
  }
  50%{
    box-shadow:
      0 13px 30px rgba(74,43,214,.5),
      0 0 0 1px rgba(255,255,255,.1) inset,
      0 0 36px rgba(99,102,241,.42);
  }
}

@keyframes newsletterFloat{
  0%, 100%{transform: translateY(0);}
  50%{transform: translateY(-4px);}
}

@media (max-width: 900px){
  .newsletter-shell{
    padding: 22px 18px;
  }
  .newsletter-widget,
  .newsletter-widget.expanded{
    width:100%;
  }
  .singular-form-widget > div[data-role="input-container"] button[data-role="send"]{
    min-width: 90px;
    padding: 0 16px;
  }
  .singular-form-widget > button[data-role="trigger"]{
    min-width: 230px;
    height:44px;
    padding: 0 18px;
  }
  .newsletter-footnote{
    margin-top: 10px;
  }
}

/* Email capture popup */
body.capture-popup-open{
  overflow: hidden;
}
body.capture-popup-open > *:not(.capture-popup){
  pointer-events: none;
}
body.capture-popup-open .capture-popup{
  pointer-events: auto;
}
.capture-popup{
  position: fixed;
  inset: 0;
  min-height: 100vh;
  height: 100dvh;
  z-index: 2147483000;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.capture-popup.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.capture-popup__backdrop{
  position:absolute;
  inset:0;
  background: rgba(3, 6, 20, .72);
  backdrop-filter: blur(4px);
}
.capture-popup__dialog{
  position:relative;
  width:min(720px, calc(100% - 18px));
  border-radius: 20px;
  border:1px solid var(--stroke2);
  background: linear-gradient(145deg, rgba(8,12,30,.98), rgba(6,10,26,.97));
  box-shadow:
    0 28px 80px rgba(0,0,0,.58),
    0 0 60px rgba(99,102,241,.16);
  padding: 30px 26px 24px;
  overflow:hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .34s ease, transform .34s ease;
}
.capture-popup__dialog::before{
  content:"";
  position:absolute;
  top:-130px;
  right:-120px;
  width:290px;
  height:290px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(99,102,241,.28), transparent 72%);
  pointer-events:none;
}
.capture-popup__dialog::after{
  content:"";
  position:absolute;
  bottom:-150px;
  left:-120px;
  width:330px;
  height:330px;
  border-radius:50%;
  background: radial-gradient(circle at center, rgba(29,214,242,.16), transparent 74%);
  pointer-events:none;
}
.capture-popup.is-open .capture-popup__dialog{
  opacity: 1;
  transform: translateY(0);
}
.capture-popup__close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:18px;
  line-height:1;
  transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.capture-popup__close:hover{
  transform: scale(1.06);
  color:#fff;
  border-color: rgba(255,255,255,.28);
}
.capture-popup__content{
  text-align:center;
}
.capture-popup__eyebrow{
  margin:0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--muted2);
  text-align:center;
}
.capture-popup__title{
  margin:0 auto;
  font-size: clamp(30px, 4.3vw, 42px);
  line-height:1.12;
  letter-spacing:-.4px;
  text-align:center;
  max-width: 16ch;
}
.capture-popup__description{
  margin: 14px auto 0;
  color: var(--muted);
  line-height:1.6;
  max-width: 50ch;
  text-align:center;
}
.capture-popup__widget{
  width:min(420px, 100%);
  margin: 18px auto 0;
}
.capture-popup .newsletter-widget{
  width:100%;
}
.capture-popup .newsletter-widget.expanded{
  width:min(560px, 100%);
}
.capture-popup .newsletter-widget.expanded[data-capture-stage="phone"]{
  height: 4.1rem;
}
.capture-popup .newsletter-widget.expanded[data-capture-stage="name"]{
  height: 4.1rem;
}
.capture-popup .singular-form-widget[data-capture-stage="phone"] > div[data-role="input-container"] button[data-role="send"]{
  width:auto;
  min-width:118px;
}
.capture-popup .singular-form-widget > button[data-role="trigger"]{
  min-width: 300px;
}
.capture-popup .singular-form-widget > div[data-role="input-container"] button[data-role="send"]{
  min-width: 118px;
}
.capture-popup__trust{
  margin: 12px 0 0;
  text-align:center;
  color: var(--muted2);
  font-size:12px;
}
.capture-popup .input--hidden{
  position:absolute;
  left:-9999px;
}

@media (prefers-reduced-motion: reduce){
  .newsletter-section{
    opacity:1;
    transform:none;
    transition:none;
  }
  .newsletter-section.is-visible .newsletter-shell{
    animation:none;
  }
  .singular-form-widget > button[data-role="trigger"].shown{
    animation:none;
  }
  .singular-form-widget > button[data-role="trigger"]:hover{
    transform: translate(-50%, -50%) scale(1);
  }
  .singular-form-widget > div[data-role="input-container"] button[data-role="send"].shown:hover{
    transform: scale(1);
  }
  .capture-popup{
    transition:none;
  }
  .capture-popup__dialog{
    transition:none;
    opacity:1;
    transform:none;
  }
}

@media (max-width: 700px){
  .capture-popup{
    padding: 14px;
  }
  .capture-popup__dialog{
    padding: 24px 18px 18px;
    border-radius: 16px;
  }
  .capture-popup__title{
    font-size: clamp(26px, 8.2vw, 34px);
  }
  .capture-popup__description{
    margin-top: 12px;
  }
  .capture-popup .singular-form-widget > button[data-role="trigger"]{
    min-width: 250px;
  }
  .capture-popup .newsletter-widget.expanded{
    width:100%;
  }
}

/* Policies */
.policy p{color: var(--muted);}

/* Timeline */
.timeline{
  width:min(980px, calc(100% - 44px));
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap:22px;
  position:relative;
  padding-left: 10px;
}
.timeline::before{
  content:"";
  position:absolute;
  left: 34px;
  top: 12px;
  bottom: 12px;
  width:2px;
  background: linear-gradient(180deg, rgba(139,92,246,.18), rgba(47,125,246,.45), rgba(139,92,246,.18));
  opacity:.8;
}
.timeline__event{
  position:relative;
  display:grid;
  grid-template-columns: 72px 1fr;
  gap:16px;
  align-items:start;
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.timeline__event:nth-child(1){transition-delay: .05s;}
.timeline__event:nth-child(2){transition-delay: .16s;}
.timeline__event:nth-child(3){transition-delay: .28s;}
.timeline__event.is-visible{
  opacity:1;
  transform: translateY(0);
}
.timeline__event__icon{
  width:48px;
  height:48px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .4px;
  color:#0a1020;
  background: linear-gradient(135deg, rgba(139,92,246,.85), rgba(47,125,246,.85));
  box-shadow:
    0 14px 28px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.18) inset;
  position:relative;
  z-index:2;
  margin-left: 10px;
}
.timeline__event__content{
  border-radius: var(--radius);
  border:1px solid var(--stroke2);
  background: rgba(10,14,30,.55);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.timeline__event__date{
  display:inline-flex;
  align-items:center;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted2);
  margin-bottom: 8px;
}
.timeline__event__title{
  font-size: 18px;
  font-weight: 850;
  margin: 0 0 10px;
  color: var(--text);
}
.timeline__event__description p{margin:0; color: var(--muted); line-height:1.6;}
.timeline__event__description .list{margin: 0;}

.timeline__event--type2 .timeline__event__icon{
  background: linear-gradient(135deg, rgba(47,125,246,.9), rgba(29,214,242,.85));
}
.timeline__event--type3 .timeline__event__icon{
  background: linear-gradient(135deg, rgba(34,197,94,.85), rgba(29,214,242,.75));
}

@media (prefers-reduced-motion: reduce){
  .timeline__event{transition:none; opacity:1; transform:none;}
}

@media (max-width: 900px){
  .timeline{
    padding-left: 0;
  }
  .timeline::before{left: 24px;}
  .timeline__event{
    grid-template-columns: 58px 1fr;
  }
  .timeline__event__icon{margin-left: 0;}
}

@media (max-width: 900px){
  .blog-sortbar{
    margin-bottom: 14px;
  }
  .blog-sort-wrap{
    width:100%;
  }
  .blog-sort-select{
    width:100%;
    min-width:0;
  }
  .page-grid{grid-template-columns: 1fr;}
  .tools-grid{grid-template-columns: 1fr;}
  .blog-grid{grid-template-columns: 1fr;}
  .split{grid-template-columns: 1fr;}
  .seo-grid{grid-template-columns: 1fr;}
}

/* About hero (layout inspired by provided reference) */
.about-page{
  padding: 0;
  position: relative;
  background: #050712;
  overflow: hidden;
}
.about-page::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 800px at 50% 10%, rgba(74,84,255,.18), transparent 70%),
    radial-gradient(900px 700px at 50% 60%, rgba(41,92,255,.10), transparent 75%),
    radial-gradient(1200px 900px at 50% 100%, rgba(52,86,255,.14), transparent 78%);
  opacity:.65;
  pointer-events:none;
  z-index:0;
}
.about-page::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 50% 95%, rgba(94,90,255,.20), transparent 78%),
    radial-gradient(900px 700px at 50% 100%, rgba(41,92,255,.14), transparent 82%);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.about-page > *{
  position:relative;
  z-index:1;
}
.about-page .page-subtitle{margin-left:0; margin-right:0;}
.about-page .page-section:last-of-type{
  margin-bottom: 80px;
}
.about-hero{
  position:relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(1200px 600px at 70% 40%, rgba(94,90,255,.24), transparent 60%),
    radial-gradient(600px 400px at 15% 30%, rgba(41,92,255,.18), transparent 60%),
    #050712;
  overflow:visible;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.25), transparent 70%),
    radial-gradient(1.5px 1.5px at 30% 60%, rgba(255,255,255,.25), transparent 70%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,.2), transparent 70%),
    radial-gradient(1.5px 1.5px at 85% 70%, rgba(255,255,255,.2), transparent 70%);
  opacity:.6;
  pointer-events:none;
  z-index:0;
}
.about-hero::after{
  content:"";
  position:absolute;
  inset:-160px 0 -520px;
  background:
    radial-gradient(920px 420px at 50% 0%, rgba(94,90,255,.22), transparent 78%),
    radial-gradient(1000px 620px at 50% 90%, rgba(41,92,255,.14), transparent 82%),
    linear-gradient(180deg, rgba(5,7,18,0) 0%, rgba(5,7,18,.10) 60%, rgba(5,7,18,.35) 86%, #050712 100%);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.about-hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.about-copy h1{
  font-size: clamp(36px, 4.8vw, 64px);
  line-height:1.05;
}
.byline{
  margin: 18px 0 0;
  color: var(--muted2);
  font-size: 13px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.about-copy .cta-row{justify-content:flex-start;}
.cta-row.left{justify-content:flex-start;}
.about-stats{
  display:flex;
  gap:16px;
  margin-top: 24px;
  flex-wrap:wrap;
}
.stat.mini{
  padding: 12px 14px;
  min-width: 180px;
  background: rgba(10,14,30,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.stat.mini .stat-num{font-size: 18px;}

.about-visual{
  position:relative;
  display:grid;
  place-items:center;
  min-height: 360px;
}
.about-portrait{
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(10,14,30,.6);
  box-shadow:
    0 18px 40px rgba(10,20,60,.45),
    0 0 0 1px rgba(255,255,255,.08) inset;
  filter: drop-shadow(0 30px 60px rgba(34,76,255,.45));
  position:relative;
  z-index:2;
  animation: portraitFloat 12s ease-in-out infinite;
  object-fit: cover;
  object-position: 36% 42%;
}
.portrait-glow{
  position:absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104,120,255,.55), rgba(12,16,38,0));
  filter: blur(6px);
}

@keyframes portraitFloat{
  0%{transform: translate(0, 0) rotate(0deg);}
  20%{transform: translate(6px, -6px) rotate(-0.6deg);}
  45%{transform: translate(-4px, -12px) rotate(0.4deg);}
  70%{transform: translate(5px, -8px) rotate(-0.3deg);}
  100%{transform: translate(0, 0) rotate(0deg);}
}

@media (max-width: 900px){
  .about-hero-inner{grid-template-columns: 1fr; text-align:center;}
  .about-copy .cta-row{justify-content:center;}
  .about-stats{justify-content:center;}
}

/* Pagination Styles */
.blog-pagination {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--stroke);
}

.pagination-info {
  color: var(--muted);
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  gap: 12px;
}

.pagination-btn {
  padding: 10px 16px !important;
  border: 1px solid var(--stroke) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.pagination-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .pagination {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pagination-controls {
    justify-content: center;
  }
}

