:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: #151515;
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --muted-2: #898989;
  --red: #e10600;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.16), transparent 30rem),
    radial-gradient(circle at 20% 10%, rgba(225, 6, 0, 0.08), transparent 20rem),
    var(--bg);
  color: var(--text);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-mark { width: 56px; height: auto; display: block; }
.brand-name { font-size: 1.15rem; }
.nav { display: flex; gap: 24px; color: var(--muted); font-size: 0.95rem; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--white); }
.hero, .section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding: 60px 0 80px;
}
.eyebrow, .section-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
}
.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(225, 6, 0, 0.24);
}
.button-primary:hover { background: #ff1710; }
.button-secondary {
  border-color: var(--panel-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.button-secondary:hover { border-color: rgba(255, 255, 255, 0.22); }
.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--panel-border);
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -70px;
  background: var(--red);
  filter: blur(80px);
  opacity: 0.42;
}
.hero-card img { width: min(260px, 80%); height: auto; align-self: center; margin-top: 20px; }
.hero-card p {
  position: relative;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
.section {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.two-columns {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 50px;
}
.rich-text { color: var(--muted); font-size: 1.08rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 24px;
}
.card.highlighted {
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.26), rgba(255,255,255,0.045));
  border-color: rgba(225, 6, 0, 0.42);
}
.card p { color: var(--muted); margin-bottom: 0; }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: start;
}
.contact-intro { color: var(--muted); font-size: 1.08rem; }
.contact-form {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 8px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  margin-bottom: 16px;
  font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(225, 6, 0, 0.55);
  border-color: rgba(225, 6, 0, 0.8);
}
.checkbox {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.checkbox input { width: auto; margin-top: 4px; }
.form-message {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}
.form-message.success {
  background: rgba(64, 180, 95, 0.14);
  border: 1px solid rgba(64, 180, 95, 0.45);
  color: #b9ffc8;
}
.form-message.error {
  background: rgba(225, 6, 0, 0.14);
  border: 1px solid rgba(225, 6, 0, 0.45);
  color: #ffb2af;
}
.form-note { margin: 14px 0 0; color: var(--muted-2); font-size: 0.86rem; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer a { color: var(--muted); }
.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 90px;
}
.legal-page h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
.legal-block {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 26px;
  margin: 22px 0;
}
.legal-block p, .legal-block li { color: var(--muted); }
@media (max-width: 920px) {
  .hero, .two-columns, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 36px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { display: none; }
}
@media (max-width: 620px) {
  .site-header, .hero, .section, .site-footer, .legal-page { width: min(100% - 28px, 1120px); }
  .cards { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .hero-card { min-height: 280px; }
}
