:root {
  --bg: #05070d;
  --panel: rgba(9, 15, 29, 0.82);
  --panel-solid: #090f1d;
  --line: rgba(117, 176, 255, 0.2);
  --text: #f5f7ff;
  --muted: #aab6cc;
  --orange: #ff7a18;
  --orange-hot: #ffb15c;
  --blue: #39a7ff;
  --purple: #a75cff;
  --green: #72f39a;
  --radius: 8px;
  --shadow: 0 18px 80px rgba(0, 0, 0, 0.42);
  --premium-edge: rgba(255, 177, 92, 0.34);
  --section-gap: clamp(18px, 3vw, 28px);
  --section-pad: clamp(28px, 4.5vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background:
    radial-gradient(circle at 46% 8%, rgba(35, 118, 255, 0.25), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(255, 105, 19, 0.17), transparent 28%),
    linear-gradient(180deg, #060a13 0%, #04060b 46%, #070914 100%);
}

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

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

.ambient,
.grid-field,
.spark-field {
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -3;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
}

.ambient-one {
  top: 10%;
  left: -12rem;
  background: var(--blue);
}

.ambient-two {
  right: -12rem;
  bottom: 8%;
  background: var(--orange);
}

.grid-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(80, 156, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 156, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.spark-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.spark-field span {
  position: absolute;
  left: var(--x, 50%);
  bottom: -80px;
  width: 2px;
  height: 58px;
  background: linear-gradient(transparent, rgba(255, 126, 24, 0.86), transparent);
  border-radius: 999px;
  animation: spark-rise var(--d, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.35;
}

.spark-field span:nth-child(1) { --x: 8%; --d: 8s; --delay: 0s; }
.spark-field span:nth-child(2) { --x: 22%; --d: 11s; --delay: -2s; }
.spark-field span:nth-child(3) { --x: 47%; --d: 9s; --delay: -4s; }
.spark-field span:nth-child(4) { --x: 63%; --d: 12s; --delay: -7s; }
.spark-field span:nth-child(5) { --x: 79%; --d: 10s; --delay: -3s; }
.spark-field span:nth-child(6) { --x: 92%; --d: 13s; --delay: -6s; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  border: 1px solid rgba(255, 177, 92, 0.8);
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(255, 122, 24, 0.55);
  font-weight: 950;
}

.brand strong,
h1,
h2,
h3,
.btn,
.nav-cta,
.eyebrow,
.step-number,
dt {
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  color: #d9e4f7;
  font-size: 0.78rem;
  font-weight: 850;
}

.main-nav a,
.text-link {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--orange-hot);
  text-shadow: 0 0 18px rgba(255, 122, 24, 0.5);
}

.nav-cta {
  padding: 0.88rem 1.1rem;
  border: 1px solid rgba(255, 177, 92, 0.92);
  border-radius: 6px;
  color: #fffaf4;
  background: linear-gradient(135deg, rgba(255, 102, 18, 0.18), rgba(255, 177, 92, 0.12));
  box-shadow:
    inset 0 0 18px rgba(255, 122, 24, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(255, 122, 24, 0.28);
  font-size: 0.76rem;
  font-weight: 900;
}

.section-shell,
.final-cta,
.forge-banner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto var(--section-gap);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.9), rgba(5, 9, 18, 0.82));
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: no-preference) {
  .section-shell,
  .final-cta,
  .forge-banner,
  .legacy-section,
  .service-card,
  .process-card,
  .testimonial-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease, border-color 190ms ease, box-shadow 190ms ease;
  }

  .section-shell.is-visible,
  .final-cta.is-visible,
  .forge-banner.is-visible,
  .legacy-section.is-visible,
  .service-card.is-visible,
  .process-card.is-visible,
  .testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  min-height: clamp(590px, 72vh, 720px);
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 122, 24, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.96) 45%, rgba(5, 7, 13, 0.78) 100%);
}

.hero::before,
.section-shell::after,
.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(57, 167, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: scan 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: min(620px, 100%);
}

.hero-copy::before {
  position: absolute;
  inset: -42px -34px -42px -26px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 13, 0.98), rgba(3, 6, 13, 0.9) 68%, rgba(3, 6, 13, 0)),
    radial-gradient(circle at 22% 50%, rgba(57, 167, 255, 0.08), transparent 58%);
  filter: blur(1px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  color: #bcd9ff;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 15px rgba(255, 122, 24, 0.75);
}

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

h1 {
  max-width: 680px;
  margin-bottom: clamp(1.15rem, 2.4vw, 1.65rem);
  font-size: clamp(3.2rem, 6.4vw, 6.25rem);
  line-height: 0.94;
  font-weight: 950;
  text-wrap: balance;
}

h1 .hero-line,
h1 span,
.cta-content h2 span {
  display: block;
}

h1 span:not(.hero-line),
.cta-content h2 span {
  background: linear-gradient(90deg, var(--orange), #ff4fa3 48%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-subcopy {
  max-width: 520px;
  color: #dfe8f8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.58;
  margin-bottom: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.5rem, 3vw, 2.15rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.55rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after,
.nav-cta::after,
.text-link::after,
.service-card a::after {
  margin-left: 0.6rem;
  content: ">";
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid rgba(255, 177, 92, 0.82);
  background: linear-gradient(135deg, #ff5f12, #ff981f);
  color: white;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 44px rgba(255, 122, 24, 0.62),
    0 14px 34px rgba(255, 122, 24, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 0 46px rgba(255, 122, 24, 0.72);
}

.btn-secondary {
  border: 1px solid rgba(88, 177, 255, 0.72);
  background: rgba(6, 13, 28, 0.66);
  color: #e8f4ff;
  box-shadow: inset 0 0 18px rgba(57, 167, 255, 0.12);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 36%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.92;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 1) 0%, rgba(5, 7, 13, 0.68) 25%, rgba(5, 7, 13, 0.08) 54%, rgba(5, 7, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.03), rgba(5, 7, 13, 0.58));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(1.22) contrast(1.08) brightness(1.16);
  transform: scale(1.03);
}

.reactor {
  position: absolute;
  top: 47%;
  left: 49%;
  z-index: 2;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 44px rgba(255, 102, 22, 1));
}

.reactor-ring,
.reactor-core {
  position: absolute;
  border-radius: 50%;
}

.reactor-ring {
  inset: 0;
  border: 1px solid rgba(255, 126, 24, 0.55);
  box-shadow: inset 0 0 38px rgba(255, 126, 24, 0.22), 0 0 40px rgba(57, 167, 255, 0.14);
  animation: rotate 12s linear infinite;
}

.ring-two {
  inset: 36px;
  border-color: rgba(57, 167, 255, 0.55);
  animation-direction: reverse;
}

.reactor-core {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 177, 92, 0.98), rgba(255, 103, 18, 0.92) 38%, rgba(255, 103, 18, 0.08) 70%);
  color: #1d0700;
  font-weight: 950;
  font-size: 1.85rem;
}

.process-section,
.services-section,
.results-section,
.about-section,
.legacy-section {
  padding: var(--section-pad);
  overflow: hidden;
}

.process-section,
.services-section,
.results-section {
  background:
    linear-gradient(180deg, rgba(10, 16, 32, 0.92), rgba(5, 9, 18, 0.86)),
    radial-gradient(circle at 14% 18%, rgba(57, 167, 255, 0.11), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(255, 122, 24, 0.09), transparent 30%);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.section-heading h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.15rem);
  line-height: 1.03;
  font-weight: 950;
  text-wrap: balance;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
}

.split-heading h2 {
  max-width: 720px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border: 1px solid rgba(255, 214, 155, 0.9);
  border-radius: 6px;
  color: #180700;
  background: linear-gradient(135deg, #ff6f16, #ffb347 56%, #ffd48a);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 34px rgba(255, 122, 24, 0.34),
    0 14px 34px rgba(255, 122, 24, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
  counter-reset: forge-step;
}

.process-track::before {
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--purple), var(--green));
  opacity: 0.7;
}

.process-card,
.service-card,
.testimonial-card {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(117, 176, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 13, 27, 0.88);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.process-card {
  display: grid;
  align-content: start;
  min-height: 255px;
  padding-top: 1.35rem;
  background:
    linear-gradient(180deg, rgba(9, 17, 36, 0.94), rgba(5, 10, 22, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(57, 167, 255, 0.16), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.process-card::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 2px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  opacity: 0.34;
  pointer-events: none;
}

.process-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
}

.process-card.blue:hover,
.service-card:nth-child(1):hover {
  border-color: var(--blue);
  box-shadow: 0 0 32px rgba(57, 167, 255, 0.24);
}

.process-card.orange:hover,
.service-card:nth-child(2):hover {
  border-color: var(--orange);
  box-shadow: 0 0 32px rgba(255, 122, 24, 0.25);
}

.process-card.purple:hover,
.service-card:nth-child(3):hover {
  border-color: var(--purple);
  box-shadow: 0 0 32px rgba(167, 92, 255, 0.25);
}

.process-card.green:hover,
.service-card:nth-child(5):hover {
  border-color: var(--green);
  box-shadow: 0 0 32px rgba(114, 243, 154, 0.2);
}

.process-card h3,
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.14rem;
  line-height: 1.08;
}

.process-card h3 {
  max-width: 12rem;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.12;
}

.process-card.blue { color: var(--blue); }
.process-card.orange { color: var(--orange); }
.process-card.purple { color: var(--purple); }
.process-card.green { color: var(--green); }

.process-card p,
.service-card p,
.testimonial-card p,
.about-copy p,
.about-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.step-number {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
  font-weight: 900;
}

.icon,
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0.7rem 0 1rem;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  border: 1px solid currentColor;
  background: rgba(2, 5, 12, 0.58);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.035), 0 0 24px color-mix(in srgb, currentColor 36%, transparent);
  font-size: 0.92rem;
  font-weight: 900;
}

.orange .icon,
.service-card:nth-child(2) .service-icon {
  color: var(--orange);
}

.purple .icon,
.service-card:nth-child(3) .service-icon {
  color: var(--purple);
}

.green .icon,
.service-card:nth-child(5) .service-icon {
  color: var(--green);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.2rem);
}

.service-card {
  display: grid;
  grid-column: span 2;
  align-content: start;
  min-height: 330px;
  padding-bottom: 5rem;
  background:
    linear-gradient(180deg, rgba(10, 18, 38, 0.96), rgba(5, 10, 22, 0.95)),
    radial-gradient(circle at 86% 12%, rgba(255, 122, 24, 0.12), transparent 34%),
    radial-gradient(circle at 10% 92%, rgba(57, 167, 255, 0.08), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.26);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card p {
  margin-bottom: 1rem;
  max-width: 30ch;
  font-size: 0.98rem;
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #e8f2ff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-card li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  content: "";
}

.service-card:nth-child(1) li { color: #9ed9ff; }
.service-card:nth-child(2) li { color: var(--orange-hot); }
.service-card:nth-child(3) li { color: #cfaaff; }
.service-card:nth-child(4) li { color: #a7c9ff; }
.service-card:nth-child(5) li { color: #a2f8ba; }

.service-card:nth-child(4):hover {
  border-color: var(--blue);
  box-shadow: 0 0 32px rgba(57, 167, 255, 0.22);
}

.service-card a {
  position: absolute;
  bottom: 1.3rem;
  left: clamp(1.15rem, 2vw, 1.45rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 214, 155, 0.84);
  border-radius: 999px;
  color: #fffaf2;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(255, 177, 92, 0.12));
  box-shadow:
    inset 0 0 16px rgba(255, 122, 24, 0.12),
    0 0 24px rgba(255, 122, 24, 0.16);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.metrics-bar div {
  position: relative;
  min-height: 152px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(117, 176, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 14, 30, 0.94), rgba(4, 8, 18, 0.92)),
    radial-gradient(circle at 82% 10%, rgba(57, 167, 255, 0.14), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metrics-bar div::after {
  position: absolute;
  right: -18px;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.045);
  content: attr(data-label);
  font-size: 5.8rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.metrics-bar strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange-hot);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
}

.metrics-bar div:nth-child(1) strong { color: var(--blue); }
.metrics-bar div:nth-child(3) strong { color: var(--purple); }
.metrics-bar div:nth-child(4) strong { color: var(--green); }

.metrics-bar span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(9, 17, 36, 0.92), rgba(4, 8, 18, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(255, 122, 24, 0.12), transparent 36%);
}

.stars {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 177, 92, 0.36);
  border-radius: 999px;
  color: var(--orange-hot);
  background: rgba(255, 122, 24, 0.08);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.person span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #07101f;
  font-weight: 950;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(1.2rem, 4vw, 2rem);
  border-color: rgba(167, 92, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(9, 15, 29, 0.94), rgba(5, 9, 18, 0.84)),
    radial-gradient(circle at 88% 18%, rgba(167, 92, 255, 0.18), transparent 34%);
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: 1.1rem;
}

.about-copy p {
  max-width: 720px;
  font-size: 1rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.about-identity {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.founder-card {
  position: relative;
  min-height: 100%;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 177, 92, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 15, 29, 0.9), rgba(5, 8, 17, 0.95)),
    radial-gradient(circle at 78% 12%, rgba(255, 122, 24, 0.16), transparent 42%);
  box-shadow: inset 0 0 34px rgba(255, 122, 24, 0.08), 0 0 32px rgba(0, 0, 0, 0.18);
}

.mason-mark {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 0.32rem;
  border: 1px solid rgba(255, 177, 92, 0.42);
  border-radius: 50%;
  background: rgba(3, 6, 13, 0.76);
  box-shadow: 0 0 28px rgba(255, 177, 92, 0.22);
}

.portrait-frame {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(57, 167, 255, 0.22);
  border-radius: 7px;
  background: #03060c;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 90% 100%, 0 100%);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 52%, rgba(3, 6, 13, 0.58)),
    radial-gradient(circle at 50% 18%, rgba(57, 167, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(1.03) contrast(1.04);
}

.founder-meta {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.4rem;
  padding: 1rem 0.15rem 0;
}

.founder-meta span {
  color: var(--orange-hot);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-meta strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.about-grid article {
  min-height: auto;
  padding: 1.1rem;
  border: 1px solid rgba(117, 176, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 10, 22, 0.78);
  box-shadow: inset 0 0 28px rgba(57, 167, 255, 0.06);
}

.about-grid strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(1.2rem, 4vw, 2rem);
  align-items: stretch;
  border-color: var(--premium-edge);
  background:
    linear-gradient(135deg, rgba(9, 15, 29, 0.96), rgba(5, 9, 18, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(255, 122, 24, 0.14), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(57, 167, 255, 0.1), transparent 32%);
}

.legacy-copy {
  max-width: 960px;
}

.legacy-copy h2 {
  max-width: 920px;
  margin: 0 0 clamp(1rem, 2vw, 1.3rem);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
}

.legacy-copy p {
  max-width: 900px;
  margin: 0 0 1rem;
  color: #c8d4e7;
  line-height: 1.62;
}

.legacy-copy .final-cta-lede {
  color: #eef4ff;
  font-size: 1.08rem;
}

.legacy-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.2rem;
  max-width: 860px;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.legacy-copy li {
  color: #eef4ff;
  line-height: 1.4;
  font-weight: 750;
}

.legacy-copy li::before {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 0.72rem;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-hot);
  content: "✓";
  font-size: 0.72rem;
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.34);
}

.legacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.legacy-actions .btn {
  min-width: min(100%, 380px);
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.legacy-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(6, 12, 25, 0.92), rgba(5, 8, 17, 0.98)),
    radial-gradient(circle at 86% 12%, rgba(255, 122, 24, 0.18), transparent 38%);
  box-shadow: inset 0 0 34px rgba(255, 122, 24, 0.07);
}

.legacy-panel::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(57, 167, 255, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.legacy-panel-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.legacy-panel-top span {
  color: var(--orange-hot);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legacy-panel-top strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.legacy-meter {
  position: relative;
  z-index: 1;
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 24, 0.36);
  border-radius: 999px;
  background: rgba(2, 5, 12, 0.82);
}

.legacy-meter span {
  display: block;
  width: var(--level);
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.44);
}

.legacy-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

.legacy-pillars article {
  padding: 1rem;
  border: 1px solid rgba(117, 176, 255, 0.2);
  border-radius: 6px;
  background: rgba(3, 7, 15, 0.58);
}

.legacy-pillars strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  text-transform: uppercase;
}

.legacy-pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.forge-banner {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 177, 92, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(3, 6, 13, 0.98) 0%, rgba(6, 10, 20, 0.98) 46%, rgba(12, 13, 23, 0.98) 100%),
    radial-gradient(circle at 43% 52%, rgba(255, 122, 24, 0.3), transparent 32%),
    radial-gradient(circle at 12% 15%, rgba(57, 167, 255, 0.24), transparent 34%),
    radial-gradient(circle at 91% 18%, rgba(167, 92, 255, 0.16), transparent 28%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 0 8px rgba(3, 7, 15, 0.5) inset,
    0 0 68px rgba(255, 122, 24, 0.28),
    0 34px 120px rgba(0, 0, 0, 0.72);
}

.forge-banner::before {
  position: absolute;
  inset: 11px;
  z-index: 3;
  content: "";
  border: 1px solid rgba(255, 177, 92, 0.48);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(57, 167, 255, 0.16),
    inset 0 0 82px rgba(0, 0, 0, 0.72),
    0 0 28px rgba(255, 122, 24, 0.18);
  clip-path: polygon(0 13%, 4% 0, 96% 0, 100% 14%, 100% 86%, 96% 100%, 4% 100%, 0 87%);
  pointer-events: none;
}

.forge-banner::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 118px;
  height: 118px;
  content: "";
  border-top: 10px solid var(--orange-hot);
  border-right: 10px solid var(--orange-hot);
  filter: drop-shadow(0 0 24px rgba(255, 122, 24, 0.72));
  pointer-events: none;
}

.forge-banner-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 460px;
  overflow: hidden;
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background:
    linear-gradient(90deg, rgba(3, 7, 15, 0.02), rgba(3, 7, 15, 0.01) 34%, rgba(5, 8, 17, 0.44) 70%, rgba(7, 10, 19, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 7, 15, 0.01), rgba(3, 7, 15, 0.24)),
    url("assets/bottom-legacy-forge.png") 27% 50% / cover no-repeat;
  clip-path: none;
  filter: saturate(1.12) contrast(1.13) brightness(1.14);
}

.forge-banner-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  border-left: 8px solid rgba(255, 177, 92, 0.72);
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 122, 24, 0.26), transparent 36%),
    linear-gradient(90deg, rgba(3, 7, 15, 0.08), rgba(3, 7, 15, 0.01) 34%, rgba(3, 7, 15, 0.74) 100%);
  box-shadow:
    inset 28px 0 46px rgba(57, 167, 255, 0.16),
    inset -116px 0 136px rgba(3, 7, 15, 0.84);
}

.forge-banner-visual::after {
  position: absolute;
  top: 0;
  right: -16%;
  width: 62%;
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 7, 15, 0), rgba(8, 11, 21, 0.6) 48%, rgba(8, 10, 19, 0.94) 88%),
    radial-gradient(circle at 72% 52%, rgba(255, 122, 24, 0.2), transparent 40%);
  pointer-events: none;
}

.forge-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(1.1rem, 2vw, 1.45rem);
  min-width: 260px;
  padding: clamp(44px, 5.8vw, 78px) clamp(38px, 5.6vw, 72px);
  border-radius: 0 var(--radius) var(--radius) 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 19, 0.72), rgba(8, 10, 19, 0.98) 24%),
    radial-gradient(circle at 86% 12%, rgba(255, 177, 92, 0.18), transparent 32%),
    radial-gradient(circle at 20% 92%, rgba(57, 167, 255, 0.14), transparent 34%);
}

.forge-banner-content .eyebrow {
  margin-bottom: 0;
  color: #ffe0bf;
}

.forge-banner-content::before {
  position: absolute;
  top: 13%;
  bottom: 13%;
  left: -1px;
  width: 2px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 177, 92, 0.62), rgba(57, 167, 255, 0.34), transparent);
  box-shadow: 0 0 30px rgba(255, 122, 24, 0.44);
}

.forge-banner-content h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 22px 46px rgba(0, 0, 0, 0.52);
}

.forge-banner-content h2 span {
  background: linear-gradient(90deg, var(--orange), #ff4fa3 50%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(255, 122, 24, 0.34));
}

.forge-banner-content ul {
  display: grid;
  gap: 0.72rem;
  margin: 0.05rem 0 0.85rem;
  padding: 0;
  list-style: none;
}

.forge-banner-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #eef4ff;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
}

.forge-banner-content li::before {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-hot);
  content: "✓";
  font-size: 0.72rem;
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.28);
}

.forge-banner-content .btn {
  min-width: min(100%, 365px);
  min-height: 66px;
  margin-top: 0.2rem;
  border-color: rgba(255, 214, 155, 0.94);
  background:
    linear-gradient(135deg, #ff5a12, #ff9f24 54%, #ffc46f);
  color: #170800;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 38px rgba(255, 122, 24, 0.56),
    0 18px 46px rgba(255, 122, 24, 0.26),
    0 18px 66px rgba(0, 0, 0, 0.38);
}

.forge-banner-content li::before {
  content: "\2713";
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.footer-umbrella {
  margin: 0;
  color: #9fb1c9;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 1rem 0 0.78rem;
  border: 1px solid rgba(117, 176, 255, 0.24);
  border-radius: 999px;
  color: #dcecff;
  background: rgba(8, 13, 26, 0.72);
  box-shadow: inset 0 0 16px rgba(57, 167, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.footer-link-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  color: #08111f;
  background: linear-gradient(135deg, #8ed0ff, #d9f1ff);
  box-shadow: 0 0 18px rgba(57, 167, 255, 0.22);
}

.footer-link-tv .footer-link-mark,
.footer-link-tm .footer-link-mark {
  border-radius: 6px;
  color: #180700;
  background: linear-gradient(135deg, #ff7a18, #ffd089);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.24);
}

.footer-link-tv,
.footer-link-tm {
  border-color: rgba(255, 177, 92, 0.34);
}

.footer-link-facebook .footer-link-mark {
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
  font-weight: 900;
  background: #1877f2;
  color: #fff;
  box-shadow: 0 0 26px rgba(24, 119, 242, 0.32);
}

.footer-link-spotify .footer-link-mark {
  width: 30px;
  height: 30px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: #1ed760;
  color: #04140a;
  box-shadow: 0 0 26px rgba(30, 215, 96, 0.28);
}

.footer-link-youtube .footer-link-mark {
  width: 34px;
  height: 24px;
  border-radius: 8px;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #ff1111, #ff3b30);
  color: #fff;
  box-shadow: 0 0 26px rgba(255, 31, 31, 0.3);
}

.footer-link-facebook {
  border-color: rgba(24, 119, 242, 0.34);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(119, 184, 255, 0.08));
}

.footer-link-spotify {
  border-color: rgba(30, 215, 96, 0.3);
  color: #bff7cf;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.14), rgba(10, 20, 16, 0.82));
}

.footer-link-youtube {
  border-color: rgba(255, 49, 49, 0.32);
  background: linear-gradient(135deg, rgba(255, 31, 31, 0.18), rgba(32, 10, 10, 0.82));
}

.footer-link-facebook span:last-child,
.footer-link-spotify span:last-child,
.footer-link-youtube span:last-child {
  font-weight: 900;
}

.footer-link-facebook span:last-child {
  color: #9cc8ff;
}

.footer-link-spotify span:last-child {
  color: #1ed760;
}

.footer-link-youtube span:last-child {
  color: #ff8f8f;
}

.footer-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 177, 92, 0.56);
  color: #fff5ea;
  box-shadow:
    inset 0 0 16px rgba(255, 122, 24, 0.08),
    0 0 20px rgba(255, 122, 24, 0.12);
}

@keyframes spark-rise {
  from {
    transform: translateY(0) translateX(0) rotate(14deg);
  }
  to {
    transform: translateY(-115vh) translateX(68px) rotate(14deg);
  }
}

@keyframes scan {
  0%, 58% {
    transform: translateX(-120%);
  }
  74%, 100% {
    transform: translateX(120%);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: clamp(600px, 78vh, 700px);
  }

  .hero-visual {
    left: 28%;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .legacy-section {
    grid-template-columns: 1fr;
  }

  .forge-banner {
    grid-template-columns: 1fr;
  }

  .forge-banner-visual {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 177, 92, 0.28);
    border-radius: var(--radius) var(--radius) 0 0;
    background-position: 28% 50%;
  }

  .forge-banner-content {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .forge-banner-content::before {
    top: 0;
    right: 11%;
    bottom: auto;
    left: 11%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 177, 92, 0.58), rgba(57, 167, 255, 0.34), transparent);
  }

  .about-identity {
    grid-template-columns: minmax(240px, 0.75fr) 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-shell,
  .final-cta,
  .forge-banner,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .forge-banner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .forge-banner::before {
    inset: 8px;
    clip-path: polygon(0 7%, 7% 0, 93% 0, 100% 7%, 100% 93%, 93% 100%, 7% 100%, 0 93%);
  }

  .forge-banner::after {
    width: 62px;
    height: 62px;
    border-top-width: 6px;
    border-right-width: 6px;
  }

  .forge-banner-content {
    justify-self: start;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .forge-banner-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 177, 92, 0.32);
    border-radius: var(--radius) var(--radius) 0 0;
    min-height: 270px;
    background-position: 30% 50%;
  }

  .site-header {
    gap: 1rem;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 640px;
    padding: 34px 18px;
    align-content: end;
  }

  .hero-visual {
    left: 0;
    opacity: 0.46;
  }

  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.2) 0%, rgba(5, 7, 13, 0.78) 42%, rgba(5, 7, 13, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 7, 13, 0.72), rgba(5, 7, 13, 0.28));
  }

  .hero-visual img {
    object-position: 58% 50%;
    filter: saturate(1.1) contrast(1.05) brightness(0.98);
  }

  .hero-copy::before {
    inset: -20px -14px;
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.96)),
      radial-gradient(circle at 18% 15%, rgba(57, 167, 255, 0.1), transparent 48%);
    border-radius: var(--radius);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.5vw, 4rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-subcopy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions,
  .process-track,
  .metrics-bar,
  .proof-grid,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-identity {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 0.75rem;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 1rem;
  }

  .reactor {
    top: 24%;
    left: 74%;
    width: 128px;
    height: 128px;
    opacity: 0.78;
  }

  .reactor-core {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }

  .ring-two {
    inset: 24px;
  }

  .process-track::before {
    display: none;
  }

  .split-heading,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .forge-banner {
    min-height: auto;
    padding: 0;
    align-items: end;
  }

  .forge-banner-visual {
    min-height: 230px;
  }

  .legacy-copy ul {
    grid-template-columns: 1fr;
  }

  .legacy-copy p {
    font-size: 0.9rem;
  }

  .forge-banner-content,
  .forge-banner-content .btn {
    width: 100%;
    min-width: 0;
  }

  .forge-banner-content {
    padding: 28px 22px 30px;
  }

  .forge-banner-content h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.8rem);
    line-height: 0.98;
  }

  .forge-banner-content .btn {
    width: 100%;
  }

  .legacy-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }
}

@media (max-width: 420px) {
  .site-header,
  .section-shell,
  .final-cta,
  .forge-banner,
  .site-footer {
    width: min(100% - 18px, 1180px);
  }

  .hero {
    min-height: 610px;
    padding: 28px 14px;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.12rem, 11vw, 3rem);
  }

  .section-heading h2,
  .cta-content h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .process-section,
  .services-section,
  .results-section,
  .about-section,
  .legacy-section {
    padding: 22px 16px;
  }

  .forge-banner-content {
    padding: 24px 16px 26px;
  }

  .legacy-copy p:nth-of-type(2),
  .legacy-copy p:nth-of-type(3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
