/* PValpha Marketing Site — no-build static CSS */

:root {
  /* Brand accents (unchanged) */
  --color-navy: #0A1428;
  --color-blue: #1E66FF;
  --color-cyan: #00C2FF;
  --color-gold: #FFC61A;
  --color-slate: #94A3B8;
  --color-offwhite: #F2F4F7;

  /* Light background palette */
  --color-bg: #E8EEF6;
  --color-surface: #FFFFFF;
  --color-surface-alt: #DCE6F2;
  --color-surface-inset: #F4F8FC;
  --color-text: #0F1B33;
  --color-text-muted: #4E627A;
  --color-border: #C5D3E3;
  --color-border-subtle: rgba(78, 98, 122, 0.14);

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 72rem;
  --header-height: 5.5rem;
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(15, 27, 51, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 27, 51, 0.08);
  --shadow-glow: 0 4px 32px rgba(30, 102, 255, 0.18);
  --shadow-gold: 0 4px 24px rgba(255, 198, 26, 0.22);
  --accent-gold-gradient: linear-gradient(90deg, var(--color-gold), #ffd85a);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 198, 26, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(30, 102, 255, 0.05), transparent 50%);
  -webkit-font-smoothing: antialiased;
}

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

.logo-mark {
  max-width: none;
  height: auto;
  flex-shrink: 0;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #0d52cc;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid background */
.grid-bg {
  position: relative;
  overflow: hidden;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold-gradient);
  opacity: 0.65;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Full logo lockup: crisp icon + wordmark + tagline */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.logo-lockup:hover {
  color: inherit;
}

.logo-mark {
  width: 3.5rem;
  height: 3.5rem;
}

.logo-lockup-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.05;
}

.logo-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-pv {
  color: var(--color-navy);
}

.logo-alpha {
  color: var(--color-blue);
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-lockup-footer .logo-mark {
  width: 3rem;
  height: 3rem;
}

.logo-lockup-footer .logo-name {
  font-size: 1.5rem;
}

.logo-lockup-footer .logo-tagline {
  font-size: 0.5625rem;
}

.nav-toggle {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-text);
  background: rgba(30, 102, 255, 0.08);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--color-gold);
}

.header-cta {
  margin-left: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

.btn-primary:hover {
  background: #2d75ff;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: rgba(30, 102, 255, 0.04);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-gold:hover {
  background: #ffd040;
  color: var(--color-navy);
  box-shadow: 0 4px 24px rgba(255, 198, 26, 0.35);
}

.btn-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 5rem 0 6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--accent-gold-gradient);
  border-radius: 1px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}

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

.hero h1 .highlight-gold {
  color: #c99200;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-alpha-note {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-gold);
  padding-left: 1rem;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 100%;
  width: 28rem;
  filter: drop-shadow(0 12px 40px rgba(30, 102, 255, 0.15));
}

/* Decorative hero dashboard */
.hero-dashboard {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.dashboard-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dashboard-grid svg {
  width: 100%;
  height: 100%;
}

.metric-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: var(--color-surface-inset);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.metric-card:hover {
  border-color: rgba(30, 102, 255, 0.35);
  box-shadow: 0 0 16px rgba(30, 102, 255, 0.1);
}

.metric-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.metric-value.gold {
  color: #c99200;
}

.metric-value.cyan {
  color: #0099cc;
}

.optimization-curve {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 5rem;
  z-index: 1;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.75rem auto 0;
  background: var(--accent-gold-gradient);
  border-radius: 2px;
}

.section-header--plain h2::after {
  display: none;
}

.section-header p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 1.0625rem;
}

.section-alt {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(12rem, 40%);
  height: 3px;
  background: var(--accent-gold-gradient);
  border-radius: 0 0 2px 2px;
  opacity: 0.5;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(30, 102, 255, 0.35);
  box-shadow: var(--shadow-glow);
}

.card-accent {
  border-top: 3px solid var(--color-gold);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 102, 255, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--color-blue);
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* Value cards with number */
.value-card {
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover::before {
  opacity: 1;
}

/* Workflow steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.workflow-step {
  text-align: center;
  position: relative;
}

.workflow-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  background: rgba(30, 102, 255, 0.1);
  border: 1px solid rgba(30, 102, 255, 0.25);
  border-radius: 50%;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1rem;
}

.workflow-step:nth-child(4)::before {
  background: rgba(255, 198, 26, 0.15);
  border-color: rgba(255, 198, 26, 0.45);
  color: #c99200;
}

.workflow-step h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.workflow-step p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Solution list */
.solution-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.solution-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  background: var(--color-blue);
  border-radius: 50%;
}

/* Two column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col h2 {
  color: var(--color-text);
}

.prose {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-surface-alt) 0%, rgba(30, 102, 255, 0.08) 50%, rgba(255, 198, 26, 0.06) 100%);
  border-top: 1px solid var(--color-border-subtle);
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold-gradient);
  opacity: 0.7;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.cta-band p {
  color: var(--color-text-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.75rem auto 0;
  background: var(--accent-gold-gradient);
  border-radius: 2px;
}

.page-hero p {
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* FAQ accordion */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
  scroll-margin-top: 6rem;
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text);
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: rgba(255, 198, 26, 0.45);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: "";
  display: block;
  height: 3px;
  margin: -2rem -2rem 1.5rem;
  background: var(--accent-gold-gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.pricing-status {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c99200;
  margin: 1rem 0;
}

.pricing-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

/* Contact */
.contact-card {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold-gradient);
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.contact-card p {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  max-width: 20rem;
}

.brand-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.75rem 0 0;
}

.tagline-muted {
  color: var(--color-text-muted);
}

.tagline-gold {
  color: #c99200;
}

.footer-nav h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .workflow-steps,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-visual {
    order: -1;
  }

  .workflow-steps {
    gap: 2rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .logo-lockup {
    gap: 0.55rem;
  }

  .logo-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .logo-name {
    font-size: 1.4rem;
  }

  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
}
