:root {
  --red: #dc3522;
  --cream: #d9cb9e;
  --cream-light: #f2efe4;
  --charcoal: #374140;
  --charcoal-deep: #2a2c2b;
  --ink: #1e1e20;
  --white: #fffdf7;
  --line: rgba(55, 65, 64, 0.18);
  --shadow: 0 24px 70px rgba(30, 30, 32, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal-deep);
  background: var(--cream-light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--red);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(242, 239, 228, 0.12);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  overflow: hidden;
  border-radius: 4px;
}

.brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  color: var(--cream-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  transition: color 160ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--cream);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  color: white;
  background: var(--red);
  border-radius: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 180px 0 100px;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 75% 42%, rgba(217, 203, 158, 0.1), transparent 31%),
    linear-gradient(132deg, var(--ink) 0%, var(--charcoal-deep) 61%, #303836 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(242, 239, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 228, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 72%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 570px;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 203, 158, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--cream);
}

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

h1,
h2,
h3 {
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.2vw, 5.65rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

h3 {
  margin-bottom: 15px;
  font-size: 1.45rem;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(242, 239, 228, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(220, 53, 34, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-light);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  font-size: 1.15em;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.signal-card {
  position: absolute;
  border: 1px solid rgba(242, 239, 228, 0.12);
  background: rgba(30, 30, 32, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.signal-card-main {
  z-index: 2;
  top: 26px;
  right: 12px;
  width: min(100%, 430px);
  padding: 25px 28px 27px;
}

.card-topline,
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-topline {
  color: rgba(242, 239, 228, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--cream);
}

.status i {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(220, 53, 34, 0.12);
}

.signal-graph {
  display: flex;
  align-items: flex-end;
  height: 150px;
  margin: 30px 0 0;
  gap: 14px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--red), #f05b48);
  border-radius: 2px 2px 0 0;
  opacity: 0.9;
}

.bar-1 { height: 36%; }
.bar-2 { height: 52%; }
.bar-3 { height: 43%; }
.bar-4 { height: 71%; }
.bar-5 { height: 62%; }
.bar-6 { height: 84%; }
.bar-7 { height: 74%; }
.bar-8 { height: 96%; }

.card-divider {
  height: 1px;
  margin: 0 0 12px;
  background: rgba(242, 239, 228, 0.12);
}

.signal-row {
  padding: 8px 0;
  color: rgba(242, 239, 228, 0.52);
  font-size: 0.78rem;
}

.signal-row b {
  color: var(--cream-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card-small {
  z-index: 3;
  right: -30px;
  bottom: 24px;
  width: 245px;
  padding: 22px;
}

.mini-label {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card-small strong {
  display: block;
  max-width: 170px;
  color: var(--cream-light);
  font-size: 1.06rem;
  line-height: 1.3;
}

.mini-rule {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 17px;
  background: var(--red);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(217, 203, 158, 0.2);
  border-radius: 50%;
}

.orbit-one {
  top: -15px;
  right: -80px;
  width: 420px;
  height: 420px;
}

.orbit-two {
  top: 44px;
  right: -22px;
  width: 300px;
  height: 300px;
}

.section {
  padding: 120px 0;
}

.approach {
  background: var(--cream-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(40px, 8vw, 100px);
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  color: rgba(42, 44, 43, 0.67);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.45);
}

.process-card {
  position: relative;
  min-height: 400px;
  padding: 38px 34px 34px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-card.featured {
  color: var(--cream-light);
  background: var(--charcoal);
  transform: translateY(-12px);
  box-shadow: 0 22px 54px rgba(55, 65, 64, 0.2);
}

.process-card p {
  color: rgba(42, 44, 43, 0.65);
  font-size: 0.95rem;
}

.process-card.featured p {
  color: rgba(242, 239, 228, 0.66);
}

.step-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(55, 65, 64, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured .step-number {
  color: rgba(242, 239, 228, 0.38);
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 55px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.step-icon span {
  position: absolute;
  left: 50%;
  width: 7px;
  background: var(--red);
  transform: translateX(-50%);
}

.step-icon span:nth-child(1) { bottom: 21px; height: 16px; margin-left: -15px; }
.step-icon span:nth-child(2) { bottom: 21px; height: 31px; }
.step-icon span:nth-child(3) { bottom: 21px; height: 23px; margin-left: 15px; }

.featured .step-icon {
  border-color: rgba(242, 239, 228, 0.19);
}

.branch-icon span {
  left: 50%;
  bottom: 22px;
  width: 8px;
  height: 8px !important;
  margin: 0 !important;
  border-radius: 50%;
}

.branch-icon span:nth-child(1) { transform: translate(-23px, -16px); }
.branch-icon span:nth-child(2) { transform: translate(-4px, 0); }
.branch-icon span:nth-child(3) { transform: translate(15px, -16px); }

.branch-icon::before,
.branch-icon::after {
  content: "";
  position: absolute;
  bottom: 29px;
  left: 50%;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.branch-icon::before { transform: rotate(-40deg) translate(-17px, -2px); }
.branch-icon::after { transform: rotate(40deg) translate(-1px, 14px); }

.pulse-icon span {
  bottom: 37px !important;
  width: 7px;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 50%;
}

.pulse-icon span:nth-child(1) { transform: translateX(-25px); }
.pulse-icon span:nth-child(2) { transform: translateX(-3px); }
.pulse-icon span:nth-child(3) { transform: translateX(19px); }

.pulse-icon::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 20px;
  width: 38px;
  height: 1px;
  background: var(--red);
}

.people {
  color: var(--cream-light);
  background: var(--charcoal-deep);
}

.people-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.people-art {
  display: grid;
  min-height: 480px;
  place-items: center;
}

.decision-ring {
  position: relative;
  display: grid;
  width: min(32vw, 390px);
  min-width: 320px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(217, 203, 158, 0.22);
  border-radius: 50%;
}

.decision-ring::before,
.decision-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 203, 158, 0.13);
  border-radius: 50%;
}

.decision-ring::before { inset: 45px; }
.decision-ring::after { inset: 91px; }

.ring-label {
  position: absolute;
  top: 42px;
  left: 50%;
  padding: 0 12px;
  color: rgba(217, 203, 158, 0.7);
  background: var(--charcoal-deep);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.decision-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 145px;
  aspect-ratio: 1;
  color: var(--cream-light);
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(220, 53, 34, 0.25);
}

.decision-core span {
  font-size: 0.75rem;
  opacity: 0.76;
}

.decision-core strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.node {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  background: var(--cream);
  border: 3px solid var(--charcoal-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(217, 203, 158, 0.55);
}

.node-one { top: 78px; right: 75px; }
.node-two { right: 28px; bottom: 124px; }
.node-three { bottom: 60px; left: 91px; }

.people-copy .eyebrow {
  color: var(--cream);
}

.people-copy h2 {
  max-width: 640px;
}

.people-copy > p {
  max-width: 670px;
  color: rgba(242, 239, 228, 0.65);
}

.people-copy .large-copy {
  color: var(--cream-light);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.red-link {
  margin-top: 16px;
}

.sparx {
  padding: 90px 0;
  background: var(--cream);
}

.sparx-panel {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 65px);
  padding: 46px;
  background: rgba(242, 239, 228, 0.76);
  border: 1px solid rgba(55, 65, 64, 0.17);
}

.sparx-mark {
  display: grid;
  min-height: 150px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(55, 65, 64, 0.12);
  place-items: center;
}

.sparx-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.sparx-copy p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(42, 44, 43, 0.68);
}

.button-outline {
  color: var(--charcoal-deep);
  border-color: rgba(42, 44, 43, 0.4);
  white-space: nowrap;
}

.button-outline:hover {
  color: var(--cream-light);
  background: var(--charcoal-deep);
}

.contact {
  color: var(--cream-light);
  background: var(--red);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(50px, 10vw, 140px);
}

.contact h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.contact-action p {
  max-width: 490px;
  color: rgba(255, 253, 247, 0.76);
}

.button-light {
  color: var(--charcoal-deep);
  background: var(--cream-light);
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(242, 239, 228, 0.65);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 190px;
}

.footer-inner p {
  max-width: 420px;
  margin: 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 30px;
}

.social-links a {
  color: var(--cream-light);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.social-links span {
  margin-left: 5px;
  color: rgba(242, 239, 228, 0.46);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(242, 239, 228, 0.1);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .signal-card-small {
    right: -10px;
  }

  .sparx-panel {
    grid-template-columns: 240px 1fr;
  }

  .sparx-panel .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header {
    position: relative;
    background: var(--ink);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 22px;
    gap: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  .site-nav .nav-cta {
    padding: 8px 11px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 80px;
  }

  .hero-grid,
  .section-heading,
  .people-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

  .signal-card-main {
    right: 8%;
    width: 78%;
  }

  .signal-card-small {
    right: 2%;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    border: 0;
    gap: 14px;
    background: transparent;
  }

  .process-card {
    min-height: 0;
    border: 1px solid var(--line);
  }

  .process-card.featured {
    transform: none;
  }

  .people-grid {
    gap: 35px;
  }

  .people-art {
    min-height: 390px;
  }

  .decision-ring {
    width: 370px;
  }

  .sparx-panel {
    grid-template-columns: 210px 1fr;
    padding: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .signal-card-main {
    right: 0;
    width: 100%;
    padding: 22px;
  }

  .signal-card-small {
    right: -8px;
    bottom: 0;
    width: 220px;
  }

  .signal-graph {
    height: 115px;
    gap: 9px;
  }

  .section {
    padding: 75px 0;
  }

  .process-card {
    padding: 30px 27px;
  }

  .people-art {
    min-height: 320px;
  }

  .decision-ring {
    width: 290px;
    min-width: 290px;
  }

  .decision-ring::before { inset: 34px; }
  .decision-ring::after { inset: 68px; }
  .ring-label { top: 27px; }
  .decision-core { width: 120px; }
  .node-one { top: 56px; right: 52px; }
  .node-two { right: 18px; bottom: 93px; }
  .node-three { bottom: 42px; left: 66px; }

  .sparx-panel {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .sparx-mark {
    min-height: 130px;
  }

  .sparx-panel .button {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
