/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── VARIABLES ── */
:root {
  --bg:      #0c0c0c;
  --surface: #111111;
  --text:    #e2e2e0;
  --muted:   rgba(226,226,224,0.42);
  --dim:     rgba(226,226,224,0.18);
  --line:    rgba(255,255,255,0.06);
  --accent:  #6B8E23;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.nav-logo img { height: 24px; display: block; }
.nav-logo-text {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  font-size: 12px; font-weight: 600;
  background: var(--text); color: var(--bg);
  padding: 8px 20px; text-decoration: none;
  letter-spacing: 0.05em; transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* ── LAYOUT ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 52px; }

.section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.sec-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.08; margin-bottom: 14px; color: var(--text);
}
.sec-body {
  font-size: 14px; font-weight: 300; color: var(--muted);
  line-height: 1.85; max-width: 520px; margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ── */
.page-top {
  padding: 130px 52px 72px;
  border-bottom: 1px solid var(--line);
  max-width: 1100px; margin: 0 auto;
}
.page-top .sec-eyebrow { text-align: left; }
.page-top h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; color: var(--text); margin-bottom: 16px;
}
.page-top p {
  font-size: 15px; font-weight: 300;
  color: var(--muted); max-width: 520px; line-height: 1.8;
}

/* ── PILLS ── */
.pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.03em; white-space: nowrap;
}
.pill::before { content: '✓\00a0\00a0'; color: var(--accent); }

/* ── HW CARDS ── */
.hw-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 52px; text-align: left;
}
.hw-block { display: flex; flex-direction: column; }
.hw-image {
  width: 100%; aspect-ratio: 3/2;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 28px;
  border-bottom: 2px solid var(--accent);
}
.hw-image img {
  max-width: 58%; max-height: 78%;
  object-fit: contain; opacity: 0.9;
  transition: transform 0.5s;
}
.hw-image:hover img { transform: scale(1.04); }
.hw-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 8px;
}
.hw-name {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px;
}
.hw-badge {
  font-size: 11px; color: var(--accent);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 6px;
}
.hw-badge::before { content: '—'; color: var(--dim); }
.hw-specs { list-style: none; }
.hw-specs li {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px; gap: 12px;
}
.hw-specs li:first-child { border-top: 1px solid var(--line); }
.sk { color: var(--dim); white-space: nowrap; }
.sv { color: var(--text); text-align: right; }
.sd { color: var(--muted); text-align: right; font-style: italic; }
.hw-kit { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.hw-kit-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 10px;
}
.hw-kit ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.hw-kit li {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.hw-kit li::before { content: '—'; color: var(--dim); flex-shrink: 0; }

/* ── NOTICE ── */
.notice {
  max-width: 620px; margin: 32px auto 0;
  padding: 20px 26px;
  border-left: 2px solid var(--accent);
  background: rgba(107,142,35,0.04);
  text-align: left;
}
.notice p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.9; }
.notice strong { color: var(--text); font-weight: 600; }

/* ── TEXT BLOCKS (inner pages) ── */
.text-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px; text-align: left;
}
.text-block h4 {
  font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
  padding-top: 16px; border-top: 2px solid var(--line);
}
.text-block p {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}
.text-block ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.text-block li {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.6;
}
.text-block li::before { content: '—'; color: var(--dim); flex-shrink: 0; margin-top: 2px; }

/* ── FORM ── */
.form-outer { max-width: 520px; margin: 40px auto 0; text-align: left; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim);
}
.field label .opt { font-weight: 300; text-transform: none; letter-spacing: 0; color: rgba(226,226,224,0.14); }
.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; width: 100%; transition: border-color 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent); }
.field select { cursor: pointer; }
.field select option { background: #1a1a1a; color: var(--text); }
.field input::placeholder,
.field textarea::placeholder { color: var(--dim); }
.field textarea { resize: none; height: 80px; }

/* Checkboxes */
.check-group { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.check-row {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
}
.check-row:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.02); }
.check-row input[type="checkbox"] { display: none; }
.check-box {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.check-row input:checked ~ .check-box {
  background: var(--accent); border-color: var(--accent);
}
.check-row input:checked ~ .check-box::after {
  content: '✓'; font-size: 10px; color: #fff; font-weight: 700;
}
.check-label { font-size: 13px; color: var(--muted); font-weight: 300; }

.submit-btn {
  width: 100%; height: 48px; margin-top: 10px;
  background: var(--text); color: var(--bg);
  border: none; font-size: 12px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity 0.2s; font-family: 'Inter', sans-serif;
}
.submit-btn:hover { opacity: 0.88; }
.submit-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── FOOTER ── */
footer {
  padding: 26px 52px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.foot-logo {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
footer span { font-size: 11px; color: var(--dim); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .wrap { padding: 0 20px; }
  .page-top { padding: 110px 20px 56px; }
  .section { padding: 60px 0; }
  .hw-pair { grid-template-columns: 1fr; gap: 48px; }
  .text-grid { grid-template-columns: 1fr; gap: 32px; }
  .row2 { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 22px 20px; }
}
@media (max-width: 480px) {
  .sec-title { font-size: 24px; }
  .page-top h1 { font-size: 30px; }
}
