:root {
  color-scheme: dark;
  --background: #070708;
  --panel: #151518;
  --panel-soft: #1d1d21;
  --text: #f7f7f8;
  --muted: #aaaab2;
  --red: #ec0612;
  --red-dark: #83030a;
  --line: rgba(255, 255, 255, 0.1);
  --green: #37d267;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(189, 0, 12, 0.34), transparent 30rem),
    var(--background);
  color: var(--text);
  line-height: 1.75;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 5vw;
  background: rgba(7, 7, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand > span,
.nav a {
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.brand-mark {
  color: var(--red);
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

main {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 7vw;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 44rem;
  color: #c8c8cd;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-icon {
  width: min(320px, 100%);
  margin: auto;
  border-radius: 27%;
  box-shadow: 0 34px 80px rgba(212, 0, 12, 0.28);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-soft);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section-heading h2,
.page-title h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p,
.page-title p,
.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--panel-soft), var(--panel));
}

.number {
  color: var(--red);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-weight: 900;
}

.card h3 {
  margin: 14px 0 8px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(55, 210, 103, 0.24);
  border-radius: 14px;
  background: rgba(55, 210, 103, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.page-title {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--line);
}

.content {
  max-width: 820px;
  padding: 44px 0 90px;
}

.content h2 {
  margin: 44px 0 12px;
  font-size: 1.5rem;
}

.content h3 {
  margin: 28px 0 8px;
}

.content li + li {
  margin-top: 7px;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: rgba(236, 6, 18, 0.08);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

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

.hidden {
  position: absolute;
  left: -9999px;
}

button {
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.site-footer {
  padding: 32px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .brand > span {
    font-size: 0;
  }

  .brand-mark {
    font-size: 0.88rem;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .hero-icon {
    width: 180px;
    grid-row: 1;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
