* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #14110f;
  --ink: #f3ede4;
  --muted: #8a8076;
  --line: #262019;
  --acc: #ff6f5e;
  --display: "Sora", system-ui, sans-serif;
  --sans: "Inter Tight", system-ui, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--acc);
  text-decoration: none;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---------- header ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand b {
  color: var(--acc);
}

.top-mail {
  font-size: 0.84rem;
  color: var(--muted);
}

.top-mail:hover {
  color: var(--ink);
}

/* ---------- main ---------- */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.giant {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.giant .l1 {
  display: block;
  font-size: clamp(3rem, 11vw, 8rem);
}

.giant .l1 .q {
  color: var(--acc);
}

.giant .l2 {
  display: block;
  font-size: clamp(2.3rem, 8.4vw, 6rem);
  color: #b8b0a6;
  font-weight: 700;
}

.strap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.desc {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 26ch;
  color: #d2cbc0;
}

.cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--acc);
  color: #231009;
  padding: 13px 26px;
  border-radius: 8px;
  transition: filter 0.16s ease, transform 0.16s ease;
}

.cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---------- spec bar ---------- */
.specbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.specbar .c {
  padding: 18px 16px 20px;
  border-right: 1px solid var(--line);
}

.specbar .c:last-child {
  border-right: none;
}

.specbar .k {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.specbar .v {
  font-size: 0.9rem;
  font-weight: 600;
}

.specbar .v a {
  color: var(--acc);
}

/* ---------- footer ---------- */
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--muted);
}

.reg {
  color: var(--muted);
}

.reg:hover {
  color: var(--acc);
}

@media (max-width: 600px) {
  .specbar .c {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
