/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: var(--space-4);
  transition: background var(--transition), backdrop-filter var(--transition),
    border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: var(--color-nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--color-nav-border);
  padding-block: var(--space-3);
}

.nav__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  letter-spacing: -0.005em;
}

.nav__links a:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
.nav__toggle:hover { background: var(--color-surface-2); }

.nav__toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition-fast), background var(--transition-fast);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition-fast), top var(--transition-fast);
}
.nav__toggle span::before { top: -5px; }
.nav__toggle span::after { top: 5px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links,
  .nav__actions .btn:not(.btn--primary) {
    display: none;
  }
  .nav__toggle { display: flex; }
  .nav__inner { gap: var(--space-4); }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    top: 62px;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-surface);
    padding: var(--space-2) var(--space-6) var(--space-6);
    border-top: 1px solid var(--color-divider);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open .nav__links li { width: 100%; }
  .nav.is-open .nav__links a {
    display: block;
    width: 100%;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-divider);
    font-size: var(--text-base);
    color: var(--color-text);
    border-radius: 0;
  }
  .nav.is-open .nav__links a:hover { background: transparent; color: var(--color-accent); }
  .nav.is-open .nav__links li:last-child a { border-bottom: none; }
  .nav__mobile-cta { display: block !important; }
  .nav__mobile-cta a {
    padding: var(--space-3) var(--space-6) !important;
    border-bottom: none !important;
    text-align: center;
    background: var(--color-primary);
    color: #fff !important;
    border-radius: var(--radius-full) !important;
    margin-top: var(--space-3);
  }
}
@media (min-width: 901px) { .nav__mobile-cta { display: none; } }

/* ============================================
   THEME TOGGLE
============================================ */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.theme-toggle:hover { background: var(--color-surface-2); color: var(--color-text); }
.theme-toggle svg { width: 18px; height: 18px; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text);
  background: var(--color-surface-2);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.4);
}

.btn--link {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  border-radius: 0;
}
.btn--link:hover { color: var(--color-accent-hover); }
.btn--link .btn__icon {
  transition: transform var(--transition-fast);
}
.btn--link:hover .btn__icon { transform: translateX(3px); }

.btn--large { padding: 0.9rem 1.6rem; font-size: var(--text-base); }
.btn--sm { padding: 0.5rem 0.9rem; font-size: var(--text-xs); }

.btn__icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   ECHOES + BADGES
============================================ */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-accent-tint);
  border: 1px solid var(--color-accent-soft);
  margin-bottom: var(--space-5);
}
[data-theme='dark'] .eyebrow {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
  color: #93c5fd;
}

.eyebrow--plain {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-head {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}
.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 38rem;
  margin-inline: auto;
  font-weight: 400;
}
.section-head--left .section-lead { margin-inline: 0; }

/* ============================================
   HERO
============================================ */
.hero {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}
[data-theme='dark'] .hero__bg::before {
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
}

/* Subtle grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(to right, var(--color-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--color-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
[data-theme='dark'] .hero__grid { opacity: 0.25; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__visual { margin-inline: auto; max-width: 480px; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  font-weight: 500;
}
.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: var(--space-6);
  color: var(--color-text-strong);
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 34rem;
  line-height: 1.5;
  margin-bottom: var(--space-8);
  font-weight: 400;
}
@media (max-width: 900px) {
  .hero__subtitle { margin-inline: auto; }
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Hero visual: constellation of apps */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 520px;
}
.constellation {
  width: 100%;
  height: 100%;
  position: relative;
}
.constellation svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.constellation__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0f172a, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-xl), 0 0 0 8px var(--color-bg);
  animation: pulse-shadow 3s ease-in-out infinite;
  z-index: 2;
}
[data-theme='dark'] .constellation__center {
  background: linear-gradient(135deg, #1e293b, #475569);
}
.constellation__center .logo-mark {
  width: 44%;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: var(--shadow-xl), 0 0 0 8px var(--color-bg), 0 0 0 12px transparent; }
  50% { box-shadow: var(--shadow-xl), 0 0 0 8px var(--color-bg), 0 0 0 16px rgba(37, 99, 235, 0.08); }
}

.constellation__node {
  position: absolute;
  width: 16%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: node-float 6s var(--ease-in-out) infinite;
  z-index: 1;
}
.constellation__node svg { width: 55%; height: 55%; }
.constellation__node--1 { top: 10%; left: 12%; animation-delay: 0s; color: #db2777; }
.constellation__node--2 { top: 12%; right: 10%; animation-delay: 1.5s; color: #0f766e; }
.constellation__node--3 { bottom: 14%; left: 10%; animation-delay: 3s; color: #b45309; }
.constellation__node--4 { bottom: 12%; right: 12%; animation-delay: 4.5s; color: #4338ca; }
[data-theme='dark'] .constellation__node--1 { color: #f472b6; }
[data-theme='dark'] .constellation__node--2 { color: #5eead4; }
[data-theme='dark'] .constellation__node--3 { color: #fbbf24; }
[data-theme='dark'] .constellation__node--4 { color: #a5b4fc; }

@keyframes node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.constellation__line {
  stroke: var(--color-border-strong);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  fill: none;
  opacity: 0.5;
  animation: line-flow 3s linear infinite;
}
[data-theme='dark'] .constellation__line { stroke: #334155; opacity: 0.4; }

@keyframes line-flow {
  to { stroke-dashoffset: -16; }
}

.constellation__label {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: translate(-50%, 0);
}

/* ============================================
   BRAND PROMISE STRIP
============================================ */
.promise {
  border-block: 1px solid var(--color-divider);
  padding-block: var(--space-10);
  background: var(--color-surface-2);
}
.promise__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.promise__text {
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--color-text);
}
.promise__text .accent {
  color: var(--color-accent);
}

/* ============================================
   ABOUT
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about__body p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.about__body p:last-child { margin-bottom: 0; }

.commitments {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.commitments li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  font-weight: 500;
  color: var(--color-text);
}
.commitments svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================
   PHILOSOPHY CARDS
============================================ */
.philosophy {
  background: var(--color-surface-2);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

.philo-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.philo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}
.philo-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-tint);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.philo-card__icon svg { width: 22px; height: 22px; }
[data-theme='dark'] .philo-card__icon {
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
}
.philo-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.philo-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS
============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 700px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--gradient-color, transparent) 0%, transparent 55%);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}
.product-card:hover::before { opacity: 0.12; }

.product-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.product-card__logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.product-card__logo svg { width: 60%; height: 60%; }
.product-card__name {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.product-card__tag {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 2px;
}
.product-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  align-self: flex-start;
}
.product-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}
.product-card__link:hover svg { transform: translateX(3px); }

/* Individual product tints */
.product-card[data-brand='hersafe']   { --gradient-color: #db2777; }
.product-card[data-brand='hersafe'] .product-card__logo   { background: linear-gradient(135deg, #db2777, #f472b6); }
.product-card[data-brand='nomadmed']  { --gradient-color: #0f766e; }
.product-card[data-brand='nomadmed'] .product-card__logo  { background: linear-gradient(135deg, #0f5257, #29a2a8); }
.product-card[data-brand='vanguard']  { --gradient-color: #b45309; }
.product-card[data-brand='vanguard'] .product-card__logo  { background: linear-gradient(135deg, #292524, #57534e); }
.product-card[data-brand='krvx']      { --gradient-color: #4338ca; }
.product-card[data-brand='krvx'] .product-card__logo      { background: linear-gradient(135deg, #1e293b, #475569); }

/* ============================================
   TIMELINE
============================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: var(--space-6); }
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--color-border-strong) 10%,
    var(--color-border-strong) 90%,
    transparent 100%);
  pointer-events: none;
}
@media (max-width: 900px) { .timeline::before { display: none; } }

.milestone {
  text-align: center;
  padding-top: var(--space-2);
}
.milestone__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  margin-inline: auto;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--color-bg);
}
.milestone--future .milestone__dot {
  border-color: var(--color-border-strong);
  border-style: dashed;
}
.milestone__year {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}
.milestone--future .milestone__year { color: var(--color-text-faint); }
.milestone__title {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.milestone__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   VALUES
============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.value-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  background: var(--color-surface);
}
.value-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}
.value-card__icon svg { width: 100%; height: 100%; }
.value-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.value-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================
   STATS
============================================ */
.stats {
  background: var(--color-surface-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }
.stat {
  text-align: center;
}
.stat__value {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--color-text-strong);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.stat__value .placeholder {
  color: var(--color-text-faint);
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.5rem;
}

/* ============================================
   NEWS / BLOG
============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.news-card__tag {
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.news-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-block: var(--space-1);
}
.news-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.news-card--placeholder {
  border-style: dashed;
  background: transparent;
}
.news-card--placeholder .news-card__tag {
  color: var(--color-text-faint);
  border-style: dashed;
}

/* ============================================
   CAREERS
============================================ */
.careers {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  background: var(--color-surface-2);
}
.careers__panel {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.careers__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
}
.careers__desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-8);
}

/* ============================================
   CONTACT
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.contact-card__value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.contact-card__value a { color: inherit; }
.contact-card__value a:hover { color: var(--color-accent); }

/* ============================================
   FOOTER
============================================ */
.footer {
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (max-width: 800px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 26rem;
  line-height: 1.5;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.footer__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__list a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__list a:hover { color: var(--color-text); }
.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.footer__social {
  display: flex;
  gap: var(--space-2);
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.footer__social a:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
  background: var(--color-surface-2);
}
.footer__social svg { width: 15px; height: 15px; }

/* ============================================
   AVYRA LOGO MARK (inline SVG utility)
============================================ */
.logo-mark {
  width: 28px;
  height: 28px;
}
