:root {
  --bg: #000000;
  --text: #ffffff;
  --green: #008000;
  --green-hover: #006600;
  --muted: #cccccc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid #222;
}

.site-header .logo-link {
  display: inline-block;
}

.site-header .image-url {
  height: 120px;
  width: 120px;
  margin: 0 auto;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  background: #0a0a0a;
}

.nav-bar a {
  color: var(--muted);
}

.nav-bar a:hover {
  color: #fff;
}

.nav-bar .nav-cta {
  color: #fff;
  font-weight: 700;
}

main.wrapper {
  display: table;
  width: 100%;
  min-height: calc(100vh - 200px);
}

section.section {
  display: table-cell;
  vertical-align: middle;
  padding: 2rem 1rem;
  text-align: center;
}

.headline-text2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 2rem 0 1.5rem;
  padding: 0 1.25rem;
}

.headline-text2 span {
  display: block;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.65rem;
}

h1.page-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  margin: 0;
}

.headline-text {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin: 1.5rem 0 1rem;
}

.message-text {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 1.5rem;
}

.button-section {
  text-align: center;
  margin: 1rem 0 2rem;
}

.button-section .button-shape {
  border-radius: 20px;
  font-size: 18px;
  height: 52px;
  max-width: 290px;
  min-width: 262px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  overflow: hidden;
}

.button-section .button {
  transition: 200ms cubic-bezier(0.08, 0.52, 0.52, 1) background-color,
    200ms transform;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.button-backgroundcolor {
  background: var(--green);
  color: #fff;
}

.button-backgroundcolor:hover {
  background: var(--green-hover);
  transform: scale(1.02);
}

.button-text {
  font-size: 24px;
  text-align: center;
}

.content-below {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  text-align: left;
  border-top: 1px solid #222;
}

.content-below h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: #fff;
}

.content-below p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 200;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature {
  padding: 1rem;
  border: 1px solid #222;
  border-radius: 12px;
  background: #0a0a0a;
}

.feature h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.feature p {
  font-size: 0.88rem;
  margin: 0;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.82rem;
  color: #888;
  border-top: 1px solid #222;
}

.site-footer a {
  color: var(--muted);
  margin: 0 0.5rem;
}

.site-footer a:hover {
  color: #fff;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
}

.legal-page h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.legal-page ul {
  margin: 0 0 1rem 1.25rem;
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}
