:root {
  --bg: #f5f6f8;
  --charcoal: #1f2125;
  --charcoal-2: #2b2f33;
  --panel: #111215;
  --accent: #e2231a;
  --text: #dfe2e6;
  --muted: #9aa0a8;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: #121418;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(245, 246, 248, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(226, 35, 26, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(120deg, #f5f6f8 0%, #f5f6f8 55%, #ffffff 55%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 45%;
  height: 140%;
  background: linear-gradient(180deg, var(--charcoal-2), #1a1c1f);
  transform: skewX(-12deg);
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 42px);
  margin: 10px 0 16px;
  line-height: 1.1;
  color: var(--charcoal);
}

.hero-text .lede {
  color: #2f3238;
  margin-bottom: 20px;
  max-width: 620px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(226, 35, 26, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(226, 35, 26, 0.36);
}

.btn.ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(0, 0, 0, 0.12);
}

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

.highlights {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.highlights li {
  position: relative;
  padding-left: 20px;
  color: #2f3238;
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--charcoal-2);
  color: var(--text);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 140px;
  height: 220px;
  background: linear-gradient(10deg, #d21d13, #ff3b30);
  transform: rotate(-10deg);
  opacity: 0.9;
}

.panel-card h2 {
  margin: 0 0 14px;
  color: var(--white);
}

.panel-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.panel-card ul li {
  position: relative;
  padding-left: 16px;
}

.panel-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.panel-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #edeff2;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 6px 0 8px;
  font-size: 28px;
  color: var(--charcoal);
}

.section-desc {
  margin: 0;
  color: #3c4148;
}

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

.card {
  background: var(--white);
  padding: 18px 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--charcoal);
}

.card p {
  margin: 0;
  color: #3a3f45;
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
  background: linear-gradient(135deg, #25282d, #17181c);
  color: var(--text);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.project-card h3 {
  margin: 0;
  color: var(--white);
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(226, 35, 26, 0.15);
  color: #ff9f92;
  font-weight: 700;
  font-size: 12px;
}

.project-card p {
  margin: 0 0 12px;
  color: #ccd1d8;
}

.project-link {
  color: #ff7369;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(226, 35, 26, 0.3);
}

.step h3 {
  margin: 0 0 4px;
  color: var(--charcoal);
}

.step p {
  margin: 0;
  color: #3a3f45;
}

.contact {
  background: linear-gradient(135deg, #24272c, #191c20);
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact h2 {
  margin: 6px 0 8px;
  color: var(--white);
}

.contact .section-desc {
  color: #c8ced5;
}

.contact-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.contact .btn.primary {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.contact .btn.primary:hover {
  transform: translateY(-1px);
}

.contact-meta {
  display: grid;
  gap: 4px;
  color: #e5e8ed;
  font-weight: 600;
}

.site-footer {
  padding: 18px 0 26px;
  background: #0e0f12;
  color: #c9cdd3;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.brand-foot {
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.site-footer a {
  color: #ff9f92;
  font-weight: 700;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 72px 16px auto 16px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 64px;
  }

  .hero::before {
    width: 70%;
    right: -40%;
    height: 120%;
  }
}

@media (max-width: 520px) {
  .nav-links {
    inset: 70px 4vw auto 4vw;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .panel-card {
    max-width: none;
  }
}

