:root {
  --z-bg: #F7F3EA;
  --z-ink: #101828;
  --z-muted: #667085;
  --z-card: rgba(255,255,255,0.72);
  --z-card-solid: #FFFFFF;
  --z-border: rgba(17,24,39,0.10);
  --z-orange: var(--primary, #234B35);
  --z-orange-2: var(--primary-hover, #2E5F47);
  --z-green: var(--success, #22C55E);
  --z-cyan: var(--ai-accent, #00C2FF);
  --z-shadow: 0 24px 80px rgba(16,24,40,0.12);
  --z-glow: 0 0 46px rgba(35,75,53,0.24);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; color: var(--z-ink); background: var(--z-bg); overflow-x: hidden; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; background: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.public-page { position: relative; }

/* Load-in reveal (hero copy) with stagger utilities */
.reveal { animation: revealUp .8s cubic-bezier(.22,.61,.36,1) both; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .28s; } .d4 { animation-delay: .42s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll-triggered rise-in (login intro + card). The .js-anims root class is
   only added when IntersectionObserver exists, so without JS everything
   stays visible. */
.rise { transition: opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1); }
.js-anims .rise:not(.in-view) { opacity: 0; transform: translateY(34px) scale(.975); }
.login-card.rise { transition-delay: .08s; }

.brand-mark { display: inline-flex; width: fit-content; filter: drop-shadow(0 0 28px rgba(57,255,20,.35)); } /* logo glow: brand-energy green, used sparingly per spec */
.brand-mark-img { height: 50px; width: auto; object-fit: contain; }
@media (min-width: 768px) {
  .brand-mark-img { height: 58px; }
}
@media (min-width: 1024px) {
  .brand-mark-img { height: 70px; }
}
.eyebrow { color: var(--z-cyan); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; text-wrap: balance; }
.accent { color: var(--z-orange); }

/* ══════════════════════════════════════════
   AMBIENT FX — glow orbs, light trails, particles.
   Transform/opacity animations only (compositor-friendly on low-end Android).
══════════════════════════════════════════ */
.hero-fx, .login-fx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-a { width: 440px; height: 440px; top: -140px; left: -140px; background: radial-gradient(circle, rgba(35,75,53,.20), rgba(35,75,53,0) 68%); animation: orbDrift 24s ease-in-out infinite alternate; }
.orb-b { width: 380px; height: 380px; bottom: 4%; right: -120px; background: radial-gradient(circle, rgba(0,194,255,.16), rgba(0,194,255,0) 68%); animation: orbDrift 28s ease-in-out infinite alternate-reverse; }
.orb-c { width: 400px; height: 400px; top: -120px; right: -130px; background: radial-gradient(circle, rgba(35,75,53,.16), rgba(35,75,53,0) 70%); animation: orbDrift 26s ease-in-out infinite alternate; }
.orb-d { width: 360px; height: 360px; bottom: -100px; left: -120px; background: radial-gradient(circle, rgba(0,194,255,.14), rgba(0,194,255,0) 70%); animation: orbDrift 30s ease-in-out infinite alternate-reverse; }
@keyframes orbDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(46px, 34px) scale(1.14); } }

.light-trail { position: absolute; left: -25%; width: 150%; height: 170px; border-radius: 999px; pointer-events: none; }
.trail-orange { --rot: -9deg; top: 12%; background: radial-gradient(ellipse 50% 50% at center, rgba(35,75,53,.10), rgba(35,75,53,0) 72%); animation: trailDrift 17s ease-in-out infinite alternate; } /* class name kept for HTML/JS compat; color is now brand green */
.trail-blue { --rot: 7deg; top: 64%; background: radial-gradient(ellipse 50% 50% at center, rgba(0,194,255,.09), rgba(0,194,255,0) 72%); animation: trailDrift 23s ease-in-out infinite alternate-reverse; }
@keyframes trailDrift { from { transform: rotate(var(--rot)) translateX(-4%); } to { transform: rotate(var(--rot)) translateX(4%); } }

.particle-field { position: absolute; inset: 0; pointer-events: none; }
.particle-field span { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: rgba(57,255,20,.5); box-shadow: 0 0 20px rgba(57,255,20,.75); animation: floatParticle 9s ease-in-out infinite; } /* small sparkle highlight: brand-energy green */
.particle-field span:nth-child(1){ left: 8%; top: 14%; } .particle-field span:nth-child(2){ left: 84%; top: 8%; animation-delay: 1s; background: rgba(0,194,255,.5); } .particle-field span:nth-child(3){ left: 92%; top: 36%; animation-delay: 2s; } .particle-field span:nth-child(4){ left: 10%; top: 52%; animation-delay: 3s; background: rgba(34,197,94,.5); } .particle-field span:nth-child(5){ left: 72%; top: 62%; animation-delay: 4s; } .particle-field span:nth-child(6){ left: 28%; top: 30%; animation-delay: 5s; background: rgba(0,194,255,.5); } .particle-field span:nth-child(7){ left: 50%; top: 76%; animation-delay: 6.2s; }
@keyframes floatParticle { 0%,100% { transform: translateY(0); opacity: .3; } 50% { transform: translateY(-30px); opacity: .85; } }

/* ══════════════════════════════════════════
   HERO — the branding image is its own block, never behind the text.
   Mobile: image on top (~54vh) dissolving into the page background,
   copy below it. Desktop (≥960px): copy on top of the left column,
   image filling the space beneath; login column on the right.
══════════════════════════════════════════ */
.hero-shell { position: relative; display: flex; flex-direction: column; min-height: 100vh; }

.hero-left { position: relative; display: flex; flex-direction: column; min-height: 100vh; overflow: hidden; }

.hero-visual {
  position: relative;
  z-index: 1;
  height: 54vh;
  min-height: 340px;
  background: url('../../assets/loginbg.png') no-repeat center 70% / cover;
  animation: revealUp .9s cubic-bezier(.22,.61,.36,1) both, heroFloat 9s ease-in-out 1.1s infinite;
}
/* Soft dissolve into the page background on every edge so the artwork
   blends with the section instead of sitting as a hard-edged photo. */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--z-bg) 0%, rgba(247,243,234,0) 14%, rgba(247,243,234,0) 76%, var(--z-bg) 99%),
    linear-gradient(90deg, rgba(247,243,234,.85) 0%, rgba(247,243,234,0) 16%, rgba(247,243,234,0) 84%, rgba(247,243,234,.85) 100%);
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 4px 26px 96px; }
.hero-copy h1 { max-width: 640px; font-size: clamp(40px, 9.5vw, 72px); line-height: 1.0; letter-spacing: -0.03em; font-weight: 950; }
.hero-copy h1 span { display: block; }
.hero-subcopy { max-width: 480px; color: var(--z-ink); font-size: clamp(15.5px, 1.6vw, 18px); line-height: 1.6; font-weight: 500; }

/* Mobile scroll cue — bouncing chevron with a soft pulsing ring */
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--z-ink); background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.75); backdrop-filter: blur(10px); animation: bounceCue 2.2s ease-in-out infinite; }
.scroll-cue svg { width: 18px; height: 18px; }
.scroll-cue::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 1.5px solid rgba(35,75,53,.5); animation: cueRing 2.6s ease-out infinite; }
@keyframes bounceCue { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@keyframes cueRing { 0% { transform: scale(1); opacity: .7; } 70%,100% { transform: scale(1.55); opacity: 0; } }

/* ══════════════════════════════════════════
   LOGIN SECTION
══════════════════════════════════════════ */
.login-section { position: relative; z-index: 1; padding: 24px 20px 84px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
@keyframes glowPulse { 0%,100% { opacity: .3; transform: scale(.99); } 50% { opacity: .55; transform: scale(1.02); } }

/* ══════════════════════════════════════════
   LOGIN CARD — glassmorphism with an animated orange↔blue gradient rim
══════════════════════════════════════════ */
.login-card { position: relative; z-index: 1; width: min(430px, 100%); border-radius: var(--radius-xl); padding: 32px 28px 26px; overflow: hidden; background: var(--z-card); box-shadow: var(--z-shadow), 0 0 60px rgba(35,75,53,.09), 0 0 90px rgba(0,194,255,.06); backdrop-filter: blur(14px); scroll-margin-top: 24px; }
/* Animated gradient border: gradient layer masked down to a 1.6px rim so
   the glass interior stays untouched. */
.login-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.6px;
  background: linear-gradient(115deg, rgba(35,75,53,.9), rgba(34,197,94,.3) 28%, rgba(0,194,255,.85) 52%, rgba(34,197,94,.3) 76%, rgba(35,75,53,.9));
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderFlow 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 3;
}
@keyframes borderFlow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

/* Role selector — sliding pill indicator via :has(), no JS changes needed
   (login.js only ever toggles .active on the individual tab buttons). */
.role-selector { position: relative; display: flex; gap: 6px; padding: 5px; border-radius: 999px; background: rgba(17,24,39,0.05); margin-bottom: 20px; }
.role-selector::before { content: ""; position: absolute; top: 5px; left: 5px; width: calc(50% - 8px); height: calc(100% - 10px); border-radius: 999px; background: var(--z-card-solid); box-shadow: 0 6px 18px rgba(16,24,40,.12); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.role-selector:has(#roleTabExpert.active)::before { transform: translateX(calc(100% + 6px)); }
.role-tab { position: relative; z-index: 1; flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 12px; border-radius: 999px; font-size: 13px; font-weight: 800; color: var(--z-muted); transition: color .2s ease; }
.role-tab-icon { display: inline-flex; width: 16px; height: 16px; }
.role-tab-icon svg { width: 100%; height: 100%; }
.role-tab.active { color: var(--z-ink); }

.login-card-header { text-align: center; margin-bottom: 20px; display: flex; flex-direction: column; gap: 4px; }
.login-card-title { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.login-card-sub { color: var(--z-muted); font-size: 13.5px; }

.login-form { display: flex; flex-direction: column; gap: 12px; }
.lf-input-group { position: relative; display: flex; align-items: center; border-radius: 14px; border: 1px solid var(--z-border); background: rgba(255,255,255,.65); transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.lf-input-group:focus-within { border-color: rgba(35,75,53,.5); background: rgba(255,255,255,.9); box-shadow: 0 0 0 4px rgba(35,75,53,.13), 0 6px 22px rgba(35,75,53,.12); }
.lf-input-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 46px; color: var(--z-muted); transition: color .25s ease; }
.lf-input-group:focus-within .lf-input-icon { color: var(--z-orange); }
.lf-input-icon svg { width: 17px; height: 17px; }
.lf-input { flex: 1; min-width: 0; height: 46px; border: 0; background: transparent; padding: 0 14px 0 0; font-size: 14.5px; color: var(--z-ink); outline: none; }
.lf-input::placeholder { color: rgba(102,112,133,.7); }
.lf-pw-toggle { flex-shrink: 0; width: 40px; height: 46px; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--z-muted); }
.lf-pw-toggle:hover { color: var(--z-ink); }

.lf-row-between { display: flex; align-items: center; justify-content: flex-end; }
.lf-forgot { font-size: 12.5px; font-weight: 700; color: var(--z-cyan); }
.lf-forgot:hover { text-decoration: underline; }
.lf-remember-row { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.lf-remember-cb { width: 16px; height: 16px; accent-color: var(--z-orange); }
.lf-remember-label { font-size: 13px; color: var(--z-muted); font-weight: 600; }

/* Sign In button — animated gradient sweep + breathing glow underlay.
   The glow lives on a sibling span (not a pseudo-element of the button)
   so the button is free to transform on hover without re-stacking it. */
.btn-login-wrap { position: relative; margin-top: 4px; }
.btn-login-glow { position: absolute; inset: 4px -3px -5px; border-radius: 16px; background: linear-gradient(120deg, var(--z-orange), var(--z-cyan) 55%, var(--z-orange-2)); filter: blur(14px); opacity: .32; animation: glowPulse 3.4s ease-in-out infinite; pointer-events: none; }
.btn-login { position: relative; width: 100%; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(120deg, var(--z-orange), var(--z-orange-2), var(--z-orange)); background-size: 220% 100%; color: #101010; font-size: 15px; font-weight: 850; box-shadow: var(--z-glow); transition: transform .2s ease, opacity .2s ease, background-position .5s ease; animation: btnSheen 6s ease-in-out infinite alternate; }
@keyframes btnSheen { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.btn-login:hover { transform: translateY(-2px); }
.btn-login:disabled { opacity: .8; cursor: default; transform: none; }
#loginBtnText { transition: opacity .15s ease; }
/* login.js toggles #loginBtnSpinner's OWN .active class (not a wrapper
   class) and #loginBtnText's opacity via inline style — hidden by default,
   absolutely positioned so it overlaps the (opacity-faded) label instead
   of shifting layout. */
.btn-spinner { display: none; position: absolute; align-items: center; }
.btn-spinner.active { display: inline-flex; }
.spin { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes shakeError { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }
.lf-input-group.input-error { border-color: rgba(239,68,68,.6); animation: shakeError .4s ease; }

.lf-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0 16px; color: var(--z-muted); font-size: 12px; font-weight: 700; }
.lf-divider::before, .lf-divider::after { content: ""; flex: 1; height: 1px; background: var(--z-border); }

.btn-google { width: 100%; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: rgba(255,255,255,.8); border: 1px solid var(--z-border); font-size: 14px; font-weight: 750; color: var(--z-ink); transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease; }
.btn-google:hover { transform: translateY(-1px); border-color: rgba(0,194,255,.4); box-shadow: 0 10px 26px rgba(0,194,255,.14); }

.login-card-footer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-size: 13px; }
.lf-create-link { color: var(--z-orange); font-weight: 800; }
.lf-create-link:hover { text-decoration: underline; }
.lf-expert-hint { margin-top: 16px; text-align: center; font-size: 12.5px; color: var(--z-muted); }
.lf-expert-link { background: transparent; color: var(--z-cyan); font-weight: 800; }
.lf-expert-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   LOGIN OVERLAY (post-auth loading state)
══════════════════════════════════════════ */
.login-overlay { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; background: rgba(247,243,234,.92); backdrop-filter: blur(14px); }
.login-overlay.active { display: flex; }
.overlay-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.overlay-logo-wrap { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.overlay-ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid transparent; }
.overlay-ring-a { border-top-color: var(--z-orange); border-right-color: var(--z-orange); animation: spin 1.1s linear infinite; }
.overlay-ring-b { inset: 10px; border-bottom-color: var(--z-cyan); border-left-color: var(--z-cyan); animation: spin 1.6s linear infinite reverse; }
.overlay-logo-text { height: 40px; width: auto; object-fit: contain; }
.overlay-bars { display: flex; align-items: flex-end; gap: 5px; height: 22px; }
.overlay-bar { width: 5px; border-radius: 3px; background: linear-gradient(180deg, var(--z-orange), var(--z-cyan)); animation: barPulse 1s ease-in-out infinite; }
.overlay-bar:nth-child(1){ animation-delay: 0s; } .overlay-bar:nth-child(2){ animation-delay: .1s; } .overlay-bar:nth-child(3){ animation-delay: .2s; } .overlay-bar:nth-child(4){ animation-delay: .3s; } .overlay-bar:nth-child(5){ animation-delay: .4s; }
@keyframes barPulse { 0%,100% { height: 6px; } 50% { height: 22px; } }
.overlay-msg { color: var(--z-muted); font-size: 14px; font-weight: 700; }

/* ══════════════════════════════════════════
   GOOGLE ROLE-SELECT MODAL
══════════════════════════════════════════ */
.grm-backdrop { position: fixed; inset: 0; z-index: 600; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(16,24,40,.5); backdrop-filter: blur(6px); }
.grm-backdrop.active { display: flex; }
.grm-card { width: min(420px, 100%); max-height: 90vh; overflow-y: auto; border-radius: var(--radius-xl); padding: 28px; background: var(--z-card-solid); box-shadow: var(--z-shadow); }
.grm-user-strip { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(17,24,39,.04); margin-bottom: 18px; }
.grm-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--z-border); }
.grm-user-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.grm-user-name { font-size: 13.5px; font-weight: 800; color: var(--z-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.grm-user-email { font-size: 12px; color: var(--z-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.grm-google-badge { flex-shrink: 0; font-size: 11px; font-weight: 800; color: var(--z-cyan); background: rgba(0,194,255,.12); padding: 4px 10px; border-radius: 999px; }
.grm-title { font-size: 20px; font-weight: 900; text-align: center; letter-spacing: -0.02em; }
.grm-sub { text-align: center; color: var(--z-muted); font-size: 13.5px; margin-top: 4px; margin-bottom: 20px; }
.grm-options { display: flex; flex-direction: column; gap: 10px; }
.grm-option { width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 16px; border: 2px solid var(--z-border); background: rgba(255,255,255,.6); text-align: left; transition: border-color .2s ease, background .2s ease; }
.grm-option:hover { border-color: rgba(35,75,53,.35); }
.grm-option.active { border-color: var(--z-orange); background: rgba(35,75,53,.08); }
.grm-option-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(35,75,53,.16), rgba(0,194,255,.14)); color: var(--z-orange); }
.grm-option-icon svg { width: 20px; height: 20px; }
.grm-option-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.grm-option-name { font-size: 14.5px; color: var(--z-ink); }
.grm-option-desc { font-size: 12px; color: var(--z-muted); line-height: 1.4; }
.grm-option-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--z-border); opacity: 0; transform: scale(.6); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.grm-option.active .grm-option-check { opacity: 1; transform: scale(1); background: var(--z-orange); }
.grm-confirm-btn { width: 100%; height: 50px; margin-top: 20px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--z-orange), var(--z-orange-2)); color: #101010; font-size: 15px; font-weight: 850; box-shadow: var(--z-glow); transition: opacity .2s ease; }
.grm-confirm-btn:disabled { opacity: .45; cursor: default; }
/* login.js toggles this via inline style.display ('flex'/'none'), not a
   class — this is just the default (hidden) state. */
.grm-confirm-spinner { display: none; align-items: center; }
.grm-under-review { text-align: center; padding: 10px 4px 0; }
.grm-review-icon { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; background: rgba(35,75,53,.12); color: var(--z-orange); }
.grm-review-icon svg { width: 22px; height: 22px; }
.grm-review-title { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.grm-review-sub { font-size: 13.5px; color: var(--z-ink); margin-bottom: 6px; }
.grm-review-note { font-size: 12.5px; color: var(--z-muted); line-height: 1.6; margin-bottom: 18px; }
.grm-review-home-btn { width: 100%; height: 46px; border-radius: 14px; background: rgba(17,24,39,.06); color: var(--z-ink); font-weight: 800; font-size: 14px; }
.grm-review-home-btn:hover { background: rgba(17,24,39,.1); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (min-width: 960px) {
  .hero-shell { flex-direction: row; align-items: stretch; }
  .hero-left { flex: 1.05; min-height: 100vh; }
  /* Desktop: copy first (top of the column), artwork fills the rest below */
  .hero-copy { order: 1; padding: 88px 48px 20px 56px; }
  .hero-visual { order: 2; flex: 1; height: auto; min-height: 320px; background-position: center 72%; margin: 0 12px; }
  .scroll-cue { display: none; }
  .login-section { flex: 0.95; min-height: 100vh; padding: 40px; }
  @media (hover: hover) {
    .login-card { transition: box-shadow .45s ease; }
    .login-card:hover { box-shadow: 0 30px 90px rgba(16,24,40,.16), 0 0 70px rgba(35,75,53,.14), 0 0 100px rgba(0,194,255,.09); }
  }
}
@media (max-width: 640px) {
  .hero-copy { padding: 0 22px 92px; }
  .login-card { padding: 26px 20px 22px; }
  .grm-card { padding: 22px; }
}

/* Respect users who opt out of motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
