:root {
  --bg: #050713;
  --bg-elevated: #0b0f1d;
  --bg-muted: #090c18;
  --accent: #a855f7;
  --accent-soft: rgba(168, 85, 247, 0.2);
  --accent-strong: #c4a1ff;
  --text: #f9fafb;
  --text-soft: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.9);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  background: radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.15),
      transparent 55%
    ),
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.25),
      transparent 55%
    ),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.85), #020617 70%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.86),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #e5e7eb;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-link {
  color: #9ca3af;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #a855f7, #22c55e);
  transition: width 0.22s ease;
}

.nav-link:hover {
  color: #e5e7eb;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.primary-btn {
  background: linear-gradient(135deg, #a855f7, #22c55e);
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 1);
}

.primary-btn-lg {
  padding-inline: 24px;
  padding-block: 11px;
  font-size: 0.95rem;
}

.secondary-btn {
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid var(--border-subtle);
}

.secondary-btn:hover {
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
}

.ghost-btn {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid transparent;
}

.ghost-btn:hover {
  border-color: rgba(148, 163, 184, 0.7);
}

.hero {
  padding: 56px 20px 80px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #a5b4fc;
  margin-bottom: 16px;
}

.hero-heading {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-heading span:nth-child(2) {
  background: linear-gradient(120deg, #e5e7eb, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stat {
  min-width: 120px;
}

.hero-stat dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 4px;
}

.hero-stat dd {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  border-radius: 30px;
  background: radial-gradient(circle at top, #1e293b 0, #020617 65%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  isolation: isolate;
}

#hero-canvas,
.hero-image {
  display: block;
  width: 100%;
  height: min(440px, 60vh);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.hero-badge-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.hero-badge-body {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.proof {
  padding: 18px 20px 24px;
}

.proof-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at left, rgba(15, 23, 42, 0.9), #020617);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.proof-label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.proof-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}

.proof-metric {
  border-left: 1px solid rgba(55, 65, 81, 0.9);
  padding-left: 14px;
}

.proof-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.proof-caption {
  font-size: 0.8rem;
  color: #9ca3af;
}

.section {
  padding: 64px 20px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-dark {
  background: radial-gradient(circle at top, #020617, #020617 55%);
}

#solutions {
  position: relative;
}

#solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/background.jpeg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

#solutions .section-inner {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 660px;
  margin-bottom: 32px;
  position: relative;
}

.section-header::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a855f7, #22c55e, #38bdf8);
  opacity: 0.7;
  transform-origin: left;
  transform: perspective(520px) rotateX(55deg);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.section-split .section-header {
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pillar {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.18),
      transparent 60%
    ),
    linear-gradient(
      to bottom right,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.96)
    );
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* #solutions {
  position: relative;
}
#solutions::before {
  background: url("./assets/images/background.jpeg") no-repeat center center;
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
  content: "";
} */

.solution-card {
  padding: 26px 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(75, 85, 99, 0.9);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.8);
}

.solution-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.solution-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.solution-card li + li {
  margin-top: 4px;
}

.pillar,
.solution-card,
.feature-card,
.tech-card,
.outcome-card,
.persona-card,
.faq-item {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pillar::before,
.solution-card::before,
.feature-card::before,
.tech-card::before,
.outcome-card::before,
.persona-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at top left,
      rgba(168, 85, 247, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(56, 189, 248, 0.2),
      transparent 60%
    );
  opacity: 0.35;
  mix-blend-mode: screen;
  transform: translateZ(0) rotateZ(2deg);
  pointer-events: none;
}

.pillar::after,
.solution-card::after,
.feature-card::after,
.tech-card::after,
.outcome-card::after,
.persona-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  opacity: 0.25;
  transform: translateZ(0) rotateX(60deg) rotateZ(-18deg);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .pillar:hover,
  .solution-card:hover,
  .feature-card:hover,
  .tech-card:hover,
  .outcome-card:hover,
  .persona-card:hover,
  .faq-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
    border-color: rgba(148, 163, 184, 0.7);
  }
}

.section-steps {
  background: radial-gradient(circle at top, #020617, #020617 55%);
}

.steps-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
}

.step-index {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
}

.step-copy h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.step-copy p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.section-tech {
  background: radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.22),
      transparent 55%
    ),
    #020617;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tech-card {
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

.tech-card h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-outcomes {
  background: radial-gradient(circle at top, #020617, #020617 55%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.outcome-card {
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.18),
      transparent 60%
    ),
    linear-gradient(
      to bottom right,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.98)
    );
}

.outcome-card h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.outcome-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-personas {
  background: radial-gradient(circle at bottom, #020617, #020617 55%);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.section-features {
  background: radial-gradient(circle at center, #020617, #020617 55%);
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 24px 22px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.38),
      transparent 60%
    ),
    linear-gradient(
      to bottom right,
      rgba(15, 23, 42, 0.98),
      rgba(15, 23, 42, 0.97)
    );
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: center;
}

.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-visual {
  position: relative;
  border-radius: 18px;
  padding: 8px;
  background: radial-gradient(
      circle at top,
      rgba(30, 64, 175, 0.7),
      transparent 65%
    ),
    radial-gradient(circle at bottom, rgba(8, 47, 73, 0.9), #020617 70%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.feature-canvas {
  display: block;
  width: 100%;
  height: 190px;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  }

  .feature-card:nth-child(even) .feature-copy {
    order: 2;
  }

  .feature-card:nth-child(even) .feature-visual {
    order: 1;
  }
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.feature-card ul {
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.feature-card li + li {
  margin-top: 4px;
}

.feature-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.feature-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.feature-stat-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.feature-stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.persona-card {
  padding: 22px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.95);
}

.persona-card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.persona-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.persona-card ul {
  list-style: none;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.persona-card li + li {
  margin-top: 3px;
}

.faq-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.faq-item {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
}

.faq-question {
  font-size: 0.96rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.section-cta {
  background: radial-gradient(circle at center, #0b1120, #020617 70%);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.cta-form {
  flex: 1.1;
  min-width: 320px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}

.field-group {
  margin-bottom: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.field-group label {
  display: block;
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 5px;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 9px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.55);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #6b7280;
}

.cta-footnote {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 1);
  padding: 28px 20px 32px;
  background: #020617;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 18px;
  max-width: 480px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #4b5563;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

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

/* Reveal animation base state */
.reveal {
  opacity: 0;
  transform: translateY(12px);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-copy {
    max-width: none;
  }

  .section {
    padding: 56px 20px;
  }

  .pillars-grid,
  .solutions-grid,
  .tech-grid,
  .outcomes-grid,
  .personas-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-inner {
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: 16px;
    padding-block: 10px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links,
  .nav-cta {
    display: none;
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
  }

  .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
    padding-bottom: 4px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-heading {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .proof-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-metrics {
    margin-left: 0;
  }

  .pillars-grid,
  .solutions-grid,
  .tech-grid,
  .outcomes-grid,
  .personas-grid,
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-visual {
    margin-top: 6px;
  }

  .step-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 32px 16px 56px;
  }

  .section {
    padding: 48px 16px;
  }

  #hero-canvas,
  .hero-image {
    height: min(360px, 55vh);
  }

  .proof-inner {
    padding-inline: 16px;
  }

  .cta-form {
    padding-inline: 16px;
  }

  .footer {
    padding-inline: 16px;
  }
}

/* Logo Strip */
.logos-section {
  padding: 32px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(2, 6, 23, 0.5);
}

.logos-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}

.logo-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 12px;
}

.logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
