:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #111111;
  --panel-soft: #181818;
  --line: #2d2d2d;
  --text: #f8f6f2;
  --muted: #bdb7ae;
  --accent: #ff7900;
  --accent-2: #f2c15b;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 121, 0, 0.12), transparent 34%),
    radial-gradient(circle at 72% 8%, rgba(242, 193, 91, 0.12), transparent 30%),
    #070707;
}

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

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

.site-header,
footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 900;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
  font-size: 0.96rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button {
  min-width: 42px;
  height: 32px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--accent);
  color: #140a00;
}

.hero,
.section,
.metrics,
.cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 58px 0 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.98;
  max-width: 850px;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lead {
  max-width: 620px;
  color: #ded8cf;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-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 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #140a00;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 121, 0, 0.45);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.76);
}

.media-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-card strong {
  display: block;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics article,
.reason-grid article,
.package-grid article,
.terms article {
  background: rgba(17, 17, 17, 0.94);
}

.metrics article {
  padding: 24px;
}

.metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.metrics span,
.package-grid small,
.terms small {
  color: var(--muted);
}

.section {
  padding: 92px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: start;
}

.section p {
  color: var(--muted);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.reason-grid article {
  padding: 26px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 900;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.coverage img,
.placement-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coverage img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  background: var(--panel);
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.districts span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 121, 0, 0.38);
  border-radius: 4px;
  color: #fff1e4;
  background: rgba(255, 121, 0, 0.08);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.placement-grid article {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  background: var(--panel);
}

.placement-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.placement-grid div {
  padding: 26px;
  align-self: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-grid article,
.terms article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-grid article.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 121, 0, 0.22), rgba(17, 17, 17, 0.94));
}

.package-grid span,
.terms span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.package-grid strong,
.terms strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.terms strong {
  color: var(--accent);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 50px;
  align-items: start;
  margin-top: 92px;
  padding: 44px;
  border: 1px solid rgba(255, 121, 0, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.18), rgba(17, 17, 17, 0.96) 46%),
    var(--panel);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #070707;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 46px 0;
  color: var(--muted);
}

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

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .coverage,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .metrics,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .placement-grid,
  .terms {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer,
  .hero,
  .section,
  .metrics,
  .cta {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    gap: 14px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    gap: 30px;
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .reason-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 70px;
  }

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

  .placement-grid img {
    height: 240px;
  }

  .cta {
    margin-top: 70px;
    padding: 26px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
