/* Glassly site — shared brand styles (landing + account portal). */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg0: #0e0b24;
  --bg1: #181034;
  --violet: #8b5cf6;
  --orchid: #d946ef;
  --pink: #f472b6;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --ink-faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
  min-height: 100vh;
  background: var(--bg0);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand, .amount { font-family: "Outfit", "Inter", sans-serif; }

a { color: inherit; }

/* ---------- ambient background ---------- */
.bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(109, 63, 184, 0.45), transparent 60%),
    radial-gradient(700px 500px at -10% 25%, rgba(79, 70, 229, 0.35), transparent 60%),
    radial-gradient(800px 600px at 60% 110%, rgba(184, 74, 143, 0.32), transparent 60%),
    linear-gradient(170deg, var(--bg0), var(--bg1) 55%, #150d2e);
}
.bg::after { /* fine speckle so the gradient doesn't band */
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1.1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.25));
}
.blob {
  position: fixed; z-index: -1; border-radius: 50%; filter: blur(90px);
  opacity: 0.5; pointer-events: none; will-change: transform;
}
.blob-1 { width: 480px; height: 480px; left: -160px; top: -120px;
  background: radial-gradient(circle, #6d3fb8, transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate; }
.blob-2 { width: 420px; height: 420px; right: -140px; top: 30%;
  background: radial-gradient(circle, #b84a8f, transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate; }
.blob-3 { width: 380px; height: 380px; left: 30%; bottom: -180px;
  background: radial-gradient(circle, #4f46e5, transparent 65%);
  animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { from { transform: translate3d(0,0,0) } to { transform: translate3d(60px, 40px, 0) } }
@keyframes drift2 { from { transform: translate3d(0,0,0) } to { transform: translate3d(-50px, 60px, 0) } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 11, 36, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(14, 11, 36, 0.8); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1060px; margin: 0 auto; }
.nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; font-size: 1.1rem; letter-spacing: 0.01em; }
.nav .brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 4px 14px rgba(109, 63, 184, 0.5); }
.nav .links { display: flex; align-items: center; gap: 22px; font-size: 0.88rem; }
.nav .links a { color: var(--ink-dim); text-decoration: none; transition: color 0.15s ease; }
.nav .links a:hover { color: #fff; }
.nav .links a.pill {
  color: #fff; padding: 8px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--orchid));
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.4);
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px 60px; }
.center { text-align: center; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #e9d5ff; background: rgba(139, 92, 246, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 10px var(--violet); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 700;
  margin-bottom: 18px;
}
.grad-text {
  background: linear-gradient(92deg, #fff 10%, #d8c7ff 55%, #f5b8e0 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lead { font-size: 1.06rem; color: var(--ink-dim); max-width: 470px; margin-bottom: 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust .chip {
  font-size: 0.78rem; color: var(--ink-dim);
  background: var(--glass); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer; text-decoration: none;
  border-radius: 14px; padding: 14px 26px;
  font-size: 0.95rem; font-weight: 600; font-family: inherit; color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-grad {
  background: linear-gradient(135deg, var(--violet), var(--orchid));
  box-shadow: 0 6px 26px rgba(139, 92, 246, 0.45);
}
.btn-grad:hover { box-shadow: 0 10px 34px rgba(139, 92, 246, 0.6); }
.btn-light { background: rgba(255, 255, 255, 0.95); color: #2b2470; }
.btn-ghost { background: var(--glass); border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn[disabled] { opacity: 0.45; cursor: default; transform: none; box-shadow: none; }
.btn-block { width: 100%; }

/* ---------- phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; perspective: 1200px; }
.phone {
  width: 272px; height: 552px; border-radius: 44px; padding: 16px 16px 20px;
  background: linear-gradient(165deg, rgba(46, 33, 92, 0.9), rgba(22, 15, 48, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 90px rgba(8, 5, 24, 0.7),
    0 0 0 6px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-8deg) rotateX(2deg);
  display: flex; flex-direction: column;
}
.phone-notch { width: 84px; height: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.14); margin: 2px auto 16px; }
.phone-brand { display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 20px; }
.phone-brand img { width: 22px; height: 22px; border-radius: 6px; }
.scan-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.scan-ring { position: relative; width: 158px; height: 158px; margin-bottom: 4px; }
.scan-ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--violet), var(--orchid), var(--pink), transparent 78%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  animation: spin 4.5s linear infinite;
}
.scan-ring::after {
  content: ""; position: absolute; inset: 14px; border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}
@keyframes spin { to { transform: rotate(360deg) } }
.scan-score { position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; }
.scan-score b { font-family: "Outfit", sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1;
  background: linear-gradient(120deg, #fff, #e9d5ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.scan-score span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.metric { margin-bottom: 12px; }
.metric .m-label { display: flex; justify-content: space-between; font-size: 0.72rem;
  color: var(--ink-dim); margin-bottom: 5px; }
.metric .m-bar { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.metric .m-fill { height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--orchid));
  animation: grow 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.metric:nth-child(3) .m-fill { animation-delay: 0.25s; background: linear-gradient(90deg, #38bdf8, var(--violet)); }
.metric:nth-child(4) .m-fill { animation-delay: 0.5s; background: linear-gradient(90deg, var(--orchid), var(--pink)); }
@keyframes grow { from { width: 0 } to { width: var(--w, 70%) } }
.phone-nav { margin-top: auto; display: flex; justify-content: space-around; align-items: center;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line);
  border-radius: 999px; padding: 11px 0; }
.phone-nav i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); }
.phone-nav i.on { background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 8px var(--violet); width: 22px; border-radius: 999px; }

/* ---------- sections ---------- */
section { padding: 56px 0; }
section h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); letter-spacing: -0.01em;
  text-align: center; margin-bottom: 10px; }
section .sub { text-align: center; color: var(--ink-dim); max-width: 560px;
  margin: 0 auto 38px; font-size: 0.98rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 44px rgba(8, 5, 24, 0.45);
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.89rem; color: var(--ink-dim); }
.icon-tile {
  width: 46px; height: 46px; border-radius: 14px; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(217, 70, 239, 0.22));
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { position: relative; padding: 26px 26px 26px 26px; }
.step .num {
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 12px;
}

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.price-card { text-align: center; position: relative; display: flex; flex-direction: column; }
.price-card .tier { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-faint); }
.price-card .amount { font-size: 2.6rem; font-weight: 700; margin: 10px 0 0;
  background: linear-gradient(120deg, #fff, #d8c7ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-card .period { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 18px; }
.price-card ul { list-style: none; font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 22px; }
.price-card ul li { padding: 5px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); }
.price-card ul li:last-child { border-bottom: none; }
.price-card .btn { margin-top: auto; }
.price-featured {
  background: linear-gradient(170deg, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.1));
  border-color: rgba(167, 110, 255, 0.55);
  box-shadow: 0 16px 50px rgba(109, 63, 184, 0.35);
}
.price-featured:hover { border-color: rgba(196, 150, 255, 0.8); }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--pink));
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(217, 70, 239, 0.5);
}

/* privacy banner */
.banner {
  text-align: center; padding: 40px 28px; border-radius: 26px;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.14), rgba(184, 74, 143, 0.12));
  border: 1px solid rgba(167, 110, 255, 0.3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.banner h3 { font-size: 1.3rem; margin-bottom: 8px; }
.banner p { color: var(--ink-dim); font-size: 0.92rem; max-width: 520px; margin: 0 auto; }

.note { font-size: 0.8rem; color: var(--ink-faint); text-align: center; max-width: 560px; margin: 22px auto 0; }
.note a { color: #d8c7ff; }

/* ---------- footer ---------- */
footer { text-align: center; padding: 36px 20px 46px; font-size: 0.84rem;
  color: var(--ink-faint); border-top: 1px solid rgba(255, 255, 255, 0.08); }
footer a { color: var(--ink-dim); text-decoration: none; margin: 0 10px; transition: color 0.15s ease; }
footer a:hover { color: #fff; }
footer .copyright { margin-top: 14px; color: rgba(255, 255, 255, 0.35); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- account portal ---------- */
.portal { max-width: 440px; margin: 48px auto 0; }
.portal .card { padding: 30px; }
.portal .card:hover { transform: none; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.78rem; color: var(--ink-dim); margin-bottom: 6px; }
.field input {
  width: 100%; border-radius: 13px; border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07); color: #fff;
  padding: 12px 14px; font-size: 0.95rem; font-family: inherit; outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus { border-color: var(--violet); background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2); }
.field input::placeholder { color: rgba(255, 255, 255, 0.35); }

.tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.tabs button {
  flex: 1; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.05);
  color: var(--ink-dim); border-radius: 13px; padding: 10px 0;
  font-size: 0.88rem; font-family: inherit; cursor: pointer;
  transition: all 0.15s ease;
}
.tabs button.active {
  background: linear-gradient(135deg, var(--violet), var(--orchid));
  border-color: transparent; color: #fff; font-weight: 600;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.msg { font-size: 0.84rem; border-radius: 13px; padding: 11px 14px; margin-bottom: 14px; }
.msg.err { background: rgba(244, 63, 94, 0.14); border: 1px solid rgba(244, 63, 94, 0.4); }
.msg.ok { background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.35); }

.plan-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.plan-badge.premium {
  background: linear-gradient(90deg, #e8b84b, var(--orchid)); border: none; font-weight: 700;
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.35);
}

.kv { font-size: 0.9rem; color: var(--ink-dim); margin: 5px 0; }
.kv b { color: #fff; }

.linklike { background: none; border: none; color: var(--ink-dim); font-size: 0.83rem;
  text-decoration: underline; cursor: pointer; font-family: inherit; transition: color 0.15s ease; }
.linklike:hover { color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { padding: 44px 0 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .cta-row, .trust { justify-content: center; }
  .phone { transform: none; }
}
@media (max-width: 560px) {
  .nav .links { gap: 12px; font-size: 0.8rem; }
  .nav .links a.pill { padding: 7px 13px; }
  section { padding: 40px 0; }
}

/* ---------- v2 additions ---------- */
/* shimmering hero gradient */
.shimmer {
  background-size: 220% auto;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center } }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; margin-top: 54px; }
.stat { text-align: center; padding: 22px 12px; border-radius: 20px;
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease; }
.stat:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.28); }
.stat b { display: block; font-family: "Outfit", sans-serif; font-weight: 700;
  font-size: 2.1rem; line-height: 1.1;
  background: linear-gradient(120deg, #fff, #d8c7ff 60%, #f5b8e0);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: 0.72rem; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.13em; }

/* FAQ accordion (native details/summary) */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--glass); border: 1px solid var(--line); border-radius: 18px;
  padding: 2px 22px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details[open] { border-color: rgba(167, 110, 255, 0.5); background: rgba(255, 255, 255, 0.08); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; font-weight: 600; font-size: 0.95rem; padding: 15px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.35rem; font-weight: 400; color: #d8c7ff;
  transition: transform 0.25s ease; flex-shrink: 0; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { color: var(--ink-dim); font-size: 0.89rem; padding: 0 0 18px; }

/* closing CTA banner */
.cta-banner {
  position: relative; overflow: hidden; text-align: center;
  padding: 58px 28px; border-radius: 30px;
  background: linear-gradient(135deg, rgba(109, 63, 184, 0.4), rgba(184, 74, 143, 0.3));
  border: 1px solid rgba(167, 110, 255, 0.45);
  box-shadow: 0 24px 70px rgba(109, 63, 184, 0.3);
}
.cta-banner::before { /* soft inner glow */
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  left: 50%; top: -260px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216, 199, 255, 0.35), transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--ink-dim); font-size: 0.97rem; max-width: 460px; margin: 0 auto 28px; }

/* multi-column footer */
.foot-grid {
  max-width: 1060px; margin: 0 auto; padding: 38px 22px 26px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; text-align: left;
}
.foot-brand .brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600;
  font-size: 1.05rem; color: #fff; text-decoration: none; margin-bottom: 12px; }
.foot-brand .brand img { width: 30px; height: 30px; border-radius: 8px; }
.foot-brand p { font-size: 0.84rem; color: var(--ink-faint); max-width: 300px; }
.foot-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-faint); margin-bottom: 12px; font-weight: 600; }
.foot-col a { display: block; font-size: 0.88rem; color: var(--ink-dim);
  text-decoration: none; margin: 7px 0; transition: color 0.15s ease; }
.foot-col a:hover { color: #fff; }
.foot-bottom { text-align: center; font-size: 0.78rem; color: rgba(255, 255, 255, 0.35);
  padding: 18px 20px 30px; border-top: 1px solid rgba(255, 255, 255, 0.07); }

@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .foot-brand p { margin: 0 auto; }
  .nav .links .hide-sm { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .blob, .scan-ring::before, .m-fill, .shimmer { animation: none !important; }
  .m-fill { width: var(--w, 70%); }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
