:root {
  color-scheme: dark;
  --bg: #0a0a0d;
  --panel: #14141b;
  --panel-light: #1b1b24;
  --accent: #e56c2f;
  --accent-bright: #f0843f;
  --text: #f5f5f7;
  --muted: #b2b2c3;
  --stroke: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top, rgba(214, 178, 94, 0.12), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hero {
  min-height: 100vh;
  padding: 32px 8vw 80px;
  position: relative;
  background: linear-gradient(160deg, rgba(16, 16, 26, 0.85), rgba(5, 5, 9, 0.95));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(214, 178, 94, 0.25), transparent 50%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  color: #1b1b1b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(214, 178, 94, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: center;
  margin-top: 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--accent-bright);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1b1b1b;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--text);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-highlight {
  margin-top: 32px;
  padding: 16px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(214, 178, 94, 0.08);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(140deg, rgba(214, 178, 94, 0.2), rgba(20, 20, 27, 0.9));
  border-radius: 24px;
  padding: 2px;
}

.hero-card__inner {
  background: var(--panel);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--stroke);
}

.card-title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card-text {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.hero-stats h3 {
  font-size: 2rem;
  color: var(--accent-bright);
}

.impact-strip {
  background: #0d0d13;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 18px 8vw;
}

.impact-strip__content {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: 600;
  color: var(--accent-bright);
}

.section {
  padding: 100px 8vw;
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

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

.positioning {
  background: var(--panel-light);
}

.positioning-grid,
.services-grid,
.differentials-grid {
  display: grid;
  gap: 24px;
}

.positioning-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.positioning-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease, border 0.3s ease;
}

.positioning-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 178, 94, 0.4);
}

.authority-block {
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(214, 178, 94, 0.3);
  background: linear-gradient(130deg, rgba(214, 178, 94, 0.2), rgba(20, 20, 27, 0.9));
}

.authority-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

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

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
  margin-bottom: 12px;
}

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

.differentials {
  background: var(--panel-light);
}

.differentials-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.differential {
  background: linear-gradient(160deg, rgba(214, 178, 94, 0.12), rgba(20, 20, 27, 0.9));
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
}

.differential span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.differential h3 {
  margin: 12px 0;
}

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

.cta {
  padding-bottom: 140px;
}

.cta-card {
  background: linear-gradient(130deg, rgba(214, 178, 94, 0.35), rgba(10, 10, 13, 0.95));
  padding: 60px 50px;
  border-radius: 28px;
  border: 1px solid rgba(214, 178, 94, 0.4);
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

.footer {
  padding: 60px 8vw;
  background: #050506;
  border-top: 1px solid var(--stroke);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-text p {
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .impact-strip__content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 6vw 60px;
  }

  .nav {
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-card__inner {
    padding: 24px;
  }

  .section {
    padding: 80px 6vw;
  }

  .cta-card {
    padding: 40px 24px;
  }
}
