:root {
  --bg: #050505;
  --panel: #0c0c0d;
  --panel-soft: #121214;
  --text: #f5f2eb;
  --muted: rgba(245, 242, 235, 0.68);
  --line: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.05), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.04), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  opacity: 0.4;
}

a,
button {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.topbar,
.section-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 8, 0.55);
}

.wordmark {
  font-family: "Bodoni Moda", serif;
  font-size: 1.78rem;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.desktop-nav,
.topbar-actions,
.hero-actions,
.section-actions,
.cta-links,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav {
  justify-content: center;
}

.desktop-nav a,
.site-footer a,
.menu-sheet-nav a,
.eyebrow,
.app-status,
.social-link,
.primary-link,
.secondary-link {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.desktop-nav a,
.site-footer a {
  font-size: 0.7rem;
  color: rgba(245, 242, 235, 0.72);
}

.social-link,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.menu-button {
  flex-direction: column;
  gap: 6px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
}

.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 4, 5, 0.9);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.menu-sheet.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-sheet-inner {
  width: min(100%, 920px);
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.menu-sheet-copy p {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.menu-sheet-nav {
  display: grid;
  gap: 12px;
}

.menu-sheet-nav a {
  width: fit-content;
  font-family: "Bodoni Moda", serif;
  letter-spacing: -0.06em;
  text-transform: none;
  font-size: clamp(2rem, 6vw, 4rem);
}

.section-shell {
  padding: 72px 24px;
}

.hero-section {
  min-height: calc(100vh - 87px);
  display: grid;
  align-items: center;
}

.hero-grid,
.section-grid,
.content-grid,
.cta-block {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  letter-spacing: -0.08em;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5.1vw, 4.9rem);
  line-height: 1.02;
  max-width: 900px;
}

.hero-copy p,
.cta-copy p,
.info-card p,
.value-card p,
.app-teaser-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hero-copy p {
  max-width: 650px;
  margin: 20px 0 0;
}

.eyebrow {
  font-size: 0.66rem;
  color: rgba(245, 242, 235, 0.45);
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.68rem;
}

.primary-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 242, 235, 0.78);
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: end;
}

.hero-panel-card,
.info-card,
.app-teaser-card,
.value-card,
.cta-block,
.page-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.hero-panel-card {
  padding: 20px;
}

.hero-panel-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.65;
}

.keyword-stack {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.keyword-stack span {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.muted-card {
  background: rgba(255, 255, 255, 0.02);
}

.section-grid {
  display: grid;
  gap: 20px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  max-width: 700px;
  margin-top: 10px;
}

.two-columns,
.value-grid,
.app-overview-grid {
  display: grid;
  gap: 14px;
}

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

.app-overview-grid,
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.app-teaser-card,
.value-card {
  padding: 20px;
}

.app-teaser-card h3,
.value-card h3,
.page-card h2 {
  margin: 12px 0 8px;
  font-family: "Bodoni Moda", serif;
  font-size: 1.6rem;
  letter-spacing: -0.06em;
}

.app-status {
  font-size: 0.64rem;
  color: rgba(245, 242, 235, 0.55);
}

.cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.cta-copy h2,
.page-hero h1 {
  margin: 10px 0 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-main {
  padding: 108px 24px 44px;
}

.page-wrap {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.page-card {
  padding: 24px;
}

.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.85;
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
}

.page-card li {
  margin-bottom: 8px;
}

.page-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .two-columns,
  .app-overview-grid,
  .value-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 56px 20px;
  }

  .topbar {
    padding: 18px 20px;
    grid-template-columns: auto 1fr auto;
  }

  .topbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .topbar {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
    padding: 16px;
  }

  .topbar-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .topbar-actions .social-link {
    display: none;
  }

  .hero-actions,
  .cta-links,
  .page-actions,
  .site-footer,
  .site-footer div {
    flex-direction: column;
    align-items: flex-start;
  }

  .wordmark {
    font-size: 1.55rem;
  }

  .section-shell {
    padding: 44px 16px;
  }

  .page-main {
    padding: 88px 16px 32px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-copy p,
  .cta-copy p,
  .info-card p,
  .value-card p,
  .app-teaser-card p,
  .page-card p,
  .page-card li {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .menu-sheet-inner,
  .page-card,
  .hero-panel-card,
  .info-card,
  .app-teaser-card,
  .value-card,
  .cta-block {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 14px;
  }

  .wordmark {
    font-size: 1.4rem;
  }

  .topbar-actions .primary-link,
  .topbar-actions .secondary-link,
  .hero-actions .primary-link,
  .hero-actions .secondary-link,
  .cta-links .primary-link,
  .cta-links .secondary-link {
    width: 100%;
    justify-content: center;
  }

  .keyword-stack span {
    font-size: clamp(1.3rem, 9vw, 2.2rem);
  }

  .menu-sheet {
    padding: 18px;
  }

  .menu-sheet-inner {
    padding: 18px;
  }

  .menu-sheet-nav a {
    font-size: clamp(1.7rem, 10vw, 2.8rem);
  }
}
