:root {
  --bg: #090d18;
  --bg-strong: #0f1629;
  --surface: #12192d;
  --surface-alt: #17213d;
  --text: #f5f7ff;
  --muted: #aab5d8;
  --muted-strong: #d9e0f4;
  --accent: #ff667f;
  --accent-glow: rgba(255, 102, 127, 0.28);
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 82px rgba(1, 5, 16, 0.42);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 84% 10%, rgba(109, 168, 255, 0.14), transparent 18%),
    radial-gradient(circle at 14% 86%, rgba(255, 102, 127, 0.1), transparent 20%),
    linear-gradient(180deg, #090c16 0%, #0f1424 45%, #090c16 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%),
    linear-gradient(transparent, rgba(255, 255, 255, 0.012));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(18, 20, 28, 0.95);
  backdrop-filter: blur(18px);
}

.site-header-inner,
.hero,
.section {
  margin-inline: auto;
}

.site-header-inner {
  width: min(calc(100% - 40px), 1500px);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero,
.section {
  width: min(calc(100% - 40px), var(--max-width));
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-mark svg {
  width: 16px;
  height: 16px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.brand-copy strong,
.site-nav-link,
.mobile-menu-link,
.button,
.nav-cta,
.eyebrow,
.card-index,
.card-kicker,
.step-no {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: 0.12em;
}

.brand-copy strong {
  font-size: 0.94rem;
}

.brand-copy span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-link,
.mobile-menu-link {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 180ms ease;
}

.site-nav-link:hover,
.mobile-menu-link:hover,
.site-nav-link[aria-current="page"],
.mobile-menu-link[aria-current="page"] {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 20, 28, 0.95);
}

.mobile-menu-inner {
  width: min(calc(100% - 40px), 1500px);
  margin-inline: auto;
  padding: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-link {
  font-size: 0.84rem;
  letter-spacing: 0.2em;
}

.mobile-menu-cta {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button-primary {
  color: #121520;
  background: linear-gradient(135deg, #ff8797, var(--accent));
  box-shadow: 0 18px 36px var(--accent-glow);
}

.nav-cta {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  margin-top: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(25, 33, 63, 0.98), rgba(13, 19, 37, 0.98) 56%, rgba(10, 15, 29, 0.98));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-copy {
  position: relative;
  align-self: center;
  padding: 48px 22px 44px 18px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 54px;
  bottom: 52px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 102, 127, 0),
    rgba(255, 102, 127, 0.95) 20%,
    rgba(255, 255, 255, 0.18)
  );
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero-media {
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-frame {
  overflow: hidden;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: #0b1020;
  box-shadow: var(--shadow);
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 56% 34%;
  filter: saturate(0.95) contrast(1.04) brightness(0.9);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 102, 127, 0.8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--accent);
}

.lead,
.section-side,
.quote-card p,
.insight-card p,
.summary-note,
.step-card p,
.bike-card p,
.people-copy p,
.people-note p,
.contact-copy p,
.contact-note,
.hero-caption p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.76;
}

.lead {
  max-width: 37rem;
  margin-top: 26px;
}

.hero-proof,
.summary-points,
.people-points,
.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-proof {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.hero-proof li {
  position: relative;
  padding: 14px 16px 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  line-height: 1.68;
}

.hero-proof li::before,
.summary-points li::before,
.people-points li::before,
.contact-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.1em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.summary-points li::before,
.people-points li::before,
.contact-points li::before {
  left: 0;
  top: 0.72em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-stats {
  margin: 44px 0 0;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-stats dd {
  margin: 9px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section {
  padding: 88px 0;
}

.proof-band {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-pill {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  box-shadow: var(--shadow);
}

.fit-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fit-panel,
.trust-card,
.team-card,
.team-quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.fit-panel,
.trust-card,
.team-card,
.team-quote-card {
  padding: 30px;
}

.fit-panel h3,
.team-card h3 {
  margin-top: 14px;
  font-size: 1.48rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.fit-panel-alt {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 102, 127, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface-alt);
}

.fit-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fit-list li,
.contact-step span {
  color: var(--muted-strong);
  line-height: 1.72;
}

.fit-list li {
  position: relative;
  padding-left: 18px;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

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

.trust-card p,
.team-card p,
.contact-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.section-heading h2,
.people-copy h2,
.contact-copy h2 {
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading-split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 24px;
}

.section-side,
.summary-note,
.contact-note,
.hero-caption p,
.people-note p {
  margin: 0;
}

.hero-caption,
.quote-card,
.insight-card,
.process-summary,
.step-card,
.media-video-card,
.bike-card,
.people-copy,
.people-note,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-caption,
.quote-card,
.insight-card,
.process-summary,
.step-card,
.bike-card,
.people-copy,
.people-note {
  padding: 30px;
}

.card-index,
.card-kicker,
.step-no {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.insight-layout {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.quote-card {
  background:
    linear-gradient(135deg, rgba(255, 102, 127, 0.15), rgba(109, 168, 255, 0.06)),
    #12192f;
}

.quote-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.45;
}

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

.insight-card h3,
.process-summary h3,
.step-card h3,
.bike-card h3 {
  margin-top: 14px;
  font-size: 1.48rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.insight-card p,
.step-card p,
.bike-card p {
  margin: 12px 0 0;
}

.process-showcase {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.media-video-card {
  padding: 18px;
  overflow: hidden;
}

.media-video-card video,
.video-fallback img {
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  background: #090c16;
}

.video-fallback {
  display: none;
}

.preview-static .video-fallback {
  display: block;
}

.preview-static .media-video-card video {
  display: none;
}

.summary-points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.summary-points li,
.people-points li,
.contact-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.summary-note {
  margin-top: 22px;
}

.process-steps {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-no {
  color: var(--accent);
}

.step-card h3 {
  font-size: 1.34rem;
}

.bike-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}

.bike-card-wide {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 102, 127, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface-alt);
}

.vision-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.vision-photo,
.vision-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.vision-photo {
  overflow: hidden;
  background: #0b1020;
}

.vision-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.vision-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 102, 127, 0.09), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface);
}

.vision-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.76;
}

.people-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

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

.team-quote-card {
  background:
    linear-gradient(135deg, rgba(255, 102, 127, 0.15), rgba(109, 168, 255, 0.06)),
    #12192f;
}

.team-quote-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.6;
}

.people-copy {
  padding: 34px;
}

.people-copy p {
  margin-top: 20px;
}

.team-quote {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 1.05rem;
  line-height: 1.7;
}

.people-points,
.contact-points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.people-media {
  display: grid;
  gap: 18px;
}

.people-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #0b1020;
  box-shadow: var(--shadow);
}

.people-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 38%;
  filter: saturate(0.95) contrast(1.03) brightness(0.92);
}

.people-note p {
  margin-top: 10px;
}

.contact-panel {
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 102, 127, 0.09), transparent 18%),
    radial-gradient(circle at 14% 76%, rgba(113, 179, 255, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(24, 31, 59, 0.98), rgba(10, 14, 26, 0.98));
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted-strong);
}

.contact-helper {
  max-width: 34rem;
}

.contact-flow {
  display: grid;
  gap: 12px;
}

.contact-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-step strong {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 102, 127, 0.14);
  color: var(--accent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1180px) {
  .site-nav,
  .nav-actions > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .proof-band,
  .fit-grid,
  .trust-grid,
  .section-heading-split,
  .insight-layout,
  .process-showcase,
  .bike-grid,
  .vision-shell,
  .team-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    min-height: 620px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  .hero,
  .section {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header-inner {
    padding: 14px 0;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.64rem;
  }

  .button {
    width: 100%;
  }

  .mobile-menu-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero {
    padding: 18px;
    border-radius: 30px;
  }

  .hero-copy {
    padding: 28px 6px 8px 14px;
  }

  .hero-copy::before {
    top: 38px;
    bottom: 22px;
  }

  .hero-copy::after {
    top: 24px;
  }

  .hero-frame {
    min-height: 430px;
  }

  .hero-frame img {
    object-position: 58% 30%;
  }

  .hero-caption,
  .quote-card,
  .insight-card,
  .process-summary,
  .step-card,
  .bike-card,
  .vision-copy,
  .people-copy,
  .people-note,
  .contact-panel {
    padding: 26px 22px;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .hero-stats,
  .insight-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .media-video-card {
    padding: 14px;
  }

  .media-video-card video,
  .video-fallback img {
    aspect-ratio: 5 / 4;
  }

  .people-photo img {
    aspect-ratio: 5 / 6;
    object-position: 56% 34%;
  }

  .section {
    padding: 74px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .media-video-card video {
    display: none;
  }

  .video-fallback {
    display: block;
  }
}


/* menu-layout-fix:start */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  background: rgba(18, 20, 28, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.site-header-inner {
  width: min(100%, 1500px);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
}

.brand {
  flex: 0 0 auto;
}

.brand-copy strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-copy span {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 0 0 auto;
}

.site-nav-link,
.mobile-menu-link {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.site-nav-link[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-cta {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 0.8rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6c84 100%);
  box-shadow: 0 18px 40px rgba(255, 90, 116, 0.22);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #ff6780 0%, #ff7b91 100%);
}

.menu-toggle {
  display: none;
}

@media (min-width: 1024px) {
  .site-header-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1280px) {
  .site-header-inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (max-width: 1280px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav-link {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 1120px) {
  .site-nav,
  .nav-actions > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  .mobile-menu-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }
}
/* menu-layout-fix:end */
