:root {
  color-scheme: dark;
  --bg: #080807;
  --panel: #11110f;
  --panel-2: #191915;
  --text: #f5f3ec;
  --muted: #aaa59a;
  --line: #2b2923;
  --hot: #ff5a3d;
  --warm: #d6a33b;
  --cool: #67aaf9;
  --green: #79c878;
  --shadow: 0 24px 80px rgb(0 0 0 / 34%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.hero,
.content-band,
.legal-page {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand,
.site-nav,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand img,
.site-footer img {
  display: block;
  height: auto;
}

.site-nav,
.site-footer div {
  gap: 22px;
}

.site-nav a,
.site-footer a,
.consent a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 30px 0 80px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cool);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: #ddd8cf;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

.beta-form {
  display: grid;
  gap: 16px;
  max-width: 680px;
  padding-top: 6px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

label em {
  color: #756f64;
  font-style: normal;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0e0c;
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

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

input:focus,
textarea:focus {
  border-color: var(--cool);
  box-shadow: 0 0 0 3px rgb(103 170 249 / 16%);
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 22px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status[data-tone="success"] {
  color: var(--green);
}

.form-status[data-tone="error"] {
  color: var(--hot);
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel-top,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-top span,
.recommendation span,
.signal span {
  color: var(--muted);
  font-size: 13px;
}

.panel-top strong {
  font-size: 40px;
}

.load-ring {
  display: grid;
  place-items: center;
  width: min(250px, 70vw);
  aspect-ratio: 1;
  margin: 22px auto 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #12120f 58%, transparent 60%),
    conic-gradient(var(--hot) 0 44%, var(--warm) 44% 70%, var(--green) 70% 86%, #2d2c26 86%);
}

.load-ring span {
  display: grid;
  place-items: center;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0c0c0a;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 2%);
}

.signal strong {
  font-size: 18px;
}

.signal i {
  grid-column: 1 / -1;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: var(--bar-color);
}

.signal-hot {
  --bar-color: var(--hot);
}

.signal-warm {
  --bar-color: var(--warm);
}

.signal-cool {
  --bar-color: var(--cool);
}

.signal-green {
  --bar-color: var(--green);
}

.recommendation {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #0d0d0b;
}

.recommendation p {
  margin: 6px 0 0;
  color: #e7e1d8;
  line-height: 1.45;
}

.content-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.content-band div {
  min-height: 250px;
  background: #0e0e0c;
  padding: 26px;
}

.content-band h2 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.1;
}

.content-band p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  padding: 42px 0;
}

.legal-page {
  max-width: 760px;
  padding: 60px 0 100px;
}

.legal-page h1 {
  font-size: clamp(42px, 8vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .hero,
  .content-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
    padding-top: 28px;
  }

  .content-band div {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .hero,
  .content-band,
  .legal-page {
    width: min(100% - 28px, 1120px);
  }

  .site-header,
  .site-footer,
  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer div {
    flex-wrap: wrap;
    gap: 14px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .button {
    width: 100%;
  }
}
