:root{
  --bg:#000000;
  --bg2:#1e1e1e;
  --text:#F5D76E;
  --muted:#ffeaa3;
  --accent:#ccb03d;
  --accent2:#ffffff;
  --btnText:#000000;

  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --glow:0 0 10px rgba(204, 176, 61, 0.3), 0 0 30px rgba(204, 176, 61, 0.2), 0 0 60px rgba(204, 176, 61, 0.1);

  --r:2px;
  --padX:40px;
  --padY:80px;
  --gap:28px;

  --fontHead:"Unbounded",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --fontBody:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;overflow-wrap:break-word}
html{font-size:100%;overflow-x:hidden;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{
  margin:0;
  font-size:1rem;
  font-family:var(--fontBody);
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  contain:strict;
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(70,255,242,.12), rgba(0,0,0,0) 62%),
    radial-gradient(820px 520px at 86% 18%, rgba(180,90,255,.12), rgba(0,0,0,0) 64%),
    radial-gradient(920px 560px at 74% 90%, rgba(255,120,205,.10), rgba(0,0,0,0) 66%),
    radial-gradient(700px 420px at 40% 70%, rgba(204,176,61,.10), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0) 40%);
  animation:meshDrift 18s ease-in-out infinite;
}
@keyframes meshDrift{
  0%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(0,-10px,0) scale(1.02)}
  100%{transform:translate3d(0,0,0) scale(1)}
}

a{color:inherit}
a:hover{opacity:1}
img{max-width:100%;height:auto}

p{margin:0 0 14px;-webkit-hyphens:auto;hyphens:auto}
h1,h2,h3,h4,h5,h6{hyphens:none}
h2{font-family:var(--fontHead);font-weight:800;letter-spacing:.2px;line-height:1.22;font-size:2.35rem;margin:0 0 10px}
h3{font-family:var(--fontHead);font-weight:800;letter-spacing:.15px;line-height:1.28;font-size:1.35rem;margin:0 0 10px}

.container{max-width:1200px;margin:0 auto;padding:0 var(--padX)}
.section{padding:var(--padY) 0}
.section-head{max-width:78ch;margin:0 auto 26px}
.section-head p{color:var(--muted)}

.skip-link{position:absolute;top:-40px;left:0;background:var(--accent);color:var(--btnText);padding:8px;z-index:10001;font-size:14px}
.skip-link:focus{top:0}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(0,0,0,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:72px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-mark{
  width:34px;height:34px;border-radius:10px;flex:0 0 auto;
  background:
    radial-gradient(circle at 30% 30%,rgba(255,255,255,.22),rgba(255,255,255,0) 60%),
    linear-gradient(135deg,rgba(70,255,242,.75),rgba(180,90,255,.62),rgba(255,120,205,.55));
  box-shadow:var(--glow);
}
.brand span{font-family:var(--fontHead);letter-spacing:.4px;font-size:1.05rem}
nav{display:flex;align-items:center;gap:12px}
.nav-links{display:flex;align-items:center;gap:18px}
.nav-links a{text-decoration:none;opacity:.86;font-weight:700}
.nav-links a:hover{opacity:1}

/* Hamburger icon (CSS only) */
.mobile-toggle-input{display:none}
.hamburger{
  display:none;
  background:transparent;
  border:1px solid currentColor;
  color:inherit;
  padding:10px 12px;
  cursor:pointer;
  opacity:.75;
}
.hamburger:hover{opacity:1}
.hamburger-lines{
  width:22px;height:14px;display:inline-block;position:relative;
}
.hamburger-lines::before,.hamburger-lines::after{
  content:"";
  position:absolute;left:0;right:0;
  height:2px;border-radius:999px;
  background:rgba(255,255,255,.75);
}
.hamburger-lines::before{top:0}
.hamburger-lines::after{bottom:0}
.mobile-menu{
  display:none;
  background:rgba(10,10,12,.98);
  border-top:1px solid rgba(255,255,255,.1);
}
.mobile-menu a{
  display:block;
  padding:12px 20px;
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover{background:rgba(255,255,255,.08)}
@media (max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex;align-items:center;justify-content:center}
  .mobile-toggle-input:checked ~ .mobile-menu{display:block}
}

/* Language dropdown (required rules included) */
.lang-menu{position:relative}
.lang-btn{
  cursor:pointer;display:flex;align-items:center;gap:.25rem;
  padding:.35rem .6rem;border:1px solid currentColor;border-radius:4px;
  font-size:.85rem;color:inherit;opacity:.75;
}
.lang-btn:hover{opacity:1}
.lang-arrow{font-size:.7rem;transition:transform .2s}
.lang-dropdown{
  display:none;position:absolute;top:100%;right:0;margin-top:.25rem;
  background:#fff;border:1px solid #ddd;border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  max-height:320px;overflow-y:auto;z-index:1000;min-width:160px;padding:.25rem 0;
}
.lang-menu:hover .lang-dropdown,.lang-menu:focus-within .lang-dropdown{display:block}
.lang-menu:hover .lang-arrow,.lang-menu:focus-within .lang-arrow{transform:rotate(180deg)}
.lang-option{display:block;padding:.4rem 1rem;text-decoration:none;color:#333;font-size:.85rem;white-space:nowrap}
.lang-option:hover{background:#f0f0f0}
.lang-option.active{font-weight:700;background:#f5f5f5}

/* Language Dropdown - ALWAYS BLACK TEXT on WHITE background (dropdown only) */
.lang-dropdown,.lang-list{background:#ffffff}
.lang-option{color:#000000 !important;background:#ffffff}
.lang-option:hover{background:rgba(0,0,0,.05);color:#000000 !important}
.lang-select option{color:#000000;background:#ffffff}

/* Icons reserve space (CLS prevention) */
.trust-badge i,[class*="fa-"]{
  display:inline-block;width:1em;height:1em;vertical-align:middle;line-height:1;
  aspect-ratio:1/1;
}

/* Hero */
.hero-section{position:relative;padding:calc(var(--padY) - 18px) 0 var(--padY);min-height:600px}
.hero-inner{display:flex;align-items:center;gap:40px}
.hero-left{flex:1;min-width:0}
.hero-kicker{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.kicker-pill{
  display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  font-weight:700;font-size:.9rem;
}
h1{
  margin:14px 0 10px;
  font-family:var(--fontHead);
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.18;
  font-size:3.2rem;
}
.hero-lead{max-width:54ch;color:var(--muted)}
.hero-quicklist{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.quick-item{
  display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap;
  padding:10px 12px;border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;
}

.trust-row{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  contain:content;
}
.trust-badge{
  display:flex;align-items:center;gap:10px;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  min-height:48px;
}
.trust-badge span{font-weight:700;color:var(--muted)}

.market-strip{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  contain:layout;
}
.stat{
  padding:16px 16px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--glow);
}
.stat-top{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.stat-label{font-weight:800;letter-spacing:.2px}
.stat-chip{
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  font-size:.82rem;font-weight:800;color:var(--muted)
}
.stat-value{display:flex;align-items:baseline;gap:8px;margin-top:8px}
.stat-value .num{font-family:var(--fontHead);font-weight:800;font-size:2rem;line-height:1.2;color:var(--accent2)}
.stat-value .unit{font-weight:800;color:var(--muted)}
.stat-desc{margin:8px 0 0;color:var(--muted);font-size:.95rem}

.hero-form{width:100%;max-width:460px;flex-shrink:0}

/* Hero decor */
.hero-decor{position:absolute;inset:0;z-index:-1;contain:strict;overflow:hidden;pointer-events:none}
.orb{position:absolute;border-radius:999px;filter:blur(60px);opacity:.55;contain:strict}
.orb.o1{width:520px;height:520px;left:-180px;top:-140px;background:radial-gradient(circle at 30% 30%,rgba(70,255,242,.45),rgba(70,255,242,0) 62%)}
.orb.o2{width:560px;height:560px;right:-220px;top:40px;background:radial-gradient(circle at 30% 30%,rgba(180,90,255,.42),rgba(180,90,255,0) 64%)}
.orb.o3{width:520px;height:520px;right:8%;bottom:-220px;background:radial-gradient(circle at 30% 30%,rgba(255,120,205,.35),rgba(255,120,205,0) 62%)}

.grid-glow{
  position:absolute;
  left:50%;
  top:50%;
  width:min(980px,86vw);
  height:auto;
  transform:translate3d(-50%,-50%,0);
  opacity:.22;
  filter:blur(.2px);
  contain:strict;
}

.token{position:absolute;opacity:.35;filter:drop-shadow(0 0 18px rgba(204,176,61,.12));contain:strict}
.token-a{left:4%;bottom:10%;transform:translate3d(0,0,0) rotate(10deg);animation:floatA 10s ease-in-out infinite}
.token-b{right:6%;top:18%;transform:translate3d(0,0,0) rotate(-8deg);animation:floatB 12s ease-in-out infinite}
@keyframes floatA{0%{transform:translate3d(0,0,0) rotate(10deg)}50%{transform:translate3d(0,-14px,0) rotate(16deg)}100%{transform:translate3d(0,0,0) rotate(10deg)}}
@keyframes floatB{0%{transform:translate3d(0,0,0) rotate(-8deg)}50%{transform:translate3d(0,16px,0) rotate(-14deg)}100%{transform:translate3d(0,0,0) rotate(-8deg)}}

/* Form */
.form-shell{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--glow);
}
.form-head{margin-bottom:12px}
.form-title{font-size:1.35rem;margin:0 0 6px}
.form-subtitle{margin:0;color:var(--muted);font-size:.98rem}

.form-message{min-height:18px;font-size:.95rem;color:var(--accent2);margin-bottom:8px}
.reg-form{display:block}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-col,.form-block{display:block}
label{display:block;font-weight:800;color:var(--muted);margin:0 0 6px}
input{
  width:100%;
  height:48px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--accent2);
  outline:none;
}
input::placeholder{color:rgba(255,255,255,.55)}
input:focus{outline:2px solid rgba(204,176,61,.55);outline-offset:2px}

.form-block{margin-top:12px}
.phone-input-wrapper{
  display:flex;align-items:center;gap:10px;
  padding:0 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  height:48px;
}
.phone-prefix{
  min-width:44px;
  padding:8px 10px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--accent2);
  font-weight:800;
}
.phone-input-wrapper input{
  height:44px;
  border:none;
  background:transparent;
  padding:10px 0;
}
.phone-input-wrapper input:focus{outline:none}

.form-disclaimer{font-size:.85rem;color:var(--muted);line-height:1.4;margin-top:.5rem}
.form-disclaimer a{color:var(--accent2);text-decoration:underline;font-weight:800}
.form-disclaimer a:hover{opacity:1}

.submit-btn{
  width:100%;
  height:56px;
  margin-top:12px;
  border:none;
  border-radius:16px;
  background:var(--accent);
  color:var(--btnText);
  font-weight:900;
  letter-spacing:.4px;
  cursor:pointer;
  box-shadow:var(--glow);
  transition:transform .2s ease;
}
.submit-btn:hover{transform:translate3d(0,-2px,0)}
.submit-btn:focus{outline:2px solid rgba(255,255,255,.55);outline-offset:3px}

.form-trust{
  margin-top:12px;
  display:flex;gap:10px;flex-wrap:wrap;
}
.mini-badge{
  display:inline-flex;align-items:center;gap:8px;flex-wrap:wrap;
  padding:8px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  font-weight:800;
  color:var(--muted);
}

/* Cards / grids */
.card{
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--glow);
  contain:content;
}
.features-section,.steps-section,.faq-section,.risk-section,.security-section{content-visibility:auto;contain-intrinsic-size:auto 500px}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
  contain:layout;
}
.feature-card h3{margin-top:10px}
.feature-card p{color:var(--muted);margin:0}
.icon-chip{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg,rgba(70,255,242,.16),rgba(180,90,255,.12),rgba(255,120,205,.10));
  box-shadow:var(--glow);
}

/* Steps */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:stretch;
  contain:layout;
}
.step-card{position:relative}
.step-num{
  position:absolute;
  right:14px;
  top:10px;
  font-family:var(--fontHead);
  font-weight:800;
  font-size:2.1rem;
  color:rgba(255,255,255,.08);
  z-index:0;
  pointer-events:none;
}
.step-card h3,.step-card p,.step-card ul{position:relative;z-index:1}
.bullets{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.bullets li{margin:6px 0}

.chart-card{
  margin-top:24px;
  padding:22px;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--glow);
  contain:layout;
}
.chart-head{max-width:80ch}
.chart-head p{color:var(--muted);margin:0}
.chart-svg{margin-top:16px;width:100%;height:auto;display:block}
.chart-line{
  stroke-dasharray:1200;
  stroke-dashoffset:1200;
  animation:drawLine 1.6s ease forwards;
}
@keyframes drawLine{to{stroke-dashoffset:0}}

/* FAQ */
.faq-wrap{max-width:980px;margin:0 auto;display:grid;gap:12px;contain:layout}
.faq-item{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:var(--glow);
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:900;
  color:var(--accent2);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-icon{
  width:26px;height:26px;border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  position:relative;
  flex:0 0 auto;
}
.faq-icon::before,.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  width:12px;height:2px;border-radius:99px;
  background:rgba(255,255,255,.75);
  transform:translate3d(-50%,-50%,0);
}
.faq-icon::after{
  width:2px;height:12px;
}
details[open] .faq-icon::after{transform:translate3d(-50%,-50%,0) scaleY(0)}
.faq-body{padding:0 18px 16px}
.faq-body p{margin:0;color:var(--muted)}

/* CTA */
.cta-section{padding:60px 0}
.cta-floating-card{
  position:relative;
  border-radius:28px;
  padding:34px 28px;
  background:
    radial-gradient(700px 260px at 25% 30%, rgba(70,255,242,.18), rgba(0,0,0,0) 60%),
    radial-gradient(700px 260px at 78% 55%, rgba(180,90,255,.16), rgba(0,0,0,0) 62%),
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--glow);
  overflow:hidden;
  contain:layout;
}
.cta-content{max-width:78ch}
.cta-content p{color:var(--muted)}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  min-height:44px;
  transition:transform .2s ease;
}
.btn:hover{transform:translate3d(0,-2px,0)}
.btn-primary{background:var(--accent);color:var(--btnText);box-shadow:var(--glow)}
.btn-ghost{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color:var(--accent2);
}
.cta-wave{
  position:absolute;
  left:0;right:0;bottom:-1px;
  width:100%;
  height:90px;
  opacity:.9;
  pointer-events:none;
  contain:strict;
}

/* Risk */
.warning-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
  contain:layout;
}
.warning-card p{color:var(--muted)}
.warn-top{display:flex;align-items:center;gap:12px;margin-bottom:6px}
.warn-ic{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(204,176,61,.14);
  border:1px solid rgba(204,176,61,.30);
  box-shadow:var(--glow);
}
.risk-cta-card{
  margin-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--glow);
  contain:layout;
}
.risk-cta-text p{color:var(--muted);margin:0}

/* Security */
.cert-logos{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-start;
  contain:layout;
}
.cert-pill{
  display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:900;
}

/* Footer */
.site-footer{
  padding:60px var(--padX) 20px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.55);
}
.footer-top{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
  contain:layout;
}
.footer-brand-link{display:inline-flex;margin-bottom:10px}
.footer-note{color:var(--muted);max-width:70ch;margin:0}
.footer-links{display:flex;flex-direction:column;gap:10px;align-items:flex-end}
.footer-links a{opacity:.9;text-decoration:none;font-weight:900}
.footer-links a:hover{opacity:1}

.footer-disclaimer-wrap{margin-top:18px}
.footer-bottom{margin-top:14px;color:rgba(255,255,255,.72)}

/* ===== Mandatory popup CSS (do not edit semantics) ===== */
/* Cookie Consent - fixed bottom banner with BLACK text */
.cookie-consent { display:none; position:fixed; bottom:0; left:0; right:0; background:#ffffff; border-top:1px solid rgba(0,0,0,.1); padding:16px 24px; z-index:9999; box-shadow:0 -2px 10px rgba(0,0,0,.1); }
.cookie-content { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; color:#000000; }
.cookie-content p { color:#000000; margin:0; }
.cookie-content a { color:#0066cc !important; text-decoration:underline; font-weight:600; }
.cookie-content a:hover { color:#004499 !important; }
.cookie-btn { padding:10px 24px; background:var(--accent); color:#000; border:none; border-radius:4px; font-weight:700; cursor:pointer; }

/* Disclaimer Popup - Full width bottom banner with Read More */
.disclaimer-popup-overlay { position:fixed; bottom:0; left:0; width:100%; z-index:10000; pointer-events:none; opacity:0; visibility:hidden; transition:opacity 0.3s ease, visibility 0.3s ease; }
.disclaimer-popup-overlay.active { opacity:1; visibility:visible; }
.disclaimer-popup { background:#ffffff; color:#333; width:100%; box-shadow:0 -2px 15px rgba(0,0,0,.1); border-top:1px solid #e5e5e5; transform:translateY(100%); transition:transform 0.3s ease; pointer-events:auto; }
.disclaimer-popup-overlay.active .disclaimer-popup { transform:translateY(0); }
.disclaimer-popup-header { display:flex; justify-content:flex-start; align-items:center; padding:10px 30px; border-bottom:1px solid #eee; }
.disclaimer-popup-header h4 { margin:0; font-size:13px; font-weight:600; color:#1a1a1a; flex:1; }
.disclaimer-close-btn { background:none; border:none; font-size:18px; color:#999; cursor:pointer; padding:0; line-height:1; }
.disclaimer-close-btn:hover { color:#333; }
.disclaimer-popup-body { padding:12px 30px; }
.disclaimer-popup-row { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.disclaimer-popup-content { flex:1; }
.disclaimer-main-text { font-size:12px; line-height:1.5; color:#555; margin:0 0 6px 0; }
.disclaimer-main-text a,.disclaimer-popup-body a { color:#0066cc !important; text-decoration:underline; font-weight:600; }
.disclaimer-main-text a:hover,.disclaimer-popup-body a:hover { color:#004499 !important; }
.disclaimer-read-more { font-size:11px; color:#0066cc; text-decoration:underline; cursor:pointer; }
.disclaimer-read-more:hover { color:#004499; }
.disclaimer-more-text { max-height:0; overflow:hidden; transition:max-height 0.4s ease, margin 0.3s ease, padding 0.3s ease; margin-top:0; padding-top:0; border-top:none; }
.disclaimer-more-text.expanded { max-height:400px; margin-top:12px; padding-top:12px; border-top:1px solid #eee; overflow-y:auto; }
.popup-svg { width:100%; height:auto; max-width:540px; display:block; margin:0 auto; }
.popup-svg-mobile { display:none; }
.disclaimer-popup-footer { flex-shrink:0; }
.disclaimer-understand-btn { padding:10px 24px; background:var(--accent); color:#000; border:none; border-radius:4px; font-weight:600; cursor:pointer; font-size:13px; }
.disclaimer-understand-btn:hover { opacity:0.9; }
@media (max-width:768px) { .disclaimer-popup-header { padding:8px 16px; } .disclaimer-popup-body { padding:10px 16px; } .disclaimer-popup-row { flex-direction:column; gap:12px; } .disclaimer-popup-footer { width:100%; } .popup-svg { display:none; } .popup-svg-mobile { display:block; width:100%; height:auto; } }

/* Terms Popup - centered overlay */
.terms-popup-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:10000; align-items:center; justify-content:center; padding:20px; }
.terms-popup-content { background:#fff; color:#333; border-radius:8px; max-width:700px; width:100%; max-height:90vh; overflow:auto; position:relative; padding:20px; }
.terms-popup-content .close-btn { position:absolute; top:12px; right:12px; background:none; border:none; font-size:28px; color:#333; cursor:pointer; }
.terms-img { width:100%; height:auto; }

/* Desktop/Mobile visibility - CRITICAL: These rules must NOT be overridden! */
.desktop-only { display:block !important; }
.mobile-only { display:none !important; }
@media (max-width:640px) { .desktop-only { display:none !important; } .mobile-only { display:block !important; } }

/* Mobile hamburger toggle - CSS only, no JavaScript */
.mobile-toggle-input { display: none; }
.hamburger { display: none; background: transparent; border: 1px solid currentColor; color: inherit; padding: 10px 12px; cursor: pointer; opacity: 0.75; }
.hamburger:hover { opacity: 1; }
.mobile-menu { display: none; background: var(--bg, #111); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu a { display: block; padding: 12px 20px; color: var(--text, #fff); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:hover { background: rgba(255,255,255,.08); }
@media (max-width:768px) { .nav-links { display: none; } .hamburger { display: flex; align-items: center; justify-content: center; } .mobile-menu { display: none; } .mobile-toggle-input:checked ~ .mobile-menu { display: block; } }

/* Form disclaimer text - plain text with Read More link */
.form-disclaimer { font-size: 0.85rem; color: inherit; line-height: 1.4; margin-top: 0.5rem; }

/* ===== Responsive breakpoints (mandatory) ===== */
@media (max-width:1024px){
  :root{--padX:30px;--padY:60px}
  .hero-inner{gap:28px}
  .hero-form{max-width:400px}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .warning-grid{grid-template-columns:repeat(2,1fr)}
  .market-strip{grid-template-columns:1fr}
  .trust-row{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:20px}
  .footer-links{align-items:flex-start}
}

@media (max-width:768px){
  :root{--padX:16px;--padY:40px;--gap:16px}
  body{overflow-x:hidden}
  .site-header{backdrop-filter:none;-webkit-backdrop-filter:none;background:rgba(0,0,0,.92)}
  .hero-section{min-height:auto}
  .hero-inner{flex-direction:column;align-items:center;padding:0;gap:24px}
  .hero-left{text-align:center}
  .hero-kicker{justify-content:center}
  .hero-quicklist{justify-content:center}
  .hero-form{width:100%;max-width:520px}
  h1{font-size:1.8rem}
  .section-head{text-align:center}
  .features-grid,.steps-grid,.warning-grid{grid-template-columns:1fr !important}
  .footer-top{grid-template-columns:1fr;text-align:center}
  .footer-links{align-items:center}
  .cta-actions{flex-direction:column;align-items:center}
  .cta-actions .btn{width:100%;max-width:320px}
  .risk-cta-card{flex-direction:column;text-align:center;align-items:center;padding:16px}
  .orb{opacity:.3;filter:blur(40px)}
  .grid-glow{display:none}
  .form-grid{grid-template-columns:1fr}
}

@media (max-width:480px){
  h1{font-size:1.5rem}
  h2{font-size:1.3rem}
  h3{font-size:1.1rem}
  .hero-kicker{flex-direction:column;align-items:center}
  .kicker-pill{font-size:.85rem;padding:6px 12px}
  .form-shell{padding:16px;border-radius:20px}
  .quick-item{min-width:100%}
  .card{padding:16px;border-radius:18px}
  .submit-btn{height:52px;font-size:.95rem}
  .btn{padding:14px 18px}
  .mini-badge{justify-content:center}
}

@media (max-width:360px){
  h1{font-size:1.3rem}
  h2{font-size:1.15rem}
  .container{width:calc(100% - 20px)}
  .section{padding:24px 0}
  .form-shell{padding:12px}
  input{height:44px;padding:10px 12px;font-size:.95rem}
}

/* Landscape phones */
@media (max-height:500px) and (orientation:landscape){
  .hero-section{min-height:auto;padding:20px 0}
  .hero-inner{gap:16px}
}

/* Touch targets */
@media (pointer:coarse){
  .nav-links a,.mobile-menu a,.btn,.submit-btn,summary,input{min-height:44px;min-width:44px}
  input{font-size:16px}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .orb,.grid-glow,.hero-decor{display:none}
}

/* ====== NOTE: Do NOT add display rules for .footer-disclaimer images (critical switching handled above) ====== */
/* PHONE-PREFIX-FIX — guarantee the country-code prefix always shows with room (enforced) */
.phone-input-wrapper { display: flex !important; align-items: stretch; width: 100%; }
.phone-input-wrapper .phone-prefix, .phone-input-wrapper #phonePrefix, #phonePrefix {
  display: inline-flex !important; align-items: center; justify-content: center;
  white-space: nowrap; flex: 0 0 auto; min-width: 3.5em; padding: 0 10px; box-sizing: border-box;
}
.phone-input-wrapper #phone, .phone-input-wrapper input[type="tel"] {
  flex: 1 1 auto; min-width: 0; width: 100%;
}

/* PHONE-PREFIX-FIX:start — country-code prefix layout (enforced) */
/* :has(> #phone) targets the real wrapper regardless of its class and, thanks to the
   #phone id, wins specificity over the template's own wrapper rules. */
.phone-input-wrapper, *:has(> #phone), *:has(> .phone-prefix) {
  display: flex !important; align-items: baseline !important; box-sizing: border-box !important;
  width: 100% !important; max-width: 100% !important;
}
/* baseline align — the phone input often has asymmetric top padding (floating label
   / intl-tel-input), so centering leaves the prefix and number on different lines.
   Aligning text baselines puts "+972" and the number on the SAME line regardless. */
.phone-input-wrapper .phone-prefix, #phonePrefix, .phone-prefix {
  display: inline-flex !important; align-items: baseline !important; align-self: baseline !important;
  gap: 6px; white-space: nowrap !important; flex: 0 0 auto !important;
  padding: 0 8px 0 0; margin: 0 !important; font-size: inherit !important; line-height: normal !important;
}
*:has(> #phone) > #phone, .phone-input-wrapper #phone, .phone-input-wrapper input[type="tel"] {
  flex: 1 1 auto !important; min-width: 0 !important; width: 100% !important;
  align-self: baseline !important;
}
/* Symmetric vertical padding so the number sits centered — on the SAME line as the
   prefix / intl-tel-input flag. Floating-label templates give the input a big
   top-only padding, which drops the number below the (centered) flag. Verified on a
   live intl-tel-input site: this lines them up exactly. */
#phone, .iti__tel-input, .phone-input-wrapper input[type="tel"] {
  padding-top: 0.9em !important; padding-bottom: 0.9em !important;
}
/* PHONE-PREFIX-FIX:end */
