*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #e5e7eb 0, #e0f2fe 40%, #cbd5f5 100%);
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Accessibility: Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* TOPBAR --------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: conic-gradient(from 200deg, #f97316, #ec4899, #6366f1, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefce8;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.8), 0 14px 35px rgba(248, 113, 22, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-tagline {
  font-size: 0.76rem;
  color: #6b7280;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  color: #4b5563;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #f97316);
  border-radius: 999px;
  transition: width 0.16s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 163, 175, 0.8);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  transition:
    background 0.15s ease-out,
    transform 0.15s ease-out,
    border-color 0.15s ease-out,
    box-shadow 0.15s ease-out;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.4);
}

.theme-icon {
  font-size: 1rem;
}

.theme-icon-sun {
  opacity: 0.25;
}

body[data-theme="light"] .theme-icon-sun {
  opacity: 1;
}

body[data-theme="light"] .theme-icon-moon {
  opacity: 0.35;
}

.topbar-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.05rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.8rem;
}

.topbar-call span {
  color: #6b7280;
}

.topbar-call strong {
  color: #b91c1c;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle span {
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: #111827;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav.mobile-open {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 19;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav.mobile-open a {
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s ease;
}

.nav.mobile-open a:hover {
  background: rgba(236, 72, 153, 0.1);
}

/* HERO --------------------------------------------------------------- */

.hero {
  padding: 4.2rem 0 3.6rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-left {
  position: relative;
}

.blob {
  position: absolute;
  inset: -140px -80px auto auto;
  background: conic-gradient(from 210deg, #f97316, #ec4899, #6366f1, #f97316);
  opacity: 0.18;
  filter: blur(40px);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 22, 0.8);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: 1.1rem;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.4rem, 3.6rem);
  line-height: 1.03;
  margin-bottom: 1rem;
}

.hero h1 span:first-child {
  display: block;
  font-weight: 400;
}

.hero-emphasis {
  display: inline-block;
  background: linear-gradient(90deg, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out,
    border-color 0.15s ease-out;
  /* Touch-friendly minimum size */
  min-height: 48px;
  min-width: 48px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-main {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.55);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.7);
}

.btn-main:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.9);
  color: #111827;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #f3f4f6;
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.meta-item {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.35);
  min-width: 210px;
}

.meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.meta-value {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.status-card {
  width: 100%;
  max-width: 360px;
  border-radius: 1.6rem;
  padding: 1.4rem 1.3rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), #e0f2fe);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 22px 60px rgba(148, 163, 184, 0.6);
}

.status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
}

.status-text {
  font-size: 0.8rem;
  color: #15803d;
}

.status-tag {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #f97316;
  color: #fefce8;
}

.status-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.status-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.status-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 0.95rem;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out;
  /* Touch-friendly */
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.status-link.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: transparent;
  color: #ecfdf5;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.6);
}

.status-link:hover {
  transform: translateY(-1px);
  background: #f3f4f6;
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.5);
}

.status-link.primary:hover {
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.8);
}

.status-list {
  list-style: none;
  border-top: 1px dashed rgba(209, 213, 219, 0.9);
  padding-top: 0.7rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.status-list li + li {
  margin-top: 0.3rem;
}

/* SECTIONS ------------------------------------------------------------ */

.section {
  padding: 3.3rem 0;
}

.section-split {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(148, 163, 184, 0.12));
}

.section + .section {
  border-top: 1px solid rgba(209, 213, 219, 0.7);
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.section-block h2 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.section-block p {
  font-size: 0.96rem;
  color: #4b5563;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.info-card {
  padding: 1rem 1rem;
  border-radius: 1.1rem;
  background: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
  box-shadow: 0 12px 26px rgba(148, 163, 184, 0.45);
}

.info-label {
  font-size: 0.78rem;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-text {
  color: #111827;
  margin-top: 0.2rem;
}

.section-header {
  max-width: 30rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.96rem;
  color: #4b5563;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.highlight-card {
  padding: 1rem 1rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  border: 1px solid rgba(15, 23, 42, 0.85);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  font-size: 0.94rem;
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.highlight-card p {
  color: #e5e7eb;
}

/* CONTACT ------------------------------------------------------------ */

.section-alt {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(148, 163, 184, 0.12));
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-main h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-main p {
  font-size: 0.96rem;
  color: #4b5563;
}

.contact-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-label {
  color: #6b7280;
}

.contact-value {
  color: #111827;
}

.contact-panel {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top, #0f172a, #1f2937);
  border: 1px solid rgba(15, 23, 42, 0.85);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.contact-badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 113, 22, 0.9);
  color: #9a3412;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
}

.contact-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.1rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.btn.full {
  width: 100%;
}

/* FOOTER ------------------------------------------------------------- */

.footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.3rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-brand {
  font-weight: 600;
  margin-right: 0.35rem;
  color: #111827;
}

.footer-tag {
  color: #6b7280;
}

/* DARKER THEME (OPTIONAL TOGGLE) -------------------------------------- */

body[data-theme="dark"] {
  background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
  color: #e5e7eb;
}

body[data-theme="dark"] .topbar {
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.94),
    rgba(15, 23, 42, 0.86),
    transparent
  );
  border-bottom-color: rgba(30, 64, 175, 0.7);
}

body[data-theme="dark"] .brand-tagline {
  color: #9ca3af;
}

body[data-theme="dark"] .nav a {
  color: #e5e7eb;
}

body[data-theme="dark"] .theme-toggle {
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.85);
}

body[data-theme="dark"] .topbar-call span {
  color: #9ca3af;
}

body[data-theme="dark"] .topbar-call strong {
  color: #fed7aa;
}

body[data-theme="dark"] .pill {
  background: rgba(15, 23, 42, 0.96);
  color: #fed7aa;
}

body[data-theme="dark"] .hero-lead,
body[data-theme="dark"] .section-block p,
body[data-theme="dark"] .section-header p,
body[data-theme="dark"] .highlight-card p,
body[data-theme="dark"] .contact-main p,
body[data-theme="dark"] .contact-text {
  color: #9ca3af;
}

body[data-theme="dark"] .meta-item,
body[data-theme="dark"] .status-card,
body[data-theme="dark"] .info-card,
body[data-theme="dark"] .contact-panel,
body[data-theme="dark"] .section-split,
body[data-theme="dark"] .section-alt {
  background: radial-gradient(circle at top, #0b1120, #020617);
  border-color: rgba(30, 64, 175, 0.9);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.95);
}

body[data-theme="dark"] .highlight-card {
  background: radial-gradient(circle at top left, #0b1120, #1e293b);
  border-color: rgba(59, 130, 246, 0.7);
}

body[data-theme="dark"] .status-desc,
body[data-theme="dark"] .contact-label {
  color: #9ca3af;
}

body[data-theme="dark"] .status-link {
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.85);
}

body[data-theme="dark"] .status-link:hover {
  background: rgba(15, 23, 42, 1);
}

body[data-theme="dark"] .contact-value {
  color: #e5e7eb;
}

body[data-theme="dark"] .footer {
  background: #020617;
  border-top-color: rgba(30, 64, 175, 0.7);
}

body[data-theme="dark"] .footer-brand {
  color: #e5e7eb;
}

body[data-theme="dark"] .footer-tag {
  color: #9ca3af;
}

/* RESPONSIVE ---------------------------------------------------------- */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.2rem;
  }

  .section-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .contact-inner {
    gap: 2rem;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-right {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .status-card {
    max-width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .meta-item {
    min-width: 100%;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.2rem;
  }

  .topbar-inner {
    padding-inline: 0.6rem;
  }

  .brand-tagline {
    display: none;
  }

  .topbar-call {
    display: none;
  }
  
  .hero {
    padding: 2.5rem 0 2rem;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.8rem;
  }
  
  .hero-lead {
    font-size: 0.92rem;
    margin-bottom: 1.4rem;
  }
  
  .pill {
    font-size: 0.7rem;
    margin-bottom: 0.9rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
  }
  
  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .highlight-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  
  .section-header h2,
  .section-block h2,
  .contact-main h2 {
    font-size: 1.5rem;
  }
  
  .section-header p,
  .section-block p,
  .contact-main p {
    font-size: 0.9rem;
  }

  .contact-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }
  
  .contact-label {
    font-weight: 600;
    color: #111827;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .status-card {
    padding: 1.2rem 1.1rem;
  }
  
  .status-title {
    font-size: 1rem;
  }
  
  .status-desc {
    font-size: 0.82rem;
  }
  
  .info-card {
    padding: 0.9rem;
  }
  
  .highlight-card {
    padding: 1.1rem 1rem;
  }
  
  .highlight-card h3 {
    font-size: 1.05rem;
  }
  
  .highlight-card p {
    font-size: 0.88rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.95rem 1.3rem;
  }
  
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .brand-name {
    font-size: 0.85rem;
  }
}


