:root {
  --bg: #0a0b0e;
  --bg-soft: #12151a;
  --surface: #f5f1eb;
  --surface-strong: #ffffff;
  --text: #121418;
  --text-soft: #68707b;
  --text-on-dark: #f4f0ea;
  --text-muted-dark: #a8adb4;
  --accent: #f57c00;
  --accent-strong: #ff9a28;
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(10, 12, 16, 0.18);
  --container: min(1180px, calc(100vw - 40px));
}

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

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(245, 124, 0, 0.08), transparent 0 18%),
    linear-gradient(180deg, #f9f6f0 0%, #f0ece5 100%);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(13, 14, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffb257 100%);
  color: #121212;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
}

.brand-text {
  display: grid;
  color: var(--text-on-dark);
  text-transform: uppercase;
  line-height: 1;
}

.brand-text strong,
.brand-text span,
.section-tag,
.hero-copy h1,
.panel-value,
.panel-text,
.info-card h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.brand-text strong,
.brand-text span {
  font-size: 1.15rem;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-on-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-meta span {
  color: var(--text-muted-dark);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 82% 36%, rgba(245, 124, 0, 0.14), transparent 0 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text-on-dark);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 68%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
  background-size: 18px 18px;
  opacity: 0.16;
  mask-image: linear-gradient(90deg, black 0 26%, transparent 48%);
}

.hero-track,
.hero-grid-lines {
  position: absolute;
  pointer-events: none;
}

.hero-track {
  top: -2%;
  right: -2%;
  width: 52%;
  height: 106%;
  opacity: 0.44;
  transform: rotate(-14deg);
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 255, 255, 0.1) 46% 54%, transparent 54%),
    repeating-linear-gradient(
      90deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.2) 22px 34px,
      transparent 34px 60px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.12) 14px 24px,
      transparent 24px 46px
    );
  border-radius: 44px;
  mask-image: linear-gradient(135deg, transparent 0 5%, black 22% 86%, transparent 100%);
}

.hero-grid-lines {
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 56px,
      rgba(255, 255, 255, 0.045) 56px 62px
    );
  opacity: 0.24;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 330px);
  gap: 38px;
  align-items: center;
}

.section-tag {
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4rem, 6vw, 6.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 42ch;
  margin: 24px 0 0;
  color: #c0c5cb;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #ff8300 0%, #ff9d29 100%);
  color: #161616;
  box-shadow: 0 18px 34px rgba(245, 124, 0, 0.18);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.02);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 28px 0 0;
  margin: 30px 0 0;
  list-style: none;
  border-top: 1px solid var(--border-dark);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-on-dark);
  font-weight: 600;
}

.point-dot {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245, 124, 0, 0.15);
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.panel-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.16);
}

.accent-card {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.96), rgba(255, 154, 40, 0.96));
  color: #181818;
  border-color: transparent;
}

.panel-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.76;
}

.panel-value {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.panel-text {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.panel-note {
  margin: 8px 0 0;
  line-height: 1.5;
  color: inherit;
  opacity: 0.82;
}

.info-section {
  padding: 78px 0 88px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.info-card {
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(180deg, #14171d 0%, #0f1216 100%);
  color: var(--text-on-dark);
  box-shadow: var(--shadow);
}

.light-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  color: var(--text);
}

.card-label {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.info-card p {
  margin: 18px 0 0;
  color: inherit;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.7;
}

.contact-list a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 34px;
  background: #0b0c0e;
  color: var(--text-on-dark);
}

.site-footer p {
  margin: 0;
  color: var(--text-muted-dark);
}

.site-footer a {
  color: var(--text-on-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-row,
  .footer-row,
  .header-meta,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .button {
    width: 100%;
  }
}
