:root {
  --bg: #100014;
  --bg-deep: #08000c;
  --surface: #1c0a24;
  --surface-2: #281132;
  --surface-3: #32183d;
  --text: #fffafd;
  --muted: #cbbfd0;
  --muted-2: #a997b1;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff2f70;
  --magenta: #c40065;
  --orange: #ff7a2b;
  --cyan: #39bdf2;
  --cyan-dark: #04151d;
  --gradient: linear-gradient(115deg, #7d005f 0%, #ff174d 52%, #ff8b2a 100%);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(64, 13, 85, .44), transparent 32rem),
    linear-gradient(180deg, #0c0011 0%, #130019 48%, #09000c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: .8rem 1rem;
  border-radius: 12px;
  background: var(--cyan);
  color: #06131a;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { padding: 7.5rem 0; position: relative; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(8, 0, 12, .55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 0, 12, .9);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; flex-shrink: 0; }
.brand-icon { width: 46px; height: 46px; object-fit: contain; }
.brand-wordmark { width: 156px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav > a:not(.button) { color: #ece3ef; text-decoration: none; font-weight: 650; font-size: .95rem; }
.main-nav > a:not(.button):hover { color: var(--cyan); }
.menu-toggle { display: none; width: 45px; height: 45px; border: 1px solid var(--line); background: var(--surface); border-radius: 14px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 54px;
  padding: .9rem 1.45rem;
  border: 0;
  border-radius: 15px;
  background: var(--cyan);
  color: var(--cyan-dark);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(57, 189, 242, .2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 40px rgba(57, 189, 242, .3); }
.button-small { min-height: 44px; padding: .65rem 1rem; border-radius: 13px; font-size: .9rem; }
.button-secondary { background: rgba(255,255,255,.03); color: white; border: 1px solid rgba(255,255,255,.45); box-shadow: none; }
.button-secondary:hover { border-color: var(--cyan); box-shadow: 0 16px 36px rgba(0,0,0,.2); }

.hero { min-height: 900px; display: grid; align-items: center; padding: 10.5rem 0 6rem; position: relative; isolation: isolate; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15vw -9rem 34vw;
  height: 320px;
  border-top: 4px solid transparent;
  border-radius: 50%;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gradient) border-box;
  transform: rotate(-9deg);
  opacity: .8;
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 4.5rem; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-brand-lockup { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.3rem; }
.hero-brand-lockup img:first-child { width: 68px; height: 68px; }
.hero-brand-lockup img:last-child { width: 240px; height: auto; }
.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.beta-pill,
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 750;
}
.beta-pill {
  border: 1px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gradient) border-box;
  color: #ff8a76;
}
.beta-pill span { color: var(--pink); }
.platform-pill {
  border: 1px solid rgba(57, 195, 247, .55);
  background: rgba(57, 195, 247, .08);
  color: #8fe2ff;
}
.platform-pill span { color: var(--cyan); font-size: .72rem; }
.platform-inline { color: #dff7ff; font-weight: 800; }
.hero h1 { margin: 0; font-size: clamp(3.4rem, 6.6vw, 6.4rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 650px; margin: 1.8rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.4vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-highlights div { display: grid; }
.hero-highlights strong { font-size: .98rem; }
.hero-highlights span { color: var(--muted-2); font-size: .88rem; }
.hero-visual { position: relative; min-width: 0; }
.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 38px 38px 120px 38px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.11);
  isolation: isolate;
}
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,0,17,.2), transparent 45%), linear-gradient(0deg, rgba(12,0,17,.7), transparent 42%); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 56%; display: block; }
.hero-image-label { position: absolute; z-index: 2; inset: auto 2rem 2rem; display: grid; }
.hero-image-label span { text-transform: uppercase; letter-spacing: .17em; font-size: .74rem; color: #b7eaff; font-weight: 800; }
.hero-image-label strong { font-size: clamp(1.4rem, 2.4vw, 2.2rem); }
.orbit-line { position: absolute; border: 2px solid rgba(255,57,118,.7); border-left-color: transparent; border-top-color: transparent; border-radius: 50%; pointer-events: none; }
.orbit-one { width: 115%; height: 38%; right: -20%; bottom: -8%; transform: rotate(-12deg); }
.orbit-two { width: 95%; height: 28%; right: -9%; bottom: -2%; border-color: rgba(255,128,43,.8); border-left-color: transparent; border-top-color: transparent; transform: rotate(-10deg); }
.spark { position: absolute; color: #ffd2ac; filter: drop-shadow(0 0 12px #ff5b4a); }
.spark-one { top: 6%; right: -1%; font-size: 1.4rem; }
.spark-two { bottom: 3%; left: -3%; font-size: 1rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .22; z-index: -2; }
.hero-glow-one { width: 500px; height: 500px; background: #91005e; left: -260px; top: 150px; }
.hero-glow-two { width: 420px; height: 420px; background: #12447d; right: -220px; bottom: 80px; }

.section-heading { max-width: 790px; margin: 0 auto 3.3rem; text-align: center; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .17em; font-size: .74rem; color: #ff7b79; font-weight: 850; margin-bottom: .85rem; }
.section-heading h2, .workflow h2, .beta-card h2 { margin: 0; font-size: clamp(2.35rem, 4.7vw, 4.2rem); line-height: 1.05; letter-spacing: -.04em; }
.section-heading p { color: var(--muted); font-size: 1.08rem; margin: 1rem auto 0; max-width: 690px; }
.features { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card {
  min-height: 330px;
  padding: 1.6rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(46,22,58,.88), rgba(24,8,31,.88));
  box-shadow: inset 0 1px rgba(255,255,255,.04);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(255,90,122,.45); background: linear-gradient(180deg, rgba(58,27,72,.95), rgba(27,9,35,.95)); }
.feature-icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,47,112,.1); color: #ff567e; border: 1px solid rgba(255,66,121,.28); font-size: 1.3rem; font-weight: 900; }
.feature-card h3 { margin: 1.25rem 0 .65rem; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.workflow { overflow: hidden; }
.workflow::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: #430050; filter: blur(110px); opacity: .17; left: 55%; top: 10%; }
.workflow-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 5rem; align-items: center; }
.workflow-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 620px; }
.steps { list-style: none; padding: 0; margin: 2.4rem 0 0; display: grid; gap: 1.5rem; }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; align-items: start; }
.steps li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--gradient); font-weight: 900; }
.steps strong { display: block; font-size: 1.13rem; margin-top: .2rem; }
.steps p { margin: .3rem 0 0; color: var(--muted); }
.workflow-panel { position: relative; padding: 2.5rem; border: 1px solid rgba(255,255,255,.15); background: linear-gradient(145deg, rgba(49,23,61,.95), rgba(19,5,25,.95)); border-radius: 32px; box-shadow: var(--shadow); }
.workflow-panel::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,47,112,.45), transparent 35%, rgba(57,189,242,.45)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.memory-chip { display: inline-flex; padding: .45rem .8rem; background: rgba(57,189,242,.12); color: #7bdcff; border: 1px solid rgba(57,189,242,.32); border-radius: 999px; font-weight: 800; font-size: .82rem; }
.workflow-panel h3 { font-size: 2rem; line-height: 1.12; margin: 1.25rem 0 1rem; }
.workflow-panel p { color: var(--muted); }
.memory-tags { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.memory-tags span { padding: .55rem .8rem; background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 12px; color: #f1e8f4; font-size: .86rem; }

.showcase { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.carousel { position: relative; }
.carousel-controls { display: flex; justify-content: flex-end; align-items: center; gap: .75rem; margin-bottom: 1.2rem; }
.carousel-button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); color: white; background: var(--surface-2); cursor: pointer; font-size: 1.4rem; transition: transform .2s ease, background .2s ease; }
.carousel-button:hover { transform: translateY(-2px); background: #40204d; }
.carousel-count { min-width: 78px; text-align: center; color: var(--muted); font-variant-numeric: tabular-nums; }
.carousel-viewport { display: flex; gap: 1.25rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scroll-behavior: smooth; padding: 1rem .2rem 1.6rem; scrollbar-width: none; }
.carousel-viewport::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 calc((100% - 2.5rem) / 3); scroll-snap-align: start; min-width: 0; }
.phone-frame { width: min(100%, 330px); margin-inline: auto; padding: 8px; background: linear-gradient(145deg, #453049, #0a070b); border-radius: 34px; border: 1px solid rgba(255,255,255,.25); box-shadow: 0 24px 45px rgba(0,0,0,.35); overflow: hidden; }
.phone-frame img { width: 100%; border-radius: 26px; aspect-ratio: 945 / 2048; object-fit: cover; object-position: top; }
.slide-number { display: inline-grid; place-items: center; min-width: 34px; height: 34px; margin-top: 1.3rem; border-radius: 50%; background: var(--gradient); font-size: .8rem; font-weight: 900; }
.slide h3 { margin: .75rem 0 .35rem; font-size: 1.18rem; }
.slide p { margin: 0; color: var(--muted); font-size: .94rem; }
.carousel-dots { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin-top: 1rem; }
.carousel-dot { width: 20px; height: 5px; border: 0; border-radius: 10px; background: rgba(255,255,255,.18); padding: 0; }
.carousel-dot.active { width: 38px; background: var(--gradient); }

.beta-section { padding-top: 4rem; }
.beta-card { display: grid; grid-template-columns: 150px 1fr auto; gap: 2rem; align-items: center; padding: 2.6rem; border: 1px solid transparent; border-radius: 30px; background: linear-gradient(#17051f, #17051f) padding-box, linear-gradient(100deg, #ff8027, #ff245e, #b40070) border-box; box-shadow: var(--shadow); }
.beta-card > img { width: 140px; filter: drop-shadow(0 0 25px rgba(255,54,86,.28)); }
.beta-card h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.beta-card p { color: var(--muted); margin-bottom: 0; max-width: 760px; }
.beta-action { display: grid; gap: .8rem; min-width: 230px; }
.contact-link { color: #d9d0dc; text-align: center; text-decoration: none; }
.contact-link:hover { color: var(--cyan); }

.disclosure-notices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.platform-transparency {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(57,195,247,.28);
  border-radius: 18px;
  background: rgba(57,195,247,.055);
  color: var(--muted);
}
.platform-transparency p { margin: 0; }
.platform-transparency strong { color: #dff7ff; }
.platform-transparency-icon { color: var(--cyan); font-size: 1.1rem; }
.beta-platform-note {
  color: #9de8ff;
  font-size: .86rem;
  font-weight: 750;
  text-align: center;
}
.ai-transparency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  color: var(--muted);
  background: rgba(36, 15, 45, .7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  text-align: center;
}
.ai-transparency p { margin: 0; font-size: .92rem; }
.ai-transparency strong { color: #fff; }
.ai-transparency-icon { flex: 0 0 auto; color: #ff5a7d; font-size: 1.1rem; }

.site-footer { padding: 2.5rem 0; border-top: 1px solid var(--line); background: rgba(5,0,8,.65); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.5rem; }
.footer-brand .brand-wordmark { width: 140px; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { color: var(--muted-2); margin: 0; font-size: .9rem; }


/* Social media links */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}
.social-link {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #f8f4fa;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(57,195,247,.62);
  background: linear-gradient(145deg, rgba(255,47,112,.18), rgba(57,195,247,.18));
  box-shadow: 0 10px 26px rgba(0,0,0,.28), 0 0 22px rgba(57,195,247,.12);
}
.social-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.beta-social {
  display: grid;
  justify-items: center;
  gap: .65rem;
  padding-top: .25rem;
}
.beta-social > span {
  color: var(--muted-2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.social-links-beta .social-link {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}
.social-links-footer {
  justify-content: flex-end;
}

/* Legal pages */
.legal-main { padding: 9.5rem 0 6rem; min-height: 80vh; }
.legal-shell { width: min(calc(100% - 2.5rem), 860px); margin-inline: auto; }
.legal-header { margin-bottom: 2.5rem; }
.legal-header h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1; letter-spacing: -.05em; margin: 0; }
.legal-header p { color: var(--muted); font-size: 1.05rem; }
.legal-card { padding: clamp(1.5rem, 4vw, 3rem); background: rgba(31,12,39,.82); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.legal-card h2 { margin: 2.25rem 0 .7rem; font-size: 1.55rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 1.5rem 0 .5rem; }
.legal-card p, .legal-card li { color: #d8cddd; }
.legal-card a { color: #72d7ff; }
.legal-card ul { padding-left: 1.25rem; }
.legal-note { border-left: 3px solid var(--orange); padding: .8rem 1rem; background: rgba(255,122,43,.08); border-radius: 0 12px 12px 0; }
.back-home { display: inline-flex; margin-bottom: 1.25rem; color: #8ddfff; text-decoration: none; font-weight: 750; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 820px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card { min-height: 280px; }
  .workflow-grid { gap: 3rem; }
  .slide { flex-basis: calc((100% - 1.25rem) / 2); }
  .beta-card { grid-template-columns: 115px 1fr; }
  .beta-card > img { width: 110px; }
  .beta-action { grid-column: 2; display: grid; grid-template-columns: auto auto; align-items: center; }
  .beta-action .button, .beta-action .beta-social { grid-column: 1 / -1; }
  .social-links-footer { justify-content: center; }
  .footer-copy { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { background: rgba(8,0,12,.9); }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + .5rem); left: 1.25rem; right: 1.25rem; display: none; flex-direction: column; align-items: stretch; gap: .25rem; padding: 1rem; background: rgba(27,10,36,.98); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: .7rem .8rem; }
  .main-nav .button { margin-top: .35rem; }
  .section { padding: 5.5rem 0; }
  .hero { padding-top: 8.5rem; }
  .hero h1 { font-size: clamp(3.2rem, 13vw, 5.6rem); }
  .hero-image-frame img { object-position: center 56%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 270px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .beta-card { grid-template-columns: 90px 1fr; padding: 2rem; }
  .beta-card > img { width: 86px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 610px) {
  .container, .legal-shell { width: min(calc(100% - 1.5rem), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-icon { width: 39px; height: 39px; }
  .brand-wordmark { width: 130px; }
  .hero { padding-top: 7.2rem; }
  .hero-brand-lockup img:first-child { width: 54px; height: 54px; }
  .hero-brand-lockup img:last-child { width: 190px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-highlights { gap: 1rem; justify-content: space-between; }
  .hero-highlights div { flex: 1; min-width: 90px; }
  .hero-image-frame { border-radius: 26px 26px 75px 26px; }
  .hero-image-frame img { object-position: center 57%; }
  .hero-image-label { inset: auto 1.25rem 1.25rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .workflow-panel { padding: 1.6rem; }
  .slide { flex-basis: 88%; }
  .carousel-controls { justify-content: center; }
  .beta-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .beta-card > img { width: 115px; }
  .beta-action { grid-column: auto; display: grid; width: 100%; }
  .disclosure-notices { grid-template-columns: 1fr; }
  .ai-transparency, .platform-transparency { align-items: flex-start; text-align: left; }
  .footer-links { flex-wrap: wrap; }
  .social-links-footer { justify-content: center; }
  .beta-action { grid-template-columns: 1fr; }
  .beta-action .button, .beta-action .beta-social { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
