:root {
  --bg: #050b12;
  --bg-2: #081320;
  --panel: rgba(9, 19, 31, 0.84);
  --panel-solid: #0b1623;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f6f8;
  --muted: #b7c0cb;
  --muted-2: #7e8a98;
  --ember: #ff5a1f;
  --ember-2: #ff7a2e;
  --ember-glow: rgba(255, 90, 31, 0.28);
  --container: 1180px;
  --radius: 24px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.1), transparent 32rem),
    radial-gradient(circle at 15% 10%, rgba(75, 125, 170, 0.12), transparent 36rem),
    linear-gradient(180deg, #03070d 0%, var(--bg) 42%, #020407 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: var(--ember);
  color: white;
  border-radius: 999px;
}

.skip-link:focus { top: 1rem; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 17, 0.76);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.brand-logo {
  width: 250px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a:hover { color: white; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  border: 1px solid var(--ember);
  color: var(--ember-2);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: white;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: #02060d;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-position: center right;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1600ms ease;
  z-index: 1;
}

.hero-background.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.86) 38%, rgba(2, 7, 13, 0.45) 72%, rgba(2, 7, 13, 0.6) 100%),
    linear-gradient(0deg, rgba(2, 7, 13, 0.86) 0%, rgba(2, 7, 13, 0.16) 46%, rgba(2, 7, 13, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 128px;
  padding-bottom: 86px;
  display: flex;
  justify-content: center;
}

.hero-copy {
  width: min(760px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 330px;
}

.hero-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eyebrow,
.section-kicker {
  color: var(--ember-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero h1 span {
  color: var(--ember);
  text-shadow: 0 0 32px var(--ember-glow);
}

.hero p {
  max-width: 650px;
  margin: 1.45rem auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.button-primary {
  border: 1px solid var(--ember);
  color: white;
  background: linear-gradient(135deg, var(--ember), #ff7a18);
  box-shadow: 0 18px 50px rgba(255, 90, 31, 0.22);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: white;
  background: rgba(255, 255, 255, 0.03);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 22px;
  position: relative;
  left: 0;
  bottom: auto;
  z-index: 4;
}

.carousel-dot {
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease;
}

.carousel-dot.is-active {
  width: 54px;
  background: var(--ember);
}

.section {
  padding: 6.75rem 0;
}

.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.section-copy p,
.section-head p,
.pov-card p,
.fit-card p,
.final-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy blockquote {
  margin: 2rem 0 0;
  padding: 1.75rem;
  border-left: 4px solid var(--ember);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--panel-soft);
  color: white;
  font-size: 1.12rem;
  line-height: 1.4;
  box-shadow: var(--shadow);
}

.center { text-align: center; margin-inline: auto; }
.section-head { max-width: 820px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; }

.industry-grid,
.symptom-grid,
.solution-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

.industry-grid { grid-template-columns: repeat(5, 1fr); }
.symptom-grid { grid-template-columns: repeat(3, 1fr); }
.solution-grid { grid-template-columns: repeat(5, 1fr); }
.offer-grid { grid-template-columns: repeat(4, 1fr); }

.icon-card,
.mini-card,
.solution-card,
.fit-card,
.offer-grid article,
.final-card,
.pov-card,
.quote-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon-card {
  min-height: 160px;
  padding: 1.4rem 1rem;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}

.icon-card img,
.mini-card img,
.solution-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.icon-card h3 {
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.symptoms,
.solutions,
.topics {
  background: rgba(255,255,255,0.018);
  border-block: 1px solid rgba(255,255,255,0.06);
}

.mini-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  color: rgba(255,255,255,0.88);
  min-height: 112px;
}

.solution-card {
  padding: 1.5rem;
  min-height: 320px;
}

.solution-card img { margin-bottom: 1.4rem; }
.solution-card h3 { margin-bottom: 1rem; color: white; }
.solution-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

.pov {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.pov-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,11,18,0.98) 0%, rgba(5,11,18,0.78) 46%, rgba(5,11,18,0.2) 100%),
    url('assets/images/human-adaptability.png');
  background-size: cover;
  background-position: center right;
}

.pov-content { position: relative; z-index: 2; }
.pov-card { max-width: 620px; padding: 2.2rem; }
.pov-card h2 { margin-bottom: 1.4rem; }

.quote-band { padding-top: 5rem; }
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.quote-image {
  min-height: 420px;
  border-radius: var(--radius);
  background-image: url('assets/images/boardroom-quote.png');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  color: var(--ember);
  font-size: 5rem;
  line-height: 0.75;
}

.quote-card p {
  margin: 1.25rem 0 0;
  color: white;
  font-size: clamp(1.15rem, 1.9vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fit-card { padding: 2rem; }
.fit-card-muted { background: rgba(255, 90, 31, 0.06); }

.check-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url('assets/icons/svg/26_check_circle_orange.svg') center/contain no-repeat;
  margin-top: 0.18rem;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.topic-cloud span,
.offer-grid article {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
}

.offer-grid article {
  border-radius: 18px;
  min-height: 84px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.final-card {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
  background:
    radial-gradient(circle at top right, rgba(255,90,31,0.18), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}

.final-card p { max-width: 720px; margin: 1.4rem auto 2rem; }

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #02060d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-2);
}

.footer-logo { 
  width: 260px; 
  max-height: 74px;
  height: auto; 
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

@media (min-width: 1400px) {
   .hero-copy { width: min(780px, 100%); }
  .hero h1 { font-size: clamp(2.7rem, 3.95vw, 4.4rem); }
}

@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .primary-nav.is-open {
    position: absolute;
    display: grid;
    top: 82px;
    left: 20px;
    right: 20px;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 11, 18, 0.96);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open a { padding: 1rem; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero { min-height: 78vh; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.84) 58%, rgba(2, 7, 13, 0.72) 100%),
      linear-gradient(0deg, rgba(2, 7, 13, 0.86) 0%, rgba(2, 7, 13, 0.22) 46%, rgba(2, 7, 13, 0.78) 100%);
  }
  .hero-content { padding-top: 116px; padding-bottom: 72px; }
  .hero-copy { width: min(660px, 100%); margin-inline: auto; }
  .hero-carousel { min-height: 305px; }
  .hero h1 { font-size: clamp(2.1rem, 6vw, 3.35rem); letter-spacing: -0.045em; }
  .two-column,
  .fit-grid,
  .quote-layout { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-logo { width: 210px; max-height: 52px; }
  .hero { min-height: auto; }
  .hero-background { background-position: center; }
  .hero-content { padding-top: 104px; padding-bottom: 58px; }
  .hero-carousel { min-height: 280px; }
  .hero h1 { font-size: clamp(1.95rem, 9vw, 2.85rem); line-height: 1.02; letter-spacing: -0.04em; }
  .hero p { margin-top: 1.4rem; font-size: 1rem; }
  .hero-actions { margin-top: 1.75rem; }
  .button { width: 100%; }
  .carousel-controls { margin-top: 34px; }
  .carousel-dot { width: 36px; }
  .carousel-dot.is-active { width: 46px; }
  .section { padding: 4.5rem 0; }
  .industry-grid,
  .symptom-grid,
  .solution-grid,
  .offer-grid { grid-template-columns: 1fr; }
  .pov { min-height: auto; padding: 4.5rem 0; }
  .pov-image { background-position: center; }
  .pov-card { padding: 1.5rem; }
  .quote-image { min-height: 300px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}



/* Final hero alignment override */
.hero-copy,
.hero-slide,
.hero-actions,
.carousel-controls {
  text-align: center;
}
.hero-slide p {
  margin-left: auto;
  margin-right: auto;
}
.hero-actions,
.carousel-controls {
  justify-content: center;
}
.brand-logo,
.footer-logo {
  object-fit: contain;
}
@media (max-width: 680px) {
  .hero-copy {
    align-items: center;
    text-align: center;
  }
  .carousel-controls {
    justify-content: center;
  }
}
