:root {
  --background: #f7f8fb;
  --surface: #ffffff;
  --surface-muted: #f0f2f7;
  --foreground: #101828;
  --ink: #1c2b4a;
  --muted: #5b6472;
  --border: #e3e6ee;
  --border-strong: #d3d8e4;
  --accent: #635bff;
  --accent-hover: #4f46e0;
  --accent-fg: #ffffff;
  --accent-soft: #edecff;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 6px 20px rgba(16, 24, 40, 0.06);
  --shadow-lift: 0 12px 32px rgba(28, 43, 74, 0.12);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0d16;
    --surface: #10141f;
    --surface-muted: #151a28;
    --foreground: #eef1f8;
    --ink: #eef1f8;
    --muted: #8b93a7;
    --border: #232939;
    --border-strong: #303852;
    --accent: #8b84ff;
    --accent-hover: #a29cff;
    --accent-fg: #0a0d16;
    --accent-soft: #1b1a3a;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lift: 0 16px 36px rgba(0, 0, 0, 0.45);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* ---------- background ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--border) 70%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--border) 70%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 900px 620px at 50% 0%, black 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 900px 620px at 50% 0%, black 0%, transparent 72%);
}

.bg-glow {
  position: fixed;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 20%, transparent), transparent 72%);
  filter: blur(10px);
}

/* ---------- layout ---------- */
.wrap {
  position: relative;
  z-index: 1;
}

.section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-wide {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 15px 24px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a.btn {
  color: var(--accent-fg);
}

.site-nav a.btn:hover {
  color: var(--accent-fg);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 4px 14px color-mix(in srgb, var(--accent) 35%, transparent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--ink);
}

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

.btn-sm {
  padding: 9px 16px;
  font-size: 0.82rem;
}

/* ---------- hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  margin: 20px 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.subtitle {
  margin: 18px 0 0;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-note {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.trust-row {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-logos span {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

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

/* ---------- scroll sections ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.heading-block {
  text-align: center;
  margin-bottom: 44px;
}

.heading-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lede {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- features ---------- */
.features {
  padding: 72px 0;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
}

.feature-card.reveal:nth-child(1) { transition-delay: 0s; }
.feature-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  font-size: 1.1rem;
}

.feature-title {
  margin: 16px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-body {
  margin: 7px 0 0;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- how it works ---------- */
.steps {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.step-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.step-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  font-size: 0.85rem;
}

.step-title {
  margin: 14px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}

.step-body {
  margin: 7px 0 0;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- info card ---------- */
.info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.info-card p + p {
  margin-top: 12px;
}

/* ---------- pricing ---------- */
.pricing {
  padding: 72px 0 84px;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--accent-soft) 0%, var(--surface) 58%);
}

.price-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-name {
  margin: 16px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.price-value {
  margin: 12px 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-value .amount {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
}

.price-value .period {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-desc {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

.price-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--foreground);
  flex: 1;
}

.price-list li {
  padding-left: 24px;
  position: relative;
}

.price-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.55rem;
  font-weight: 700;
}

.price-card .btn {
  margin-top: 22px;
}

.rules-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 800px;
  margin: 32px auto 0;
}

.rule-card {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- contact ---------- */
.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 780px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-info-card .contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-card .contact-value {
  margin: 8px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: block;
}

a.contact-info-card .contact-value {
  transition: color 0.15s ease;
}

a.contact-info-card:hover .contact-value {
  color: var(--accent);
}

.contact-panel {
  padding: 8px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-decoration: none;
  color: inherit;
}

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

.contact-row-text {
  max-width: 460px;
}

.contact-row .contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-row .contact-value {
  margin: 8px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-row .contact-body {
  margin: 7px 0 0;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-row .contact-cta {
  flex-shrink: 0;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  transition: gap 0.15s ease;
}

.contact-row:hover .contact-cta {
  gap: 10px;
}

/* ---------- faq ---------- */
.faq-body {
  padding: 44px 24px 88px;
}

.faq-category {
  margin-top: 48px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-category-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-category-desc {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
  border-color: var(--border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---------- legal pages ---------- */
.legal-header {
  padding: 64px 24px 0;
}

.legal-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-header h1 {
  color: var(--ink);
}

.legal-updated {
  margin-top: 10px;
  font-size: 0.87rem;
  color: var(--muted);
}

.legal-intro {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-intro strong {
  color: var(--ink);
}

.legal-toc {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.legal-toc p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-toc-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .legal-toc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-toc-grid a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}

.legal-toc-grid a:hover {
  color: var(--accent);
}

.legal-body {
  padding: 44px 24px 88px;
}

.legal-body section {
  margin-top: 46px;
  scroll-margin-top: 96px;
}

.legal-body section:first-child {
  margin-top: 0;
}

.legal-body h2 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal-body h3 {
  margin: 26px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.legal-body section > h3:first-of-type {
  margin-top: 18px;
}

.legal-body p {
  margin: 12px 0 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-body li + li {
  margin-top: 8px;
}

.legal-body strong {
  color: var(--ink);
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-callout {
  margin-top: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.legal-callout p {
  margin: 6px 0 0;
}

.legal-callout p:first-child {
  margin-top: 0;
}

.legal-body section.divider {
  border-top: 1px solid var(--border);
  padding-top: 34px;
}

/* ---------- footer ---------- */
footer {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 56px 24px 36px;
  background: var(--ink);
  color: #cbd2e6;
}

@media (prefers-color-scheme: dark) {
  footer {
    background: #05070d;
    color: #9aa3ba;
  }
}

.footer-cols {
  display: grid;
  gap: 36px 28px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-col {
  min-width: 0;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-subline {
  margin: 6px 0 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #9aa3ba;
  max-width: 300px;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7982a0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.86rem;
  text-decoration: none;
  color: #cbd2e6;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  margin: 36px auto 0;
  max-width: 1040px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: #7982a0;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
