/* ==========================================================================
   Mahfel Huq & Co. — Modern glassmorphism theme
   Same content & functionality; premium dark glass UI with ambient glow.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* base */
  --bg-0: #070a15;
  --bg-1: #0b1024;
  --bg-2: #0d1430;

  /* accents */
  --gold: #e7c07a;
  --gold-2: #f6dca4;
  --gold-deep: #b98f45;
  --cyan: #57d3e2;
  --cyan-deep: #2ba7c4;

  /* text */
  --text: #d5ddee;
  --text-dim: #93a0bd;
  --text-bright: #f4f7fd;

  /* glass */
  --glass: rgba(255,255,255,0.045);
  --glass-2: rgba(255,255,255,0.07);
  --glass-3: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.10);
  --stroke-2: rgba(255,255,255,0.18);

  /* glow */
  --glow-gold: 0 0 44px rgba(231,192,122,0.30);
  --glow-cyan: 0 0 44px rgba(87,211,226,0.22);
  --shadow: 0 24px 70px rgba(0,0,0,0.55);
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.4);

  --r: 16px;
  --r-sm: 10px;
  --r-lg: 26px;
  --max: 1200px;

  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --body: "Inter", "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(1200px 800px at 15% -5%, rgba(87,211,226,0.10), transparent 55%),
    radial-gradient(1200px 900px at 100% 0%, rgba(231,192,122,0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-2); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }

h1,h2,h3,h4 { color: var(--text-bright); font-family: var(--display); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; color: var(--text); }

.section { padding: 104px 0; position: relative; }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--text-dim); }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
  position: relative; padding-left: 30px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

/* ---------- Ambient drifting orbs (behind everything) ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(231,192,122,.5), transparent 65%); animation: drift1 26s ease-in-out infinite; }
.orb-2 { width: 460px; height: 460px; top: 30%; right: -140px;
  background: radial-gradient(circle, rgba(87,211,226,.45), transparent 65%); animation: drift2 32s ease-in-out infinite; }
.orb-3 { width: 400px; height: 400px; bottom: -120px; left: 30%;
  background: radial-gradient(circle, rgba(150,120,255,.30), transparent 65%); animation: drift3 30s ease-in-out infinite; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(80px,60px) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-70px,50px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,-60px) scale(1.15)} }

/* ---------- Glass primitive ---------- */
.glass, .card, .site-header, .dropdown-menu, .stats, .img-slot, .img-ph,
form input, form textarea, form select, .info-icon, .post-card, .cta-band {
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent; transition: all .28s cubic-bezier(.2,.7,.3,1);
  text-align: center; letter-spacing: .01em; position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #26200f; box-shadow: var(--glow-gold), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(231,192,122,.55), inset 0 1px 0 rgba(255,255,255,.5); color:#26200f; }
.btn-outline {
  background: var(--glass-2); color: var(--text-bright); border-color: var(--stroke-2);
}
.btn-outline:hover { background: var(--glass-3); border-color: var(--gold); color: #fff; transform: translateY(-3px); box-shadow: var(--glow-gold); }
.btn-navy {
  background: var(--glass-2); color: var(--text-bright); border-color: var(--stroke-2);
}
.btn-navy:hover { background: rgba(87,211,226,.12); border-color: var(--cyan); color:#fff; transform: translateY(-3px); box-shadow: var(--glow-cyan); }

/* ---------- Top bar ---------- */
.topbar { font-size: .85rem; border-bottom: 1px solid var(--stroke); color: var(--text-dim); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 9px 26px; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--text-dim); }
.topbar a:hover { color: var(--gold); }
.topbar .tb-contact span { margin-right: 20px; }
.topbar .tb-social a { margin-left: 16px; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(10,14,28,0.55);
  border-bottom: 1px solid var(--stroke);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; padding-bottom: 15px; }

.brand { display: flex; align-items: center; gap: 14px; }
.logo-img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 0 26px rgba(231,192,122,.35);
}
.brand-text b { display: block; color: var(--text-bright); font-size: 1.2rem; font-family: var(--display); line-height: 1.1; letter-spacing: -0.01em; }
.brand-text small { color: var(--gold); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }

/* ---------- Nav ---------- */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--text-bright); cursor: pointer; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.main-nav li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 10px 15px; font-weight: 500; font-size: .93rem; color: var(--text);
  font-family: var(--body); border-radius: 8px; transition: all .2s ease;
}
.main-nav > ul > li > a:hover { color: var(--gold); background: var(--glass); }
.main-nav > ul > li.active > a { color: var(--gold); }

.dropdown > a::after { content: " \25be"; font-size: .8em; color: var(--text-dim); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(13,19,42,0.85); min-width: 250px;
  border: 1px solid var(--stroke-2); border-radius: var(--r); padding: 8px;
  box-shadow: var(--shadow); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 16px; font-size: .9rem; color: var(--text); border-radius: 8px; }
.dropdown-menu li a:hover { background: var(--glass-2); color: var(--gold); }

.nav-cta { margin-left: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 130px; text-align: center; overflow: hidden; }
.hero .placeholder-bg {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: 900px; height: 900px; max-width: 130vw; z-index: 0;
  background: radial-gradient(circle, rgba(231,192,122,.18), transparent 55%);
  filter: blur(30px); animation: pulse 9s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.7; transform:translate(-50%,-50%) scale(1)} 50%{opacity:1; transform:translate(-50%,-50%) scale(1.1)} }
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.9rem); margin-bottom: 22px; max-width: 960px; margin-inline: auto;
  background: linear-gradient(180deg, #ffffff 30%, #d9c7a0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(231,192,122,.15);
}
.hero p { color: var(--text-dim); font-size: 1.22rem; max-width: 730px; margin: 0 auto 34px; }
.hero .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* animated entrance for hero children */
.hero .eyebrow, .hero h1, .hero p, .hero .btn-row { animation: floatUp .9s cubic-bezier(.2,.7,.3,1) backwards; }
.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero .btn-row { animation-delay: .24s; }
@keyframes floatUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Page banner (interior) ---------- */
.page-banner { position: relative; padding: 96px 0 70px; text-align: center; overflow: hidden; }
.page-banner::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px; background: radial-gradient(circle, rgba(87,211,226,.14), transparent 60%);
  filter: blur(30px); z-index: 0;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 10px; }
.page-banner .crumbs { color: var(--text-dim); font-size: .92rem; }
.page-banner .crumbs a { color: var(--gold); }

/* ---------- Layout helpers ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r-lg);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%); opacity: 0; transition: opacity .35s ease;
}
.card::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10), transparent);
  transform: skewX(-18deg); transition: left .7s ease;
}
.card:hover { transform: translateY(-8px); border-color: var(--stroke-2); box-shadow: var(--shadow), var(--glow-gold); }
.card:hover::before { opacity: 1; }
.card:hover::after { left: 130%; }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(231,192,122,.22), rgba(87,211,226,.14));
  border: 1px solid var(--stroke-2); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: var(--glow-gold);
}
.card h3 { margin-bottom: 12px; color: var(--text-bright); }
.card p { color: var(--text-dim); font-size: .96rem; margin-bottom: 18px; }
.card a.more { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--gold); }
.card a.more:hover { color: var(--gold-2); }

/* ---------- Stats ---------- */
.stats {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r-lg);
  max-width: var(--max); margin-inline: auto; padding: 44px 26px; box-shadow: var(--shadow);
}
.stats .grid-4 { text-align: center; gap: 20px; }
.stat b {
  display: block; font-family: var(--display); font-size: 2.9rem; font-weight: 700;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: var(--text-dim); font-size: .95rem; }

/* ---------- Lists ---------- */
.check-list { list-style: none; }
.check-list li { padding: 9px 0 9px 34px; position: relative; color: var(--text); }
.check-list li::before {
  content: "\2714"; position: absolute; left: 0; top: 9px; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
  color: var(--gold); background: var(--glass-2); border: 1px solid var(--stroke-2); border-radius: 6px;
}

/* ---------- Image slots ---------- */
.img-slot {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--stroke);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.img-slot::after {
  content: "Upload image:\A" attr(data-file); white-space: pre; text-align: center;
  color: var(--text-dim); font-size: .85rem; letter-spacing: .04em; padding: 20px; line-height: 1.8;
}
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-slot.tall { min-height: 420px; }
.img-slot.short { min-height: 170px; }

.img-ph {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r-lg);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: .9rem; text-align: center; padding: 20px;
}
.img-ph.tall { min-height: 420px; }
.img-ph.short { min-height: 170px; }

/* ---------- Contact ---------- */
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--glass-2); border: 1px solid var(--stroke-2); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--glow-gold);
}
.info-row b { display: block; color: var(--text-bright); font-family: var(--display); }
.info-row span { color: var(--text-dim); font-size: .95rem; }

form .field { margin-bottom: 18px; }
form label { display: block; font-family: var(--display); font-weight: 500; font-size: .9rem; margin-bottom: 8px; color: var(--text-bright); }
form input, form textarea, form select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--stroke-2); border-radius: var(--r-sm);
  font-family: inherit; font-size: .95rem; background: var(--glass); color: var(--text-bright);
}
form input::placeholder, form textarea::placeholder { color: var(--text-dim); }
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--gold); box-shadow: var(--glow-gold); background: var(--glass-2);
}
.demo-note {
  background: rgba(87,211,226,.10); border: 1px solid rgba(87,211,226,.35); color: #9fe8f2;
  padding: 13px 16px; border-radius: var(--r-sm); font-size: .9rem; margin-top: 14px; font-weight: 500;
}

/* ---------- News ---------- */
.post-card {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease; display: block;
}
.post-card:hover { transform: translateY(-8px); border-color: var(--stroke-2); box-shadow: var(--shadow), var(--glow-cyan); }
.post-card .img-slot, .post-card .img-ph { border: none; border-radius: 0; min-height: 200px; box-shadow: none; }
.post-card .body { padding: 26px; }
.post-card .meta { font-family: var(--display); font-size: .78rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.post-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.post-card p { color: var(--text-dim); font-size: .92rem; }

.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { margin: 34px 0 14px; }
.article-body p { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; text-align: center; padding: 70px 0; margin: 50px 26px 60px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(231,192,122,.14), rgba(87,211,226,.10));
  border: 1px solid var(--stroke-2); overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(231,192,122,.20), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-dim); margin-bottom: 26px; }
.cta-wrap { padding: 60px 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--stroke); padding: 66px 0 0; margin-top: 20px; background: rgba(7,10,21,0.5); }
.site-footer h4 { color: var(--text-bright); font-size: 1rem; margin-bottom: 18px; }
.site-footer a { color: var(--text-dim); font-size: .92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .grid-4 { gap: 42px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 11px; }
.footer-brand .logo-img { width: 52px; height: 52px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; }
.affiliation-note { font-size: .8rem; color: var(--text-dim); line-height: 1.7; margin-top: 18px; opacity: .8; }
.footer-bottom { border-top: 1px solid var(--stroke); margin-top: 46px; padding: 22px 0; font-size: .85rem; text-align: center; color: var(--text-dim); }

/* ---------- Scroll reveal (added via JS; safe without JS) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,19,42,0.92); border-bottom: 1px solid var(--stroke-2); display: none;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0; }
  .main-nav > ul > li > a { padding: 13px 26px; border-radius: 0; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--stroke-2); margin: 0 26px 8px; background: transparent; }
  .nav-cta { margin: 8px 26px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .tb-contact span { display: inline-block; margin: 2px 10px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .orb, .hero .placeholder-bg { animation: none; }
  .hero .eyebrow, .hero h1, .hero p, .hero .btn-row { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* ---------- On-brand graphic panels (replace photos) ---------- */
.graphic {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--glass); border: 1px solid var(--stroke);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.graphic.tall { min-height: 440px; }
.graphic svg { width: 82%; height: auto; max-height: 90%; display: block; }
.graphic.cover { min-height: 200px; }
.graphic.cover svg { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; }
.post-card .graphic { min-height: 200px; border: none; border-radius: 0; box-shadow: none; }

/* graphic motion */
@keyframes gspin { to { transform: rotate(360deg); } }
@keyframes gpulse { 0%,100% { opacity: .95; transform: scale(1); } 50% { opacity: .35; transform: scale(1.18); } }
.graphic .spin { animation: gspin 16s linear infinite; transform-box: fill-box; transform-origin: center; }
.graphic .spin-slow { animation: gspin 34s linear infinite; transform-box: fill-box; transform-origin: center; }
.graphic .pulse { animation: gpulse 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: reduce) {
  .graphic .spin, .graphic .spin-slow, .graphic .pulse { animation: none; }
}

/* ---------- Client verification ---------- */
.verify-card {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.verify-note { margin-top: 18px; font-size: .85rem; color: var(--text-dim); text-align: center; }
#verify-result:empty { display: none; }
.verify-box {
  margin-top: 22px; padding: 22px; border-radius: var(--r); text-align: center;
  border: 1px solid var(--stroke-2); animation: floatUp .4s ease backwards;
}
.verify-box h3 { margin-bottom: 8px; }
.verify-box p { font-size: .95rem; margin-bottom: 8px; }
.verify-badge {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700;
}
.verify-checking { color: var(--text-dim); }
.verify-warn { background: rgba(231,192,122,.10); border-color: rgba(231,192,122,.4); color: var(--gold-2); }
.verify-yes { background: rgba(64,200,120,.10); border-color: rgba(64,200,120,.45); }
.verify-yes h3 { color: #7ee0a0; }
.verify-yes .verify-badge { background: rgba(64,200,120,.18); color: #7ee0a0; border: 1px solid rgba(64,200,120,.5); }
.verify-no { background: rgba(240,110,110,.09); border-color: rgba(240,110,110,.4); }
.verify-no h3 { color: #f2a3a3; }
.verify-no .verify-badge { background: rgba(240,110,110,.16); color: #f2a3a3; border: 1px solid rgba(240,110,110,.5); }
.verify-beta { font-size: .82rem !important; color: var(--text-dim); margin-top: 12px; margin-bottom: 0 !important; }
.verify-beta a, .verify-note a { color: var(--gold); }
