:root {
  --bg-base: #0a0a0a;
  --bg-elevated: #141414;
  --bg-input: #1c1c1c;
  --fg-primary: #f5f5f0;
  --fg-secondary: #b8b8b0;
  --fg-muted: #85857d;
  --line-strong: #343430;
  --line-soft: #262622;
  --status-active: #6b8a5a;
  --status-wasted: #d46a5e;
  --status-lagging: #b89968;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-base);
  color: var(--fg-primary);
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

p {
  color: var(--fg-secondary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 28px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg-base) 88%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  align-items: baseline;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-tag,
.nav,
.eyebrow,
.label {
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a:hover,
.site-footer a:hover,
.policy a:hover {
  color: var(--fg-primary);
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(32px, 5vw, 84px);
  min-height: 760px;
  overflow: hidden;
  padding: 122px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 76% 46%, rgba(212, 106, 94, 0.08), transparent 34%),
    linear-gradient(90deg, var(--bg-base) 0%, color-mix(in srgb, var(--bg-base) 94%, transparent) 52%, color-mix(in srgb, var(--bg-base) 74%, transparent) 100%),
    repeating-linear-gradient(0deg, transparent 0 92px, rgba(245, 245, 240, 0.045) 93px 94px);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero h1,
.section h2,
.privacy-section h2,
.launch-section h2,
.policy h1 {
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 20px 0 24px;
  max-width: 980px;
}

.section h2 span,
.privacy-section h2 span,
.launch-section h2 span {
  display: block;
}

.hero-text {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--fg-primary);
  border-color: var(--fg-primary);
  color: var(--bg-base);
}

.button.secondary:hover {
  border-color: var(--fg-muted);
}

.product-shot {
  margin: 0;
  position: relative;
  z-index: 2;
}

.product-dashboard,
.product-popup {
  display: block;
  height: auto;
  user-select: none;
}

.product-dashboard {
  border: 1px solid var(--line-soft);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  opacity: 0.9;
  width: min(960px, 64vw);
}

.product-popup {
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-42%);
  width: min(300px, 21vw);
  z-index: 2;
}

.summary-band,
.section,
.privacy-section,
.launch-section,
.policy,
.site-footer {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.summary-band {
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.summary-band > div {
  border-right: 1px solid var(--line-soft);
  padding: 34px 28px 34px 0;
}

.summary-band > div:last-child {
  border-right: 0;
  padding-left: 28px;
}

.summary-band > div:nth-child(2) {
  padding-left: 28px;
}

.summary-band strong {
  display: block;
  font-size: 22px;
  margin: 12px 0 8px;
}

.summary-band p {
  font-size: 14px;
}

.section,
.privacy-section,
.launch-section {
  padding-bottom: 88px;
  padding-top: 88px;
}

.section-heading {
  display: grid;
  gap: 40px;
  grid-template-columns: 0.75fr 1.25fr;
  margin-bottom: 42px;
}

.section h2,
.privacy-section h2,
.launch-section h2,
.policy h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  min-height: 230px;
  padding: 28px;
}

.feature span {
  color: var(--status-wasted);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.feature h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 48px 0 14px;
}

.feature p,
.privacy-list li,
.launch-section p,
.policy p,
.policy li {
  font-size: 16px;
}

.privacy-section {
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 64px;
  grid-template-columns: 0.95fr 1.05fr;
}

.privacy-list,
.policy ul {
  color: var(--fg-secondary);
  font-family: var(--font-sans);
  line-height: 1.65;
  margin: 0;
  padding-left: 22px;
}

.privacy-list li + li,
.policy li + li {
  margin-top: 12px;
}

.launch-section {
  max-width: 900px;
  text-align: center;
}

.launch-section h2 {
  margin-left: auto;
  margin-right: auto;
}

.policy {
  max-width: 860px;
  padding-bottom: 88px;
  padding-top: 150px;
}

.policy h1 {
  margin-bottom: 34px;
}

.policy h2 {
  border-top: 1px solid var(--line-strong);
  font-size: 24px;
  font-weight: 600;
  margin: 54px 0 16px;
  padding-top: 34px;
}

.policy p + p,
.policy p + ul,
.policy ul + p {
  margin-top: 18px;
}

.policy a {
  color: var(--fg-primary);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line-strong);
  color: var(--fg-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 32px;
  padding-top: 32px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    position: absolute;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .nav {
    gap: 14px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 46px;
    padding-top: 150px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, var(--bg-base) 0%, color-mix(in srgb, var(--bg-base) 76%, transparent) 50%, color-mix(in srgb, var(--bg-base) 94%, transparent) 100%),
      repeating-linear-gradient(0deg, transparent 0 74px, rgba(245, 245, 240, 0.055) 75px 76px);
  }

  .product-shot {
    margin-top: 46px;
  }

  .product-dashboard {
    width: 100%;
  }

  .product-popup {
    right: 10px;
    top: auto;
    bottom: -24px;
    transform: none;
    width: min(260px, 48vw);
  }

  .summary-band,
  .feature-grid,
  .section-heading,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .summary-band > div,
  .summary-band > div:nth-child(2),
  .summary-band > div:last-child {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    padding: 28px 0;
  }

  .summary-band > div:last-child {
    border-bottom: 0;
  }

  .feature {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 22px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .product-popup {
    display: none;
  }
}
