/* MEDIAMATCH — landing page */

:root {
  --bg: #fafaf7;
  --bg-soft: #f1efe8;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --fg: #0a0a0a;
  --fg-soft: #4a4a4a;
  --fg-muted: #8a8a87;
  --fg-on-dark: #fafaf7;
  --fg-on-dark-soft: #b8b8b3;
  --accent: #ff4d2d;
  --accent-soft: #ffe9e2;
  --accent-dark: #d9381a;
  --border: #e8e6df;
  --border-dark: #1f1f1f;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px -16px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
}

.logo-text {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--fg-soft);
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  font-size: 14px;
  padding: 10px 18px;
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

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

.btn-ghost:hover {
  border-color: var(--fg);
}

.btn-lg {
  padding: 16px 30px;
  font-size: 17px;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--fg-soft);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.badge-light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
  max-width: 14ch;
}

.hero h1 .accent {
  color: var(--accent);
}

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--fg-soft);
  max-width: 60ch;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  color: var(--fg-muted);
  font-size: 14px;
}

/* NEWSLETTER (hero) */
.newsletter {
  margin-top: 40px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
  letter-spacing: 0.01em;
}

.newsletter-row {
  display: flex;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  align-items: center;
}

.newsletter-row input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  color: var(--fg);
  padding: 8px 0;
  min-width: 0;
}

.newsletter-row .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.newsletter-msg {
  font-size: 13px;
  min-height: 18px;
  margin-left: 18px;
}

.newsletter-msg[data-state="ok"] {
  color: #1a8a3d;
}

.newsletter-msg[data-state="err"] {
  color: var(--accent-dark);
}

@media (max-width: 520px) {
  .newsletter-row {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 8px;
    gap: 8px;
    align-items: stretch;
  }
  .newsletter-row input {
    padding: 12px 14px;
  }
  .newsletter-row .btn {
    width: 100%;
    border-radius: var(--radius);
  }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: #ffd1c4;
  top: -80px;
  right: -100px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: #ffe9c4;
  bottom: -120px;
  left: -60px;
}

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

.section + .section {
  border-top: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow-light {
  color: var(--fg-on-dark);
}

.eyebrow-on-accent {
  color: rgba(255, 255, 255, 0.85);
}

.section h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
}

.section-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-soft);
  margin-top: 16px;
  max-width: 60ch;
}

.footnote {
  margin-top: 30px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 65ch;
  line-height: 1.55;
}

/* STEPS */
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-soft);
  line-height: 1.6;
}

/* DARK SECTION */
.section-dark {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}

.section-dark .lead,
.section-dark .section-lead,
.section-dark p {
  color: var(--fg-on-dark-soft);
}

.section-dark .footnote {
  color: rgba(250, 250, 247, 0.5);
}

.section + .section-dark,
.section-dark + .section {
  border-top: none;
}

/* DIAGRAM (V2.2) */
.diagram-wrap {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.diagram {
  display: block;
  width: 100%;
  min-width: 760px;
  height: auto;
}

@media (max-width: 760px) {
  .diagram-wrap {
    padding: 16px;
    margin-left: -8px;
    margin-right: -8px;
    border-radius: var(--radius);
  }
  .diagram {
    min-width: 700px;
  }
}

.payback path {
  animation: dashflow 2.4s linear infinite;
}

@keyframes dashflow {
  to {
    stroke-dashoffset: -100;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payback path {
    animation: none;
  }
}

/* VIDEO EMBED */
.video-embed {
  margin: 36px auto 16px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  width: 100%;
  max-width: 880px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px -28px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 77, 45, 0.08);
}

/* Aspect ratio with padding-bottom fallback (Safari iOS < 15) */
.video-embed::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

@supports (aspect-ratio: 16 / 9) {
  .video-embed {
    aspect-ratio: 16 / 9;
  }
  .video-embed::before {
    display: none;
  }
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin: 0 auto 8px;
}

.video-marker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.video-caption p {
  margin: 0 !important;
  font-size: 14.5px;
  color: rgba(250, 250, 247, 0.88) !important;
  line-height: 1.4;
}

/* EXAMPLE */
.example {
  margin-top: 40px;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.example strong {
  color: var(--fg-on-dark);
  font-weight: 600;
}

.example-twist {
  background: rgba(255, 77, 45, 0.08);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.example-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
  list-style: none;
}

.example-winners li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--fg-on-dark-soft);
}

.example-winners strong {
  display: block;
  color: var(--fg-on-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

@media (max-width: 760px) {
  .example-winners {
    grid-template-columns: 1fr;
  }
}

.example-note {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.5) !important;
  font-style: italic;
}

/* GRID 2 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.grid-tight {
  gap: 50px;
  margin-top: 0;
  align-items: start;
}

@media (max-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--fg-soft);
  line-height: 1.6;
  font-size: 16px;
}

/* AUDIENCE CARDS */
.audience-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}

.audience-card p {
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.6;
}

.check-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--fg-soft);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

/* ACCENT SECTION */
.section-accent {
  background: var(--accent);
  color: #fff;
}

.section-accent .section-lead,
.section-accent p {
  color: rgba(255, 255, 255, 0.92);
}

.section + .section-accent,
.section-accent + .section {
  border-top: none;
}

.protection-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .protection-list {
    grid-template-columns: 1fr;
  }
}

.prot {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.prot h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.prot p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  font-size: 15.5px;
}

/* SOFT SECTION (FAQ) */
.section-soft {
  background: var(--bg-soft);
}

.section + .section-soft,
.section-soft + .section {
  border-top: none;
}

/* FAQ */
.faq-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

details[open] {
  border-color: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  color: var(--fg-muted);
  transition: transform 0.2s ease;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

details p {
  padding: 0 26px 22px;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* CALCULADORA */
.calc {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .calc {
    grid-template-columns: 1fr;
  }
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-soft);
  letter-spacing: 0.01em;
}

.calc-field select {
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--fg);
  outline: 0;
  transition: border-color 0.15s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a8a87'%3e%3cpath d='M4 6l4 4 4-4'/%3e%3cpath fill='none' stroke='%238a8a87' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.calc-field select:focus {
  border-color: var(--accent);
}

.calc-result {
  background: #0a0a0a;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.calc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}

.calc-row:last-of-type {
  border-bottom: 0;
}

.calc-row span {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.7);
}

.calc-row strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.calc-row-highlight {
  background: rgba(255, 77, 45, 0.12);
  border: 1px solid rgba(255, 77, 45, 0.35);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 4px;
}

.calc-row-highlight span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.calc-row-highlight strong {
  color: var(--accent);
  font-size: 26px;
}

.calc-disclaimer {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.5);
  line-height: 1.5;
}

/* CADASTRAR SECTION (light theme) */
.section-cadastrar {
  background: var(--bg-soft);
}

.section + .section-cadastrar,
.section-cadastrar + .section {
  border-top: none;
}

.cadastrar-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cadastrar-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-cadastrar .footnote {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* IDEA FORM (light theme) */
.idea-form {
  margin: 40px auto 24px;
  max-width: 720px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 24px 60px -28px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .idea-form {
    padding: 24px 18px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: 0;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 77, 45, 0.12);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #e0a08a;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.5;
}

.form-submit {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-msg {
  font-size: 14px;
  min-height: 20px;
  text-align: center;
  margin: 0;
}

.form-msg[data-state="ok"] {
  color: #1a8a3d;
}

.form-msg[data-state="err"] {
  color: var(--accent-dark);
}

/* CTA SECTION */
.section-cta {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  text-align: center;
}

.section-cta .eyebrow-on-accent {
  color: var(--accent);
}

.section-cta h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 5.5vw, 64px);
}

.section-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
  color: var(--fg-on-dark-soft);
}

.section-cta .footnote {
  margin-left: auto;
  margin-right: auto;
  color: rgba(250, 250, 247, 0.5);
}

.section + .section-cta,
.section-cta + .section {
  border-top: none;
}

.cta-block {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-cta .btn-ghost:hover {
  border-color: #fff;
}

/* FOOTER */
.site-footer {
  background: var(--bg-darker);
  color: var(--fg-on-dark-soft);
  padding: 60px 0 40px;
}

.site-footer .logo {
  color: var(--fg-on-dark);
  margin-bottom: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.site-footer p {
  color: var(--fg-on-dark-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 40ch;
}

.site-footer strong {
  color: var(--fg-on-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 14px;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer ul a {
  color: var(--fg-on-dark-soft);
  font-size: 14.5px;
  transition: color 0.15s ease;
}

.site-footer ul a:hover {
  color: var(--fg-on-dark);
}

.site-footer .legal {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(250, 250, 247, 0.4);
}

/* SELECTION */
::selection {
  background: var(--accent);
  color: #fff;
}

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