:root {
  --background: #fbfbf8;
  --foreground: #1c1c1e;
  --muted: #4d4d50;
  --soft: #5f6063;
  --green: #4caf50;
  --line: rgba(28, 28, 30, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--foreground);
  color: var(--background);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 1.5rem 2.5rem;
  isolation: isolate;
}

.surface {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(115deg, #fbfbf8 0%, #fbfbf8 56%, #eef5ee 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.surface::after {
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  content: "";
  background: linear-gradient(to top, #fbfbf8, rgba(251, 251, 248, 0));
}

.brand-header {
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: 13.125rem;
  height: auto;
}

.hero {
  width: min(100%, 72.5rem);
  margin-top: clamp(8rem, 16vh, 10.25rem);
}

.status {
  display: inline-flex;
  margin: 0 0 2.5rem;
  border: 1px solid rgba(28, 28, 30, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.48rem 0.75rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

h1 {
  max-width: 47.5rem;
  margin: 0;
  color: var(--foreground);
  font-size: clamp(2.2rem, 8vw, 7.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 span {
  display: block;
}

.pitch {
  max-width: 36.875rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin: 5rem 0 0;
  padding: 0;
  color: var(--soft);
  font-size: 0.875rem;
  list-style: none;
}

.signals li {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.signals li:not(:last-child)::after {
  width: 2.5rem;
  height: 1px;
  background: rgba(28, 28, 30, 0.18);
  content: "";
}

@media (min-width: 640px) {
  .page-shell {
    padding: 2rem 2.5rem 3rem;
  }

  .brand-logo {
    width: 15.5rem;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (max-width: 520px) {
  .page-shell {
    min-height: 100svh;
  }

  .brand-logo {
    width: 12.25rem;
  }

  .hero {
    margin-top: 8.25rem;
  }

  .status {
    margin-bottom: 2rem;
  }

  h1 {
    max-width: 20rem;
    font-size: 2.2rem;
    line-height: 0.98;
  }

  .pitch {
    max-width: 18.75rem;
    line-height: 1.95;
  }

  .signals {
    display: grid;
    gap: 1rem;
    margin-top: 4.25rem;
  }

  .signals li::after {
    display: none;
  }
}
