:root {
  --bg: #000;
  --bg-alt: #020707;
  --panel: #010505;
  --line: #222;
  --line-soft: #1a2121;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --accent: #f2a900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.page-shell {
  max-width: 1680px;
  margin: 0 auto;
  background: var(--bg);

  border-radius: 0 0 22px 22px;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
  position: fixed;
  width: stretch;
  top: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 10;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.brand span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 1rem;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 34px;
  height: 3px;
  background: #cfcfcf;
  border-radius: 4px;
  content: "";
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -10px;
}

.nav-toggle span::after {
  position: absolute;
  top: 10px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  width: min(980px, 100% - 3rem);
  margin: 0 auto;
  padding: clamp(3.4rem, 7vw, 6.8rem) 0 7rem;
}

.eyebrow {
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.1rem);
  line-height: 1.03;
}

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

.hero-copy {
  margin: 1.6rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 2rem);
  line-height: 1.42;
  max-width: 32ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 2.1rem;
}

.hero-meta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.hero-meta p::before {
  content: "◉";
  color: var(--accent);
  margin-right: 0.55rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  width: min(980px, 100% - 3rem);
  margin: 0 auto;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  margin-bottom: 1.8rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.detail-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: #010505;
  padding: 1.6rem;
  min-height: 172px;
}

.card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f9393;
  font-weight: 600;
  font-size: 1rem;
}

.card-value {
  margin: 1.3rem 0 0;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
}

.prose p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.6rem);
  max-width: 50ch;
  line-height: 1.56;
}

.prose ul {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.prose li {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.2vw, 1.45rem);
}

.prose li::before {
  content: "◉";
  color: var(--accent);
  margin-right: 0.65rem;
}

#quote h2 {
  margin-bottom: 2.1rem;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #949494;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

label.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #030a0a;
  color: #f5f5f5;
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #656565;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea {
  min-height: 146px;
  resize: vertical;
}

button {
  grid-column: 1 / -1;
  min-height: 66px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #0c0c0c;
  font-size: 1.08rem;
  cursor: pointer;
}

button:disabled {
  opacity: 0.75;
  cursor: wait;
}

#form-status {
  grid-column: 1 / -1;
  margin: -0.4rem 0 0;
  min-height: 1.3rem;
  color: #9da2a2;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer .brand {
  margin: 0;
  font-size: 2rem;
}

.site-footer small {
  color: #9a9a9a;
  font-size: 0.9rem;
}

.copyright {
  margin: 0;
  color: #8b8b8b;
  text-align: right;
  max-width: 46ch;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    padding: 1.5rem;
  }

  .brand {
    font-size: 3rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #020202;
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid #101010;
  }

  .hero {
    padding-top: 10rem;
  }
  .container {
    width: calc(100% - 3rem);
  }

  .detail-grid,
  form {
    grid-template-columns: 1fr;
  }

  .cta,
  button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright {
    text-align: left;
  }
}
