:root {
  --brand-ink: #10213b;
  --brand-primary: #365cff;
  --brand-primary-dark: #2444c8;
  --brand-secondary: #6d4aff;
  --brand-teal: #0ea5a4;
  --brand-lime: #c7f36b;
  --brand-surface: #f6f8fc;
  --brand-border: #e3e8f2;
  --brand-muted: #64748b;
  --brand-radius: 1rem;
  --brand-shadow: 0 18px 50px rgba(16, 33, 59, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brand-ink);
  background: var(--brand-surface);
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(54, 92, 255, 0.28);
  outline-offset: 2px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary) 62%, var(--brand-teal));
  box-shadow: 0 10px 24px rgba(54, 92, 255, 0.26);
}

.brand-mark.brand-mark-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.15rem;
  font-size: 1.1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-wordmark {
  color: var(--brand-ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.brand-wordmark small {
  display: block;
  margin-top: 0.22rem;
  color: var(--brand-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 74, 255, 0.08), transparent 28rem),
    var(--brand-surface);
}

.brand-card {
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--brand-shadow);
}

.brand-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(54, 92, 255, 0.35) transparent;
}

.brand-table-wrap table {
  min-width: 42rem;
}

img {
  max-width: 100%;
}

@media (max-width: 768px) {
  .brand-table-wrap table {
    min-width: 36rem;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-wordmark small {
    display: none;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 480px) {
  .brand-table-wrap table {
    min-width: 31rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
