:root {
  --page: #f9f8f7;
  --hero: #eae7df;
  --surface: #e3e2d2;
  --ink: #1c1a15;
  --black: #04060a;
  --yellow: #fad82a;
  --white: #ffffff;
  --line: rgba(28, 26, 21, 0.16);
  --sans: "Inter", Arial, sans-serif;
  --serif: "DM Serif Display", Georgia, serif;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

main {
  display: flex;
  min-height: 0;
  min-width: 0;
  padding: 0 var(--page-gutter);
}

.site-header,
.site-footer {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.header-inner,
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.site-header {
  padding-top: clamp(0.95rem, 1.4vw, 1.25rem);
  padding-bottom: clamp(0.95rem, 1.4vw, 1.25rem);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-name,
.tagline,
.development-status,
.eyebrow,
.hero-statement,
.hero-copy,
.footer-brand,
.footer-tagline,
.copyright {
  margin: 0;
}

.brand-name,
.footer-brand {
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.tagline,
.footer-tagline {
  margin-top: 0.42rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.development-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.56rem;
  color: var(--black);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.development-status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--surface);
}

.hero {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 1440px;
  min-height: 0;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(0.75rem, 2vh, 1.5rem) 0;
}

.hero-band {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  align-items: center;
  background: var(--hero);
  padding: clamp(2.5rem, 6vh, 4.5rem) clamp(2.5rem, 8vw, 7.5rem);
}

.hero-content {
  width: min(100%, 1050px);
  min-width: 0;
}

.eyebrow {
  margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--black);
  font-size: clamp(0.65rem, 0.75vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7.2vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero-title > span {
  display: block;
  white-space: nowrap;
}

.hero-statement {
  max-width: 35rem;
  margin-top: clamp(1.5rem, 3vh, 2.25rem);
  color: var(--black);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-copy {
  max-width: 650px;
  margin-top: 0.7rem;
  font-size: clamp(0.94rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}

.hero-accent {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  width: clamp(1.5rem, 3.6vw, 3.5rem);
  height: 0.28rem;
  background: var(--yellow);
}

.site-footer {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.site-footer::before {
  display: block;
  width: min(100%, 1440px);
  height: 1px;
  margin: 0 auto 0.8rem;
  background: var(--line);
  content: "";
}

.footer-tagline,
.copyright {
  color: rgba(28, 26, 21, 0.72);
  font-size: 0.75rem;
}

.copyright {
  text-align: right;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .development-status {
    font-size: 0.64rem;
  }

  .hero {
    display: block;
    padding: 0;
  }

  .hero-band {
    padding: 2.5rem 1rem 5.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5.2rem);
    line-height: 0.92;
  }

  .hero-title > span {
    white-space: normal;
  }

  .hero-title .version {
    display: block;
  }

  .hero-copy {
    line-height: 1.58;
  }

  .copyright {
    text-align: left;
  }
}
