:root {
  --red: #c53030;
  --red-dark: #7f1d1d;
  --red-light: #f56565;
  --bg: #111111;
  --bg-muted: #181818;
  --border: #2d2d2d;
  --text: #f9fafb;
  --muted: #a0a0a0;
  --white: #ffffff;
  --gray-light: #f3f4f6;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #27272a 0, #050505 60%);
  color: var(--text);
  line-height: 1.7;
}

/* GLOBAL ELEMENTS */

a {
  color: inherit;
  text-decoration: none;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

.btn-large {
  padding: 1rem 2.1rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(197, 48, 48, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(197, 48, 48, 0.8);
}

.btn-inverse {
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-inverse:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 15, 0.92);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-name {
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.hero-text {
  max-width: 40rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
  text-transform: none;
}

.hero-highlight {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

.hero-cta {
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.6rem;
  max-width: 30rem;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(229, 231, 235, 0.22);
  background: rgba(17, 17, 17, 0.95);
  color: var(--gray-light);
}

/* HERO PANEL */

.hero-panel {
  background: radial-gradient(circle at top, #3f1818 0, #141414 55%);
  border-radius: 1.5rem;
  border: 1px solid rgba(248, 113, 113, 0.4);
  padding: 1.8rem 1.55rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8);
}

.panel-title {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 0.9rem;
}

.panel-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.1rem;
}

.panel-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: #fef2f2;
  margin-bottom: 0.45rem;
}

.panel-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--red-light);
}

.panel-text {
  font-size: 0.9rem;
  color: #f9fafb;
}

/* CONTENT BLOCK */

.content-block {
  margin-top: 3.5rem;
}

.section-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.column-title {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 0.35rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--red-light);
}

.column-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.steps-list {
  list-style: none;
  padding-left: 0;
}

.steps-list li {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 0.8rem;
}

.steps-list strong {
  color: var(--white);
}

/* CTA STRIP */

.cta-strip {
  margin-top: 3.5rem;
}

.cta-strip-inner {
  background: linear-gradient(135deg, var(--red-dark), #3f3f46);
  border-radius: 1.6rem;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

.cta-strip-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fef2f2;
  margin-bottom: 0.4rem;
}

.cta-strip-subtitle {
  font-size: 0.95rem;
  color: #fee2e2;
  max-width: 28rem;
}

/* CONTACT BLOCK */

.contact-block {
  margin-top: 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  background: rgba(17, 17, 17, 0.95);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.2rem 1.1rem;
}

.contact-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-text {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1.4rem;
  max-width: 50rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  background: #050505;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    margin-top: 1.2rem;
  }

  .columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  main {
    padding: 2rem 1.1rem 3rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
