/* =========================================================
   MAGIK MIRROR AI — Global Stylesheet
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  --bg-primary:      #06060C;
  --bg-secondary:    #0D0D1C;
  --bg-card:         #111128;
  --bg-card-hover:   #16163A;
  --border-subtle:   #1E1E40;
  --border-glow:     #3A1A50;

  --accent-silver:   #C0C0C0;

  --gradient-gold: linear-gradient(
    135deg,
    #FFF3B0 0%,
    #FFD166 25%,
    #D4A020 52%,
    #FFD166 76%,
    #FFF0A0 100%
  );
  --accent-teal:     #00D4CC;
  --accent-purple:   #9B6FD4;
  --accent-green:    #7FD44A;
  --accent-gold:     #FFD166;

  --text-primary:    #FFFFFF;
  --text-secondary:  #CCCCCC;
  --text-muted:      #7A7090;

  --gradient-holo: linear-gradient(
    135deg,
    #F2F8FF 0%,
    #C0D8F0 22%,
    #84B4D0 44%,
    #4A82A8 58%,
    #90BCD8 76%,
    #C8A850 91%,
    #F0F6FF 100%
  );

  --gradient-holo-alt: linear-gradient(
    90deg,
    #F2F8FF,
    #84B4D0,
    #4A82A8,
    #C8A850,
    #C0D8F0
  );

  --nav-height: 72px;
  --max-width:  1180px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow-silver: 0 0 30px rgba(192, 192, 192, 0.25);
  --shadow-glow-teal:   0 0 30px rgba(0, 212, 204, 0.25);
  --shadow-glow-purple: 0 0 30px rgba(155, 111, 212, 0.25);

  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.holo-text {
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-holo);
  border-radius: 2px;
  margin: 20px 0 32px;
}

/* --- Holo Border Card --- */
.holo-border {
  position: relative;
  border-radius: var(--radius-md);
}
.holo-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: var(--gradient-holo);
  z-index: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.holo-border > * { position: relative; z-index: 1; }
.holo-border:hover::before { opacity: 1; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(6, 6, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(6, 6, 12, 0.97);
  border-bottom-color: var(--border-glow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(192, 192, 192, 0.35);
  box-shadow: 0 0 14px rgba(132, 180, 208, 0.25);
}

.nav__brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.nav__brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gradient-holo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--gradient-holo);
  color: #06060C;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(192, 192, 192, 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent-silver); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent-silver); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(6, 6, 12, 0.98);
  border-bottom: 1px solid var(--border-glow);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  backdrop-filter: blur(20px);
}

.nav__mobile.open { display: flex; }

.nav__mobile .nav__link {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__mobile .nav__cta { text-align: center; margin-top: 8px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 14px 32px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-holo);
  color: #06060C;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 192, 192, 0.3);
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-holo);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn-outline:hover::before { opacity: 0.12; }
.btn-outline:hover {
  border-color: var(--accent-purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
  color: var(--text-primary);
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 111, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__label { margin-bottom: 16px; }

.page-hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.page-hero__body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.card__title {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.card__body {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =========================================================
   FEATURE LIST
   ========================================================= */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gradient-holo);
  margin-top: 8px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-primary);
}

/* =========================================================
   QUOTE BAND
   ========================================================= */
.quote-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '\201C';
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 14rem;
  color: rgba(155, 111, 212, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.quote-band__text {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 740px;
  margin: 0 auto 20px;
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-band__attr {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border-glow);
  margin-bottom: 16px;
}

.footer__brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--text-primary); }

.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contact-item span { color: var(--text-muted); flex-shrink: 0; }

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}

.footer__social:hover { color: var(--accent-silver); }

.footer__social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color var(--transition), background var(--transition);
}

.footer__social:hover .footer__social-icon {
  border-color: var(--accent-silver);
  background: rgba(192, 192, 192, 0.08);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__bottom-link:hover { color: var(--text-secondary); }

/* =========================================================
   FORMS
   ========================================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 0.975rem;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(155, 111, 212, 0.15);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* Honeypot — invisible to people, irresistible to bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Inline validation + status messaging */
.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #FF8080;
  box-shadow: 0 0 0 3px rgba(255, 128, 128, 0.14);
}

.form-status {
  font-size: 0.85rem;
  line-height: 1.55;
  margin-top: 14px;
  min-height: 1.2em;
  color: var(--text-muted);
}

.form-status.is-success { color: var(--accent-green); }
.form-status.is-error   { color: #FF8E8E; }

/* Disabled / sending state for any submit button */
.btn[disabled] { cursor: progress; }

/* =========================================================
   INLINE WAITLIST FORM  (paywall cards)
   ========================================================= */
.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-form__input {
  flex: 1 1 220px;
  min-width: 0;
  text-align: center;
}

.waitlist-form__btn { flex: 0 0 auto; }

.waitlist-form .form-status {
  flex: 1 0 100%;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 520px) {
  .waitlist-form__input,
  .waitlist-form__btn { flex: 1 1 100%; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--border-glow); }

.faq-question {
  width: 100%;
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-chevron {
  font-size: 1.1rem;
  color: var(--accent-purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  background: var(--bg-secondary);
  padding: 20px 24px;
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-subtle);
}

.faq-item.open .faq-answer { display: block; }

/* =========================================================
   BADGES / TAGS
   ========================================================= */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
}

.badge-silver{ color: var(--accent-silver);   border-color: rgba(192, 192, 192, 0.35);  background: rgba(192, 192, 192, 0.08); }
.badge-teal  { color: var(--accent-teal);   border-color: rgba(0, 212, 204, 0.35);    background: rgba(0, 212, 204, 0.08); }
.badge-purple{ color: var(--accent-purple); border-color: rgba(155,111,212, 0.35);    background: rgba(155,111,212, 0.08); }
.badge-gold  { color: var(--accent-gold);   border-color: rgba(255, 209, 102, 0.35);  background: rgba(255, 209, 102, 0.08); }
.badge-green { color: var(--accent-green);  border-color: rgba(127, 212, 74, 0.35);   background: rgba(127, 212, 74, 0.08); }

/* =========================================================
   COMING SOON PLACEHOLDER
   ========================================================= */
.coming-soon {
  text-align: center;
  padding: 72px 32px;
  border: 1px dashed var(--border-glow);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.coming-soon__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.coming-soon__title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-holo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.coming-soon__body {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
}

/* =========================================================
   SHIMMERING MIRROR EMBLEM  (self-contained — no image files)
   A living, holographic reflective surface. Used for the logo
   mark, the hero disc, and framed "mirror panel" visuals.
   ========================================================= */
.mirror {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #F2F8FF 0%,
      #C0D8F0 18%,
      #84B4D0 38%,
      #4A82A8 55%,
      #90BCD8 72%,
      #C8A850 88%,
      #F0F6FF 100%
    );
  background-size: 280% 280%;
  animation: mirror-drift 9s ease-in-out infinite;
}

/* Soft inner depth so the surface reads as glass, not flat paint */
.mirror::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 32% 26%,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.08) 32%,
    rgba(6, 6, 12, 0.18) 78%,
    rgba(6, 6, 12, 0.34) 100%
  );
  pointer-events: none;
}

/* Travelling sheen — the "shimmer" sweeping across the glass */
.mirror::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.0) 65%,
    transparent 100%
  );
  transform: translateX(-220%) skewX(-12deg);
  animation: mirror-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

/* Round mirror disc (logo / hero) */
.mirror--disc { border-radius: 50%; }

/* Rectangular framed mirror panel (product visuals) */
.mirror--panel { border-radius: var(--radius-lg); }

@keyframes mirror-drift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes mirror-sweep {
  0%        { transform: translateX(-220%) skewX(-12deg); }
  55%, 100% { transform: translateX(330%)  skewX(-12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mirror { animation: none; }
  .mirror::after { animation: none; opacity: 0.25; }
  .hero__logo-ring { animation: none !important; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes holo-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(155, 111, 212, 0.2); }
  50%       { box-shadow: 0 0 40px rgba(155, 111, 212, 0.45); }
}

.float-anim { animation: float 5s ease-in-out infinite; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Collapse the full nav early — six links + CTA need the room */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand-desc { max-width: 100%; }

  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }

  .container { padding: 0 18px; }

  .section { padding: 60px 0; }

  /* Comfortable tap targets on phones */
  .btn { width: 100%; justify-content: center; }
  .hero__actions,
  .cta-section__actions,
  .br-hero__actions { width: 100%; }

  .quote-band::before { font-size: 9rem; top: -10px; }
}

@media (max-width: 480px) {
  .page-hero { padding: calc(var(--nav-height) + 40px) 0 48px; }
  .btn { padding: 13px 24px; }
  .card { padding: 32px 24px; }
}
