:root {
  --bg: #080808;
  --text: #f3f3f3;
  --muted: #b8b8b8;
  --soft: #9a9a9a;
  --coral: #e85a4f;
  --coral-hover: #f36d62;
  --line: #242424;
  --field: #121212;
  --field-border: #2c2c2c;
  --danger: #f2b4af;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; border: 0; }
a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-hover); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.site-header {
  padding: 20px 20px 0;
}
.site-header a { display: inline-block; }
.logo-nav { height: 28px; width: auto; display: block; }

.page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 80px;
}
.page-wide { width: min(560px, calc(100% - 40px)); }

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.28) 0%, rgba(8, 8, 8, 0.42) 55%, rgba(8, 8, 8, 0.72) 100%),
    url("/assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 20px 40px;
}
.logo-hero {
  width: min(284px, 78vw);
  height: auto;
  display: block;
}
.tagline {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(17px, 2.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.soon {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  min-width: 168px;
  padding: 13px 28px;
  border: none;
  border-radius: 8px;
  background: var(--coral);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.btn:hover { background: var(--coral-hover); color: #111; }
.btn:disabled { opacity: 0.6; cursor: wait; }
.btn-block { width: 100%; margin-top: 22px; }

.site-footer {
  padding: 22px 20px 28px;
  text-align: center;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 14px;
}
.site-footer a,
.site-footer span { color: var(--soft); }
.site-footer a:hover { color: var(--coral); }
.hero .site-footer { padding-bottom: 28px; }

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  margin: 40px 0 12px;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  font-weight: 700;
}
.lede, .meta {
  color: var(--muted);
  margin: 14px 0 0;
}
.meta { font-size: 14px; }
.policy p,
.policy li { color: #d6d6d6; }
.policy ul { padding-left: 1.2em; margin: 8px 0 16px; }
.policy li { margin: 4px 0; }
.policy p { margin: 0 0 14px; }

.table-wrap { overflow-x: auto; margin: 18px 0 28px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid var(--line);
}
th { color: #fff; font-weight: 700; }
td { color: #d0d0d0; }
caption {
  caption-side: top;
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-mail {
  display: inline-block;
  margin: 18px 0 28px;
  color: var(--coral);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ececec;
}
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--field-border);
  border-radius: 8px;
  background: var(--field);
  color: var(--text);
  outline: none;
}
textarea { resize: vertical; min-height: 140px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9a9a9a 50%), linear-gradient(135deg, #9a9a9a 50%, transparent 50%); background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 32px; }
input:focus, select:focus, textarea:focus { border-color: var(--coral); }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
}
.check input { margin-top: 3px; accent-color: var(--coral); width: 16px; height: 16px; flex: 0 0 auto; }
.form-error {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--danger);
}
.thanks {
  padding: 28px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 560px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .site-header { padding: 24px 32px 0; }
  .page, .page-wide { width: min(720px, calc(100% - 64px)); }
  .page-wide { width: min(560px, calc(100% - 64px)); }
}

@media (max-width: 559px) {
  th, td { min-width: 140px; }
}
