:root {
  color-scheme: dark;
  --page-bg: #021a31;
  --hero-bg-top: #032f59;
  --hero-bg-bottom: #021525;
  --panel-bg: rgba(4, 18, 33, 0.36);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text-strong: #f9fbff;
  --text-soft: #d9e6f3;
  --accent: #f5a20b;
  --accent-soft: rgba(245, 162, 11, 0.18);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(45, 101, 182, 0.25), transparent 28%),
    linear-gradient(180deg, var(--hero-bg-top), var(--page-bg) 65%);
  color: var(--text-strong);
  font-family: "Manrope", sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-shell {
  overflow: clip;
}

.signals-section {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(26, 115, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #02060b, #000 22%, #02060b 100%);
  color: #fff;
  padding: 6rem 0 7rem;
}

.signals-shell {
  width: min(1300px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.signals-header {
  text-align: center;
  margin-bottom: 4rem;
}

.signals-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.4rem;
  padding: 0.72rem 1.4rem;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffd700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.signals-heading {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.signals-heading span {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(180deg, #fff 0%, #1a73e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  perspective: 2000px;
}

.signals-card {
  height: 31.25rem;
  perspective: 2000px;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  outline: none;
}

.signals-card:focus-visible .signals-card__face--front {
  box-shadow:
    0 0 0 2px rgba(255, 215, 0, 0.35),
    0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.signals-card__tilt {
  width: 100%;
  height: 100%;
  transition: transform 150ms ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.signals-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.signals-card.is-flipped .signals-card__inner {
  transform: rotateY(180deg);
}

.signals-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 1.9rem;
  border-radius: 1.75rem;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.signals-card__face--front {
  position: relative;
  background-color: #070b14;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q40 25 50 0 M50 0 Q60 30 100 20 M100 50 L70 70 M70 70 Q40 60 0 80' stroke='%23FFD700' stroke-width='0.4' fill='none' opacity='0.25'/%3E%3C/svg%3E");
}

.signals-card__face--back {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 80%),
    #1a73e8;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotateY(180deg);
}

.signals-card__corner {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  border-color: rgba(255, 215, 0, 0.4);
  border-style: solid;
  pointer-events: none;
}

.signals-card__corner--top-left {
  top: 1.5rem;
  left: 1.5rem;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 0.75rem 0 0 0;
}

.signals-card__corner--bottom-right {
  right: 1.5rem;
  bottom: 1.5rem;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 0.75rem 0;
}

.signals-card__icon-shell {
  width: 5.3rem;
  height: 5.3rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 500ms ease;
}

.signals-card:hover .signals-card__icon-shell,
.signals-card:focus-visible .signals-card__icon-shell {
  transform: scale(1.08) rotate(5deg);
}

.signals-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  filter: brightness(1.2);
}

.signals-card__title,
.signals-card__reveal-title {
  margin: 0 0 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 700;
}

.signals-card__subtitle {
  margin: 0;
  color: #8a94ad;
  font-size: 1.08rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 400;
}

.signals-card__sparkle {
  margin-bottom: 1.35rem;
  font-size: 2.6rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.signals-card__divider {
  width: 3.2rem;
  height: 0.2rem;
  margin-bottom: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.signals-card__reveal-text {
  margin: 0;
  max-width: 92%;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
}

.pattern-section {
  position: relative;
  background:
    linear-gradient(180deg, #fbfcff, #f2f5fa 100%);
  color: #0f1726;
  padding: 6.5rem 0;
}

.pattern-shell {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.pattern-visual-card {
  position: relative;
  padding: 1rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(0, 116, 219, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 245, 250, 0.9));
  box-shadow:
    0 32px 70px rgba(12, 26, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pattern-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), rgba(239, 243, 249, 0.85) 70%, rgba(230, 236, 245, 0.8) 100%);
  transform-style: preserve-3d;
  transform: rotateX(20deg);
}

.pattern-orbit-item {
  position: absolute;
  top: -10px;
  left: -10px;
  transform-style: preserve-3d;
}

.pattern-ball,
.pattern-ball-shadow {
  position: absolute;
}

.pattern-ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #b8bdc7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: background-color 1000ms linear;
}

.pattern-ball--blue {
  --real-color: #0074db;
}

.pattern-ball--orange {
  --real-color: #f26413;
}

.pattern-ball--dark {
  --real-color: #2e2e50;
}

.pattern-ball--gold {
  --real-color: #ffd700;
}

.pattern-ball-shadow {
  width: 20px;
  height: 5px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  filter: blur(4px);
  transform: translateY(12px);
  z-index: -1;
}

.pattern-copy {
  max-width: 36rem;
}

.pattern-kicker {
  margin: 0 0 1rem;
  color: #1a73e8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pattern-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pattern-title span {
  display: block;
  margin-top: 0.85rem;
  color: #435a74;
}

.pattern-body {
  margin-top: 1.9rem;
  display: grid;
  gap: 1rem;
}

.pattern-body p {
  margin: 0;
  color: #334155;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-section {
  position: relative;
  margin-top: -2px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #050505, #000 60%, #050505 100%);
  color: #fff;
  padding: 6.25rem 1.25rem;
}

.stats-section__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(78rem, 80%);
  height: min(40rem, 80%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(26, 115, 232, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.stats-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin: 0 auto;
  text-align: center;
}

.stats-header {
  margin-bottom: 4.4rem;
}

.stats-title {
  margin: 0 0 0.7rem;
  color: #ffc700;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.05;
  font-weight: 700;
}

.stats-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.stats-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.6rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 199, 0, 0.3);
}

.stats-card__value {
  margin-bottom: 0.7rem;
  background: linear-gradient(180deg, #ffeb3b, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.stats-card__title {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 700;
}

.stats-card__description {
  margin: 0;
  color: #b0bec5;
  font-size: 1.05rem;
  line-height: 1.6;
}

.journey-section {
  position: relative;
  margin-top: -2px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(245, 158, 11, 0.08), transparent 32%),
    linear-gradient(180deg, #0b172e, #101f3a 100%);
  color: #fff;
  padding: 6.25rem 1.25rem;
}

.journey-shell {
  position: relative;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.journey-header {
  margin-bottom: 5.5rem;
  text-align: center;
}

.journey-title {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-wrap: balance;
}

.journey-title span {
  display: block;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, #ffeb3b, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.35));
}

.journey-timeline {
  position: absolute;
  top: 8.15rem;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(11, 23, 46, 0) 0%,
    rgba(255, 199, 0, 0.4) 50%,
    rgba(11, 23, 46, 0) 100%
  );
  z-index: 0;
}

.journey-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 2.5rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
  backdrop-filter: blur(10px);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.journey-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 199, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.journey-card:hover .journey-card__glow {
  opacity: 1;
}

.journey-card__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at top right, rgba(255, 199, 0, 0.1), transparent 60%);
  transition: opacity 300ms ease;
}

.journey-card__header {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-card__number {
  display: block;
  margin-bottom: 0.8rem;
  background: linear-gradient(180deg, #ffeb3b, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 700;
}

.journey-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.journey-card__description {
  margin: 0 0 1.8rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

.journey-card__week {
  color: #ffc700;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.journey-card__list {
  list-style: none;
  margin: 0;
  padding: 1.2rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
}

.journey-card__list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.75rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.journey-card__list li:last-child {
  margin-bottom: 0;
}

.journey-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc700;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.3);
}

.testimonials-section {
  background: #0b172e;
  color: #fff;
  padding: 3.75rem 1.25rem 5rem;
  overflow: hidden;
}

.testimonials-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.testimonials-header h2 {
  margin: 0 0 0.6rem;
  color: #ffc700;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.testimonials-header p {
  margin: 0;
  color: #b0b8c4;
  font-size: 1rem;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1.25rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-card {
  min-width: 320px;
  max-width: 320px;
  flex: 0 0 auto;
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: #162440;
  transition:
    transform 250ms ease,
    border-color 250ms ease;
}

.testimonials-card:hover {
  transform: translateY(-5px);
  border-color: #ffc700;
}

.testimonials-card__header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonials-card__photo {
  width: 60px;
  height: 60px;
  border: 2px solid #ffc700;
  border-radius: 999px;
  object-fit: cover;
}

.testimonials-card__client h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonials-card__client span {
  color: #b0b8c4;
  font-size: 0.85rem;
}

.testimonials-card__title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonials-card__quote {
  min-height: 80px;
  margin: 0 0 1.25rem;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonials-card__company {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffc700;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonials-cta {
  margin: 4.5rem auto 0;
  max-width: 1080px;
  padding: 3.25rem 1.5rem;
  border: 1px solid rgba(255, 199, 0, 0.3);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #162440 0%, #0b172e 100%);
  text-align: center;
}

.testimonials-cta h2 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}

.testimonials-cta p {
  margin: 0;
  color: #b0b8c4;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 62rem;
  margin-inline: auto;
}

.testimonials-cta__button {
  display: inline-block;
  margin-top: 1.9rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: #ffc700;
  color: #000;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

.testimonials-cta__microcopy {
  max-width: 46rem;
  margin: 1rem auto 0;
  color: rgba(176, 184, 196, 0.84);
  font-size: 0.92rem;
  line-height: 1.65;
}

.testimonials-cta__button:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(255, 199, 0, 0.5);
  transform: scale(1.05);
}

.logos-section {
  background: #0b172e;
  color: #fff;
  padding: 3.1rem 0;
  overflow: hidden;
}

.logos-shell {
  width: 100%;
  text-align: center;
}

.logos-title {
  margin: 0 0 2.5rem;
  color: #b0b8c4;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logos-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logos-marquee::before,
.logos-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 150px;
  height: 100%;
  pointer-events: none;
}

.logos-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0b172e, transparent);
}

.logos-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0b172e, transparent);
}

.logos-marquee__track {
  display: flex;
  width: max-content;
  animation: logos-scroll 40s linear infinite;
}

.logos-marquee:hover .logos-marquee__track {
  animation-play-state: paused;
}

.logos-marquee__item {
  display: flex;
  align-items: center;
  margin: 0 80px;
  opacity: 0.5;
  transition: opacity 250ms ease;
}

.logos-marquee__item:hover {
  opacity: 1;
}

.logos-marquee__image {
  display: block;
  width: auto;
  height: 35px;
}

.logos-marquee__image--invert {
  filter: invert(1);
}

@keyframes logos-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(4, 36, 68, 0.1), rgba(1, 16, 29, 0.42)),
    linear-gradient(180deg, var(--hero-bg-top), var(--hero-bg-bottom));
}

.hero__network,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__network {
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero__glow {
  z-index: -2;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.72;
}

.hero__glow--left {
  inset: auto auto 4rem -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(31, 95, 181, 0.42);
}

.hero__glow--right {
  inset: 5rem -2rem auto auto;
  width: 22rem;
  height: 22rem;
  background: rgba(245, 162, 11, 0.16);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 3rem));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 44rem) 1fr;
  align-items: stretch;
  gap: 2rem;
  padding: 4rem 0 0;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 40rem;
  padding: 2rem 0 6rem;
}

.hero__eyebrow {
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c7dff7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__highlight {
  margin: 1rem 0 0;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  text-shadow: 0 0 26px rgba(245, 162, 11, 0.25);
}

.hero__subtitle {
  margin: 1.6rem 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.hero__microcopy {
  margin: 1rem 0 0;
  max-width: 35rem;
  color: rgba(217, 230, 243, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__cta {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #f7b733, var(--accent));
  color: #fff;
  padding: 1rem 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 16px 34px rgba(245, 162, 11, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 40px rgba(245, 162, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: saturate(1.05);
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(245, 162, 11, 0.45);
  outline-offset: 4px;
}

.hero__media {
  position: absolute;
  right: -4rem;
  bottom: 0;
  width: min(52vw, 62rem);
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
  z-index: 1;
  pointer-events: none;
}

.hero__portrait-frame {
  position: relative;
  width: 100%;
  height: min(100vh, 64rem);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% 7% 8%;
  height: 18%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero__portrait {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.4));
  mask-image: linear-gradient(to top, transparent 0%, black 10%, black 100%);
}

@media (max-width: 1280px) {
  .hero__inner {
    grid-template-columns: minmax(0, 38rem) 1fr;
  }

  .hero__media {
    right: -2rem;
    width: min(50vw, 54rem);
  }

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

  .pattern-shell {
    grid-template-columns: 1fr;
  }

  .pattern-copy {
    max-width: 100%;
  }

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

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

@media (max-width: 1024px) {
  .hero__inner {
    width: min(100%, calc(100% - 2rem));
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 5rem;
    overflow: visible;
  }

  .hero__content {
    max-width: 100%;
    padding: 1rem 0 1.5rem;
    text-align: center;
  }

  .hero__eyebrow {
    margin-inline: auto;
  }

  .hero__subtitle {
    max-width: 40rem;
    margin-inline: auto;
  }

  .hero__microcopy {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    justify-content: center;
    margin-top: auto;
  }

  .hero__portrait-frame {
    width: min(118%, 54rem);
    max-width: none;
    height: auto;
  }

  .hero__portrait {
    width: 100%;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    mask-image: linear-gradient(to bottom, black 88%, transparent 100%);
  }

  .signals-section {
    padding: 5rem 0 5.5rem;
  }

  .signals-header {
    margin-bottom: 3rem;
  }

  .signals-grid {
    gap: 1.5rem;
  }

  .pattern-section {
    padding: 5rem 0;
  }

  .pattern-shell {
    gap: 2.5rem;
  }

  .stats-section {
    padding: 5rem 1rem;
  }

  .stats-header {
    margin-bottom: 3rem;
  }

  .stats-grid {
    gap: 1.8rem;
  }

  .journey-section {
    padding: 5rem 1rem;
  }

  .journey-header {
    margin-bottom: 3rem;
  }

  .journey-timeline {
    display: none;
  }

  .testimonials-cta {
    margin-top: 3rem;
    padding: 2.5rem 1rem;
  }

  .logos-marquee__item {
    margin: 0 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 100svh;
    padding-top: 4.75rem;
  }

  .hero__content {
    padding-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero__subtitle {
    line-height: 1.65;
  }

  .hero__portrait-frame {
    width: 130%;
  }

  .hero__portrait {
    width: 100%;
  }

  .signals-shell {
    width: min(100%, calc(100% - 1.25rem));
  }

  .signals-badge {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    padding: 0.68rem 1rem;
  }

  .signals-heading {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .signals-grid {
    grid-template-columns: 1fr;
  }

  .signals-card {
    height: 28.75rem;
  }

  .signals-card__face {
    padding: 2.3rem 1.4rem;
  }

  .signals-card__title,
  .signals-card__reveal-title {
    font-size: 1.5rem;
  }

  .signals-card__subtitle,
  .signals-card__reveal-text {
    font-size: 1rem;
  }

  .pattern-section {
    padding: 4rem 0;
  }

  .pattern-shell {
    width: min(100%, calc(100% - 1.25rem));
    gap: 2rem;
  }

  .pattern-visual-card {
    padding: 0.7rem;
    border-radius: 1.5rem;
  }

  .pattern-stage {
    border-radius: 1.1rem;
  }

  .pattern-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .pattern-title {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .pattern-title span {
    margin-top: 0.7rem;
  }

  .pattern-body {
    margin-top: 1.35rem;
  }

  .pattern-body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .stats-title {
    font-size: 2.2rem;
  }

  .stats-card__value {
    font-size: 4rem;
  }

  .journey-title {
    font-size: 2.2rem;
  }

  .journey-grid {
    gap: 1.25rem;
  }

  .journey-card {
    padding: 2rem 1.35rem;
  }

  .journey-card__number {
    font-size: 3.2rem;
  }

  .journey-card__title {
    font-size: 1.25rem;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
  }

  .testimonials-card__quote {
    font-size: 0.9rem;
  }

  .testimonials-card {
    min-width: 280px;
    max-width: 280px;
  }

  .logos-marquee::before,
  .logos-marquee::after {
    width: 70px;
  }
}

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

  .hero__cta {
    transition: none;
  }

  .signals-card__tilt,
  .signals-card__inner,
  .pattern-ball {
    transition: none;
  }

  .section-reveal,
  .stats-card {
    transition: none;
  }

  .journey-card,
  .journey-card__glow {
    transition: none;
  }

  .testimonials-card,
  .testimonials-cta__button {
    transition: none;
  }

  .logos-marquee__item {
    transition: none;
  }

  .logos-marquee__track {
    animation: none;
  }
}
