/* MM by White Team — website styles */

:root {
  --bg: #0b0e11;
  --bg-soft: #10141a;
  --surface: #151a21;
  --card: #1b212a;
  --card-hover: #212a35;
  --border: #29323d;
  --border-soft: #222a33;
  --text: #e8eaed;
  --muted: #9aa3ad;
  --faint: #6b7681;
  --accent: #9db4c4;
  --accent-strong: #c2d3df;
  --accent-2: #64b5c9;
  --grad: linear-gradient(135deg, #dfe9f0 0%, #9db4c4 45%, #647b8a 100%);
  --glow: rgba(157, 180, 196, 0.35);
  --radius: 16px;
  --nav-h: 68px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: #0b0e11;
}

/* ---------- background decoration ---------- */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-decor::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: -220px;
  top: -260px;
  background: radial-gradient(circle, var(--glow), transparent 60%);
  filter: blur(10px);
  animation: drift 18s ease-in-out infinite;
}

.bg-decor::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -200px;
  bottom: -280px;
  background: radial-gradient(
    circle,
    rgba(100, 181, 201, 0.18),
    transparent 62%
  );
  filter: blur(12px);
  animation: drift 22s ease-in-out infinite reverse;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 70%);
  opacity: 0.4;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, 30px, 0) scale(1.06);
  }
}

/* ---------- navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 14, 17, 0.72);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

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

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s;
  border: 1px solid transparent;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--grad);
  color: #0b0e11;
  box-shadow: 0 8px 26px -8px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px var(--glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 10px;
}

/* ---------- layout helpers ---------- */

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.05rem;
}

.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(157, 180, 196, 0.06);
  margin-bottom: 20px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 120px 0 90px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1.06;
}

.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.badge svg {
  width: 15px;
  height: 15px;
  color: var(--accent-2);
}

/* ---------- app mock ---------- */

.mock-wrap {
  margin-top: 70px;
}

.mock {
  position: relative;
  width: min(920px, 94%);
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  padding: 22px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 14px;
}

.mock-chrome i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.mock-chrome i:nth-child(1) {
  background: #e07a7a;
}
.mock-chrome i:nth-child(2) {
  background: #d8b263;
}
.mock-chrome i:nth-child(3) {
  background: #7cc08e;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 16px;
}

.mock-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0e11;
  font-weight: 700;
}

.mock-name {
  font-weight: 600;
}

.mock-sub {
  font-size: 0.8rem;
  color: var(--faint);
}

.mock-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 260px;
  justify-content: flex-end;
  padding: 8px 4px;
}

.bubble {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  animation: pop 0.5s ease both;
  opacity: 0;
}

.bubble.in {
  align-self: flex-start;
  background: var(--card);
  border: 1px solid var(--border-soft);
  animation-delay: 0.4s;
}

.bubble.out {
  align-self: flex-end;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  animation-delay: 0.8s;
}

.bubble.out-2 {
  align-self: flex-end;
  animation-delay: 1.2s;
  background: var(--grad);
  color: #0b0e11;
  font-weight: 600;
}

.bubble:nth-of-type(2) {
  animation-delay: 0.9s;
}

.bubble.voice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
}

.bubble.voice svg {
  width: 15px;
  height: 15px;
  color: var(--accent-2);
  animation: pulse 2.2s ease-in-out infinite;
}

.bubble.voice .wave {
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--muted);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-input {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 8px 8px 8px 14px;
}

.mock-input span {
  color: var(--faint);
  font-size: 0.9rem;
  flex: 1;
}

.mock-input .btn-sm {
  pointer-events: none;
}

/* ---------- tiers ---------- */

.tier { 
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.tier.popular {
  background: linear-gradient(180deg, var(--card-hover), var(--card));
  border-color: var(--accent);
}

.tier .tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--grad);
  color: #0b0e11;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.tier h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tier .price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 8px 0 2px;
}

.tier .per {
  color: var(--faint);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.tier ul {
  list-style: none;
  margin: 14px 0 20px;
  display: grid;
  gap: 8px;
}

.tier li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}

.tier li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-2);
}

.tier .btn {
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* ---------- features ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feature .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(157, 180, 196, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature .icon svg {
  width: 22px;
  height: 22px;
  stroke: url(#gli) var(--accent);
  color: var(--accent);
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
}

.step h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- download ---------- */

.download-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.dl {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dl:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.dl .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(157, 180, 196, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl .icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.dl .meta {
  flex: 1;
}

.dl h3 {
  font-size: 1.05rem;
}

.dl p {
  color: var(--faint);
  font-size: 0.85rem;
}

/* ---------- faq ---------- */

.faq {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 4px 22px;
}

.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq .a {
  padding: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 720px;
}

/* ---------- legal pages ---------- */

.legal {
  padding: 64px 0 96px;
}

.legal-header {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.legal-header h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.legal-header .updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 0.88rem;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 999px;
}

.legal article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 48px;
}

.legal article h2 {
  font-size: 1.35rem;
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}

.legal article h2:first-child {
  margin-top: 0;
}

.legal article h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
}

.legal article p,
.legal article li {
  color: var(--muted);
  font-size: 0.97rem;
}

.legal article p + p {
  margin-top: 12px;
}

.legal article ul,
.legal article ol {
  padding-left: 22px;
  margin: 12px 0;
  display: grid;
  gap: 8px;
}

.legal article hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 36px 0;
}

.placeholder {
  color: var(--accent-2);
  font-style: italic;
}

.legal-toc {
  display: none;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--border-soft);
  padding: 48px 0 40px;
  margin-top: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--text);
}

.footer .brand {
  margin-bottom: 12px;
}

.footer p.muted {
  color: var(--faint);
  font-size: 0.88rem;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--faint);
  font-size: 0.85rem;
}

.footer-bottom .links {
  display: flex;
  gap: 18px;
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}

/* ---------- scroll progress ---------- */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad);
  box-shadow: 0 0 12px var(--glow);
  z-index: 100;
  border-radius: 0 3px 3px 0;
}

/* ---------- floating blobs ---------- */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.blob-1 {
  width: 460px;
  height: 460px;
  left: -160px;
  top: 20%;
  background: radial-gradient(circle, rgba(157, 180, 196, 0.16), transparent 65%);
  animation: floaty 16s ease-in-out infinite;
}

.blob-2 {
  width: 380px;
  height: 380px;
  right: -140px;
  top: 55%;
  background: radial-gradient(circle, rgba(100, 181, 201, 0.14), transparent 65%);
  animation: floaty 20s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  left: 38%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(194, 211, 223, 0.1), transparent 65%);
  animation: floaty 24s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -40px, 0) scale(1.12);
  }
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(21, 26, 33, 0.6), rgba(16, 20, 26, 0.6));
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.marquee-group span {
  color: var(--muted);
  transition: color 0.2s;
}

.marquee-group span:hover {
  color: var(--accent);
}

.marquee-group i {
  font-style: normal;
  color: var(--accent-2);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- extra flair ---------- */

.hero h1 .grad {
  background-size: 200% 200%;
  animation: gradShift 8s ease-in-out infinite;
}

@keyframes gradShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.feature .icon {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1.3), box-shadow 0.3s ease;
}

.feature:hover .icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  box-shadow: 0 10px 24px -12px var(--glow);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
}

.btn-primary:hover::after {
  animation: shine 0.9s ease;
}

@keyframes shine {
  to {
    transform: translateX(120%);
  }
}

.mock {
  transition: opacity 0.7s ease, transform 0.15s ease-out, box-shadow 0.3s ease;
}

.tier,
.feature,
.dl,
.step {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tier:hover,
.feature:hover,
.dl:hover,
.step:hover {
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.7);
}

.dl .btn,
.tier .btn {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .progress,
  .blob,
  .marquee-track,
  .hero h1 .grad,
  .btn-primary::after {
    animation: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .grid-3,
  .steps,
  .download-cards,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 14, 17, 0.96);
    backdrop-filter: blur(14px);
    padding: 12px;
    gap: 6px;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .legal article {
    padding: 28px 22px;
  }

  .hero {
    padding: 90px 0 60px;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}