/* MultiCopy — soft futuristic / twilight UI */

:root {
  /* Lighter than “void black”: airy slate, still tech */
  --bg: #1c2230;
  --bg-raised: #252c3d;
  --bg-tint: #202736;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-hover: rgba(255, 255, 255, 0.13);
  --text: #f1f5f9;
  --text-muted: #a3b0c4;
  --border: rgba(255, 255, 255, 0.1);
  --border-bright: rgba(255, 255, 255, 0.18);
  --violet: #94a3ff;
  --cyan: #38bdf8;
  --accent-mid: #818cf8;
  --ring: rgba(56, 189, 248, 0.5);
  --glow-cyan: rgba(56, 189, 248, 0.14);
  --glow-violet: rgba(148, 163, 255, 0.14);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --measure: 38rem;
  --content-max: 68rem;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-glass: 0 10px 36px rgba(15, 23, 42, 0.2);
  --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.12);
  --space-section: clamp(3.25rem, 6vw, 5rem);
  --space-block: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

.app {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(165deg, #181e2c 0%, var(--bg) 45%, #1f2636 100%);
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Soft grid + diffuse glow (friendly, not ominous) */
.app::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 70% at 50% -8%, black 18%, transparent 68%);
}

.app::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 12% 22%, var(--glow-violet), transparent 58%),
    radial-gradient(ellipse 70% 50% at 88% 18%, var(--glow-cyan), transparent 58%),
    radial-gradient(ellipse 55% 45% at 50% 95%, rgba(129, 140, 248, 0.08), transparent 60%);
}

.app > * {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(var(--content-max), 100% - clamp(1rem, 5vw, 2.5rem));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(28, 34, 48, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 4rem;
  padding-block: 0.35rem;
}

@media (max-width: 719px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
}

.site-header__cta {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.site-header__seg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

/* Explicit colors so visited links never turn default browser blue */
.site-header__seg--win,
.site-header__seg--win:visited {
  color: #0c1222;
  background: linear-gradient(180deg, #f0f4ff 0%, #dce5ff 100%);
}

.site-header__seg--win:hover {
  background: linear-gradient(180deg, #f7f9ff 0%, #e8eeff 100%);
  color: #060910;
}

.site-header__seg--mac,
.site-header__seg--mac:visited {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.07);
  border-left: 1px solid var(--border);
}

.site-header__seg--mac:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header__seg:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  z-index: 1;
}

.site-header__seg-icon {
  flex-shrink: 0;
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

/* Fixed box centers the asset; avoids uneven padding in the PNG reading as “off” */
.brand__mark-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--border);
  background: rgba(0, 0, 0, 0.15);
  line-height: 0;
}

.brand__mark {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  line-height: 1;
  /* Align to cap height with the square mark; descenders on “y” pull normal centering down */
  transform: translateY(-0.06em);
}

.nav {
  display: none;
  justify-self: center;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.18s ease;
}

.btn--primary {
  color: #0f172a;
  background: linear-gradient(135deg, #c4d0ff 0%, #7dd3fc 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 1px 2px rgba(15, 23, 42, 0.12);
}

.btn--primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 4px 12px rgba(15, 23, 42, 0.18);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-bright);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--cyan) 40%, var(--border));
  background: var(--surface-hover);
  color: var(--text);
}

.btn--lg {
  padding: 0.75rem 1.3rem;
  font-size: 0.9375rem;
  border-radius: calc(var(--radius-sm) + 2px);
}

.btn--text {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  font-weight: 600;
}

.btn--text:hover {
  color: var(--violet);
}

.btn--text:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.download-btn {
  gap: 0.5rem;
}

.download-btn__icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.download-btn__meta {
  margin-left: 0.15rem;
  font-size: 0.8em;
  font-weight: 600;
  opacity: 0.75;
}

/* Hero */

.hero {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(3.5rem, 9vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}

.hero__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
}

.hero__main {
  min-width: 0;
  max-width: 42rem;
}

.hero__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .hero__downloads .download-btn {
    flex: 1 1 auto;
    min-width: min(100%, 12.5rem);
    justify-content: center;
  }
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  background: linear-gradient(120deg, #f8fafc 0%, #c4b5fd 38%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero__aside {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__aside {
    justify-content: flex-end;
  }
}

/* Product shot: ambient glow + float + shine (honors prefers-reduced-motion) */
.hero__shot-wrap {
  position: relative;
  max-width: min(320px, 100%);
  padding: 0.5rem;
  perspective: 1400px;
  animation: hero-shot-float 5.5s ease-in-out infinite;
}

.hero__shot-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 85%;
  height: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(129, 140, 248, 0.45) 0%,
    rgba(56, 189, 248, 0.15) 45%,
    transparent 70%
  );
  filter: blur(28px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
  animation: hero-shot-glow 4s ease-in-out infinite alternate;
}

.hero__shot-wrap:hover {
  animation-play-state: paused;
}

.hero__shot-wrap:hover .hero__shot {
  transform: rotateX(4deg) rotateY(-7deg) scale(1.03);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 60px rgba(56, 189, 248, 0.18);
}

.hero__shot {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid color-mix(in srgb, var(--cyan) 35%, var(--border-bright));
  background: var(--bg-raised);
  box-shadow:
    var(--shadow-glass),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  line-height: 0;
  transform-style: preserve-3d;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.hero__shot::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 65%
  );
  transform: translateX(-120%) rotate(8deg);
  animation: hero-shot-shine 7s ease-in-out infinite;
  pointer-events: none;
}

.hero__shot-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

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

@keyframes hero-shot-glow {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.92);
  }
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes hero-shot-shine {
  0%,
  58% {
    transform: translateX(-120%) rotate(8deg);
  }
  68% {
    transform: translateX(120%) rotate(8deg);
  }
  100% {
    transform: translateX(120%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shot-wrap,
  .hero__shot-wrap::before,
  .hero__shot::after {
    animation: none !important;
  }

  .hero__shot-wrap:hover .hero__shot {
    transform: none;
  }
}

/* Sections */

.section {
  padding: var(--space-section) 0;
}

.section--tint {
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-raised) 100%);
  border-block: 1px solid var(--border);
}

.section__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 40rem;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.section__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section__sub em {
  font-style: normal;
  font-weight: 600;
  color: var(--cyan);
}

/* Features: balanced 2×2 + 1 (tablet), 3 + 2 centered (desktop) */

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

/* Tablet: two columns, last card centered on its own row */
@media (min-width: 560px) and (max-width: 899px) {
  .feature-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
  }

  .feature-card:nth-child(-n + 4) {
    grid-column: span 6;
  }

  .feature-card:nth-child(5) {
    grid-column: 4 / span 6;
  }
}

/* Desktop: three on top, two centered below (no orphan card) */
@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .feature-card:nth-child(-n + 3) {
    grid-column: span 4;
  }

  .feature-card:nth-child(4) {
    grid-column: 3 / span 4;
  }

  .feature-card:nth-child(5) {
    grid-column: 7 / span 4;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.25rem 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.15s ease;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--violet) 28%, var(--border));
  background: var(--surface-hover);
}

.feature-card__step {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  opacity: 0.85;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.feature-card__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* Pills */

.pill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) and (max-width: 899px) {
  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 900px) {
  .pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.pill {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--violet) 35%, var(--border));
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.22);
}

.pill__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.4rem;
}

.pill__value {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* Install */

.install-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-glass);
}

.install-panel__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  padding-bottom: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  border-bottom: 1px solid var(--border);
}

.install-columns {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .install-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }
}

.install-block {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}

.install-block__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.install .steps {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 42rem;
  color: var(--text-muted);
}

.install-block .steps {
  max-width: none;
}

.install .steps li {
  margin-bottom: 0.65rem;
  padding-left: 0.35rem;
  line-height: 1.65;
}

.install .steps li:last-child {
  margin-bottom: 0;
}

.inline-code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.88em;
  background: var(--bg-raised);
  padding: 0.18em 0.45em;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--cyan);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.callout {
  max-width: 40rem;
  margin-inline: auto;
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  backdrop-filter: blur(8px);
}

.callout__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.callout__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.install__cta {
  margin: 0;
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(24, 30, 42, 0.72);
}

.site-footer__inner {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem 2rem;
  }

  .site-footer__nav {
    justify-self: end;
  }
}

.site-footer__start {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.site-footer__brand img {
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(129, 140, 248, 0.15);
}

.site-footer__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 26rem;
  line-height: 1.55;
}

.site-footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}

.site-footer__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--cyan);
}

/* -------------------------------------------------------------------------
   Mobile & tablet: spacing, touch targets, overflow (desktop unchanged)
   ------------------------------------------------------------------------- */

@media (max-width: 899px) {
  .hero__layout {
    gap: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero {
    padding-top: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 639px) {
  .section {
    padding-top: clamp(2.25rem, 7vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 7vw, 3.5rem);
  }

  .hero__downloads {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__downloads .download-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .install-panel__downloads {
    flex-direction: column;
    align-items: stretch;
  }

  .install-panel__downloads .download-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .feature-card {
    padding: 1.15rem 1.2rem 1.25rem;
  }

  .pill {
    padding: 1.2rem 1.25rem;
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    row-gap: 0.85rem;
  }

  .site-footer__link {
    padding: 0.35rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 719px) {
  .site-header__inner {
    min-height: 3.5rem;
    gap: 0.5rem 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .site-header__seg {
    min-height: 44px;
    padding: 0.5rem 0.75rem;
  }

  .site-header__seg-icon {
    width: 16px;
    height: 16px;
  }
}
