:root {
  --bg: #020202;
  --text: #f6f5f2;
  --muted: #c3bfbd;
  --soft: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 118, 104, 0.24);
  --line-strong: rgba(255, 150, 140, 0.36);
  --red: #ff3128;
  --red-soft: #ff8b86;
  --panel: rgba(20, 7, 5, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  /* Prevents rubber-band bounce jank at page edges */
  overscroll-behavior-y: contain;
  /* Subpixel text rendering — sharper during animations */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: #000;
  font-family: "Inter", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  /* Smooth momentum scroll on iOS */
  -webkit-overflow-scrolling: touch;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.075;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: screen;
  content: "";
}

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

img,
video {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 6%, rgba(255, 49, 40, 0.16), transparent 28%),
    #000;
  box-shadow: 0 90px 130px rgba(0, 0, 0, 0.92);
  transform-origin: center bottom;
  will-change: transform, border-radius;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 4.8vw, 62px) 80px 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 103, 0, calc(0.22 + (var(--footer-glow, 0) * 0.12))), transparent 30%),
    radial-gradient(circle at 84% 38%, rgba(255, 49, 40, calc(0.11 + (var(--footer-glow, 0) * 0.08))), transparent 34%),
    linear-gradient(180deg, rgba(18, 3, 1, 0.96), #080100 48%, #000 100%);
  border-top: 1px solid rgba(255, 83, 65, 0.12);
}

.site-footer::after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.68), rgba(2, 2, 2, 0));
  content: "";
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: radial-gradient(circle at 50% 28%, black, transparent 76%);
  content: "";
}

.footer-orb {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 19, 0.5), transparent 62%);
  filter: blur(28px);
  transform: translateX(-50%);
  animation: footerPulse 5.8s ease-in-out infinite alternate;
}

@keyframes footerPulse {
  to {
    opacity: 0.62;
    transform: translateX(-50%) scale(1.14);
  }
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  margin: 0 auto;
}

.footer-hero {
  display: grid;
  max-width: 820px;
  margin: 0 auto 36px;
  justify-items: center;
  text-align: center;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand-lockup img {
  display: block;
  width: 38px;
  height: 38px;
  filter:
    drop-shadow(0 0 18px rgba(255, 49, 40, 0.44))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.footer-hero h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(255, 255, 255, 0.16);
}

.footer-hero h2 span {
  color: var(--red);
}

.footer-hero > p:not(.section-kicker) {
  max-width: 660px;
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.5;
}

.footer-hero .button {
  width: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.35;
  transition:
    color     0.34s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.42s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-socials a:hover,
.store-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 95, 76, 0.5);
  box-shadow: 0 18px 48px rgba(255, 49, 40, 0.16);
}

.store-button {
  display: grid;
  min-width: 150px;
  gap: 3px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-button span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 15px;
  line-height: 1.05;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.page-main {
  position: relative;
  min-height: 100vh;
  padding: 120px 80px 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 49, 40, 0.2), transparent 31%),
    radial-gradient(circle at 18% 74%, rgba(255, 103, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #080100, #020202 58%, #070100);
}

.page-main::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at 50% 28%, black, transparent 72%);
  content: "";
}

.page-header {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1180px;
  margin: 0 auto 48px;
  gap: 22px;
}

.page-header .section-kicker {
  margin-bottom: 4px;
}

.page-title {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.96;
}

.page-title span {
  color: var(--red);
}

.page-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.6;
}

.page-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-card,
.consultation-card {
  border: 1px solid rgba(255, 118, 104, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(45, 10, 7, 0.68), rgba(5, 5, 5, 0.82)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.content-card {
  min-height: 220px;
  padding: 26px;
}

.content-card b {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.content-card h2,
.content-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  font-weight: 500;
}

.content-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.consultation-card {
  padding: 28px;
}

.consultation-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 500;
}

.consultation-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.booking-step {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.booking-step b {
  color: var(--red);
  font-size: 12px;
}

.booking-step strong {
  font-size: 17px;
}

.booking-step span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.consultation-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-group-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 15px;
}

.form-field select option {
  color: #111;
  background: #fff;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
  padding: 14px;
}

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

.option-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.option-card input {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.booking-confirmation {
  display: none;
  padding: 18px;
  border: 1px solid rgba(78, 240, 160, 0.3);
  border-radius: 14px;
  color: #d8ffe9;
  background: rgba(23, 145, 84, 0.14);
  line-height: 1.5;
}

.booking-confirmation.is-visible {
  display: block;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 18px 80px 34px;
  background: #000;
  isolation: isolate;
}

.hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 70% 44%, rgba(255, 80, 18, 0.35), transparent 26%),
    radial-gradient(circle at 28% 72%, rgba(255, 49, 40, 0.18), transparent 22%);
  mix-blend-mode: screen;
  content: "";
  /* Pure CSS pulse — replaces the GSAP repeat:-1 --hero-glow animation */
  animation: heroPulse 5s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from { opacity: 0.14; }
  to   { opacity: 0.30; }
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #000;
  transform: translateZ(0);
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 56px;
  min-width: 0;
}

.page-site-header {
  position: absolute;
  top: 18px;
  right: 80px;
  left: 80px;
  z-index: 3;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.92),
    0 0 14px rgba(255, 255, 255, 0.35);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 0 16px rgba(255, 49, 40, 0.48))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.52));
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  max-width: 100%;
  height: 46px;
  padding: 2px;
  border: 1px solid rgba(255, 144, 133, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(33, 16, 14, 0.82), rgba(8, 8, 8, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 50px rgba(0, 0, 0, 0.55);
}

.nav-pill a {
  display: inline-grid;
  min-width: 98px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 16px;
  font-weight: 500;
  transition:
    background 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.32s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-pill .active {
  background: linear-gradient(180deg, #ff3f35, #fa2c23);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 28px rgba(255, 48, 35, 0.26);
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  height: 44px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff4037, #fa2b21);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 12px 38px rgba(255, 48, 35, 0.24);
  cursor: pointer;
}

.menu-dots {
  display: grid;
  grid-template-columns: repeat(2, 3px);
  gap: 5px;
}

.menu-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  padding-top: 85px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(705px, 48vw);
  min-width: 0;
}

.eyebrow,
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(66, 66, 66, 0.82), rgba(30, 30, 30, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 22px 55px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 500;
}

.eyebrow span,
.about-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 17px var(--red);
}

.title-lockup {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 28px;
}

h1 {
  max-width: 530px;
  margin: 0;
  font-size: 88px;
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: 0;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.98),
    0 0 18px rgba(255, 255, 255, 0.24),
    0 0 1px rgba(255, 255, 255, 0.9);
}

h1 span {
  color: var(--red-soft);
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.98),
    0 0 20px rgba(255, 49, 40, 0.38),
    0 0 1px rgba(255, 255, 255, 0.7);
}

.title-lockup > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.05;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.96),
    0 0 22px rgba(0, 0, 0, 0.86);
}

.intro {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.52;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.98),
    0 0 24px rgba(0, 0, 0, 0.94);
  overflow-wrap: break-word;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-grid;
  min-width: 176px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transform: translate3d(0, 0, 0);
  transition:
    border-color 0.38s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.38s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.38s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.38s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.button-muted {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(67, 69, 69, 0.94), rgba(27, 29, 29, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-hot {
  border: 1px solid rgba(255, 156, 142, 0.18);
  background: linear-gradient(180deg, #ff3d34, #f63026);
  box-shadow:
    0 0 35px rgba(255, 68, 23, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button:hover,
.see-work:hover,
.about-pill:hover {
  filter: saturate(1.12) brightness(1.06);
}

.metric-grid {
  display: grid;
  grid-template-columns: 216px 216px 216px;
  gap: 14px;
  margin-top: 27px;
}

.metric-card,
.glass-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(48, 14, 11, 0.66), rgba(4, 4, 4, 0.78) 54%),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.metric-card {
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 13px 18px;
  border-radius: 18px;
}

.metric-card h2,
.glass-card h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.metric-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.metric-line strong,
.glass-card > strong {
  font-size: 40px;
  font-weight: 400;
  line-height: 0.88;
}

.metric-line p {
  max-width: 98px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.15;
}

.avatar-stack {
  display: flex;
  margin-bottom: 5px;
}

.avatar-stack span {
  width: 22px;
  height: 22px;
  margin-left: -6px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #ffe0cf 0 22%, transparent 23%),
    linear-gradient(135deg, #6ec0c8, #f69f85);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 35%, #ffe8dc 0 22%, transparent 23%),
    linear-gradient(135deg, #f37c72, #7dc6d1);
}

.avatar-stack span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 35%, #ffe0cf 0 22%, transparent 23%),
    linear-gradient(135deg, #8797ff, #ffc47e);
}

.about-pill {
  min-height: 36px;
  margin-top: 59px;
  padding: 0 17px;
  background: rgba(5, 5, 5, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.about-pill span {
  width: 7px;
  height: 7px;
}

.social-stack {
  position: absolute;
  top: auto;
  bottom: 72px;
  left: 4px;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.social-stack div {
  display: flex;
  gap: 8px;
}

.social-stack a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 5, 5, 0.46);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-stack a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 49, 40, 0.2);
  transform: translateY(-2px);
}

.social-stack div a {
  font-size: 18px;
}

.side-panel {
  position: absolute;
  top: 76px;
  right: 0;
  width: min(440px, 38vw);
}

.trusted {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
  padding: 11px 14px 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 8, 8, 0.42);
  font-size: 11px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.trusted span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.trusted span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 49, 40, 0.9);
  content: "";
}

.trusted p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.trusted strong {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.glass-card {
  border-radius: 16px;
}

.agents-card {
  min-height: 238px;
  padding: 26px 28px 28px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.card-top span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ef0a0;
  box-shadow: 0 0 14px rgba(78, 240, 160, 0.78);
  content: "";
}

.status-line {
  width: 100%;
  height: 2px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.status-line span {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 49, 40, 0.62);
}

.agents-card strong {
  display: block;
  margin-top: 58px;
}

.agents-card p,
.partner-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.24;
}

.agents-card p {
  max-width: 260px;
}

.partner-card {
  min-height: 292px;
  margin-top: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 69, 45, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(48, 14, 11, 0.76), rgba(5, 5, 5, 0.82) 68%);
}

.partner-card strong {
  display: block;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 600;
}

.logo-cloud span {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.05;
}

.logo-cloud span::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.see-work {
  display: grid;
  width: 100%;
  height: 44px;
  place-items: center;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3d34, #fa2d24);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(255, 48, 35, 0.22);
}

.manifesto {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.manifesto p {
  margin: 0;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.18;
  text-shadow:
    0 4px 26px rgba(0, 0, 0, 0.98),
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 1px rgba(255, 255, 255, 0.9);
}

.manifesto span {
  color: var(--red);
}

.scroll-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  writing-mode: vertical-rl;
}

.scroll-mark i {
  display: block;
  width: 1px;
  height: 84px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 49, 40, 0.62);
}

.section {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 112px 80px;
  background:
    radial-gradient(circle at 72% 92%, rgba(255, 82, 24, calc(0.06 + (var(--section-glow, 0) * 0.13))), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(255, 49, 40, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), #050201 52%, rgba(0, 0, 0, 0.96));
  border-top: 1px solid rgba(255, 83, 65, 0.08);
}

.about-section {
  min-height: 100vh;
  padding-top: clamp(150px, 12vh, 190px);
  padding-bottom: clamp(110px, 10vw, 160px);
  scroll-margin-top: 220px;
}

.services-section {
  padding-top: clamp(118px, 11vh, 150px);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  content: "";
}

.section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 190px;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 100%, rgba(255, 72, 20, 0.18), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  content: "";
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-grid {
  display: grid;
  max-width: 1420px;
  margin: 0 auto;
  gap: 70px;
  min-width: 0;
}

.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.9fr);
  align-items: start;
  gap: clamp(42px, 5vw, 78px);
}

.about-grid > * {
  min-width: 0;
}

.section-head {
  display: flex;
  max-width: 1420px;
  margin: 0 auto 42px;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-head .section-title {
  max-width: 780px;
}

.services-section .section-head {
  display: block;
  margin-bottom: 34px;
}

.services-section .section-title {
  max-width: 980px;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.03;
}

.section-head.compact {
  display: block;
  max-width: 860px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
}

.section-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 49, 40, 0.9);
}

.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 4px 26px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(255, 255, 255, 0.12);
}

.about-section .section-title {
  max-width: 690px;
  font-size: clamp(46px, 3.6vw, 62px);
  line-height: 1.02;
}

.section-title span {
  color: var(--red);
}

.lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.32;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 103, 87, 0.25);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(35, 7, 4, 0.9), rgba(5, 5, 5, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 35px 90px rgba(0, 0, 0, 0.56);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 70% 20%, rgba(255, 49, 40, 0.16), transparent 34%);
  content: "";
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.012);
  transition:
    transform 0.82s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.82s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.image-frame:hover img,
.case-card:hover .dashboard-visual img,
.planner-card:hover .planner-preview img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.about-image-frame {
  aspect-ratio: 1.42 / 1;
  max-height: 430px;
  margin-top: 32px;
}

.about-image-frame img {
  object-position: center top;
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: grid;
  max-width: 280px;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(12px);
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.3;
}

.about-content {
  display: grid;
  gap: 28px;
  padding-top: clamp(10px, 4vw, 54px);
  min-width: 0;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.mini-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lift-card {
  min-height: 188px;
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 18px;
  transition:
    transform 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.46s cubic-bezier(0.19, 1, 0.22, 1);
}

.lift-card strong,
.lift-card > span {
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.lift-card p {
  max-width: 240px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.red-card {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 54, 36, 0.42), transparent 36%),
    linear-gradient(145deg, rgba(61, 13, 9, 0.9), rgba(8, 4, 3, 0.76));
}

.lift-card:hover,
.service-card:hover,
.testimonial-card:hover,
.case-card:hover,
.planner-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 95, 76, 0.5);
  box-shadow: 0 28px 80px rgba(255, 49, 40, 0.14), 0 28px 80px rgba(0, 0, 0, 0.6);
}

.service-grid {
  display: grid;
  max-width: 1420px;
  margin: 18px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-showcase {
  display: grid;
  max-width: 1420px;
  aspect-ratio: 3 / 1.05;
  margin: 0 auto 18px;
  align-items: end;
}

.services-showcase img {
  position: absolute;
  inset: 0;
  object-position: center 42%;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 0 28px 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(2, 2, 2, 0.68);
  backdrop-filter: blur(14px);
}

.showcase-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-copy strong {
  display: block;
  max-width: 360px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.service-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 118, 104, 0.19);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 20%), rgba(255, 49, 40, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(26, 20, 19, 0.84), rgba(4, 4, 4, 0.86));
  backdrop-filter: blur(14px);
  transition:
    transform 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.46s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.service-card::after {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 49, 40, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 49, 40, 0.32) 49% 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(255, 49, 40, 0.32) 49% 51%, transparent 52%);
  opacity: 0.65;
  content: "";
}

.service-card i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 49, 40, 0.35);
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 49, 40, 0.08);
  font-style: normal;
  font-weight: 700;
  transition:
    transform 0.44s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.44s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover i {
  transform: rotate(6deg) scale(1.08);
  box-shadow: 0 0 28px rgba(255, 80, 28, 0.32);
}

.service-card h3 {
  margin: 52px 0 16px;
  font-size: 26px;
  font-weight: 500;
}

.service-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.48;
}

.featured-service {
  background:
    radial-gradient(circle at var(--mx, 75%) var(--my, 18%), rgba(255, 111, 33, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(65, 13, 7, 0.88), rgba(7, 3, 2, 0.86));
}

.process-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 49, 40, 0.18), transparent 32%),
    linear-gradient(180deg, #020100, #0a0201 54%, #020100);
}

.process-section::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 180px 180px, 180px 180px;
  mask-image: none;
}

.process-section::after {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 72, 20, 0.17), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.process-section > :not(.process-video) {
  z-index: 2;
}

.process-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.66;
  pointer-events: none;
  filter: saturate(1.06) contrast(1.08) brightness(0.78);
}

.process-track {
  position: relative;
  display: grid;
  max-width: 1420px;
  margin: 28px auto 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding-top: 66px;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 7%;
  width: 86%;
  height: 1px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.1);
}

.process-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6a00);
  box-shadow: 0 0 22px rgba(255, 49, 40, 0.5);
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.3s ease, background 0.3s ease;
}

.process-step::before {
  position: absolute;
  top: -53px;
  left: 22px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 49, 40, 0.44);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 49, 40, 0.34), rgba(3, 3, 3, 0.94) 60%);
  box-shadow: 0 0 24px rgba(255, 49, 40, 0.2);
  content: "";
}

.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 49, 40, 0.08);
}

.process-step.is-active {
  border-color: rgba(255, 91, 54, 0.48);
  background: rgba(255, 49, 40, 0.075);
  box-shadow: 0 20px 70px rgba(255, 49, 40, 0.11);
}

.process-step.is-active::before {
  background: radial-gradient(circle, rgba(255, 103, 0, 0.9), rgba(255, 49, 40, 0.22) 48%, rgba(3, 3, 3, 0.94) 68%);
  box-shadow: 0 0 34px rgba(255, 86, 26, 0.54);
}

.process-step b {
  color: var(--red);
}

.process-step h3 {
  margin: 20px 0 12px;
  font-size: 24px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(620px, 1.5fr);
  gap: 42px;
  align-items: center;
}

.case-section > * {
  max-width: none;
}

.case-copy {
  max-width: 420px;
}

.case-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.55;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  min-height: 350px;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #080302;
}

.dashboard-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 62%, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 55% 55%, transparent, rgba(0, 0, 0, 0.28) 72%);
  content: "";
}

.dashboard-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.case-info {
  padding: 38px;
}

.case-info > p {
  margin: 0 0 18px;
  color: var(--red);
  font-weight: 600;
}

.case-info h3 {
  max-width: 440px;
  margin: 0 0 42px;
  font-size: clamp(34px, 3.2vw, 56px);
  font-weight: 400;
  line-height: 1.02;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-metrics span {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 28px;
}

.case-metrics strong {
  font-size: 46px;
  font-weight: 400;
}

.case-metrics small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.2;
}

.logo-marquee {
  max-width: 1420px;
  margin: 42px auto;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-marquee span {
  padding: 26px 44px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 25px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.logo-marquee:hover div {
  animation-play-state: paused;
}

.logo-marquee span:hover {
  color: #fff;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.testimonial-grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 32px;
  border: 1px solid rgba(255, 118, 104, 0.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(22, 16, 15, 0.84), rgba(5, 5, 5, 0.82));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.45;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.final-cta {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
  padding-bottom: clamp(88px, 8vw, 130px);
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 49, 40, 0.28), transparent 30%),
    linear-gradient(180deg, #030100, #120301 60%, #060100 88%, #030100);
}

.final-cta::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(8, 1, 0, 0.62) 48%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.8)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 180px 180px, 180px 180px;
  mask-image: none;
}

.final-cta::after {
  z-index: 0;
  height: 260px;
  background:
    radial-gradient(circle at 60% 100%, rgba(255, 72, 20, 0.16), transparent 36%),
    linear-gradient(180deg, transparent, rgba(3, 1, 0, 0.96));
}

.final-cta-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.08) brightness(0.82);
}

.final-cta > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-cta p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.55;
}

.planner-card {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 30px;
  border-radius: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.planner-preview {
  position: relative;
  height: 178px;
  margin: -8px -8px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 103, 87, 0.2);
  border-radius: 16px;
  background: #090302;
}

.planner-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 70% 38%, rgba(255, 49, 40, 0.18), transparent 36%);
  content: "";
}

.planner-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.planner-card h3 {
  margin: 0;
  font-size: 17px;
  text-transform: uppercase;
}

.planner-card .card-top span {
  color: #1ee27a;
}

.planner-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.planner-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.planner-card li span {
  color: var(--red-soft);
  font-size: 12px;
  text-transform: uppercase;
}

/* ── Card background images ── */
.content-card {
  position: relative;
  overflow: hidden;
}

.content-card b,
.content-card h2,
.content-card h3,
.content-card p {
  position: relative;
  z-index: 1;
}

.service-card > i,
.service-card > h3,
.service-card > p {
  position: relative;
  z-index: 1;
}

.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
  filter: saturate(0.3) contrast(1.15) brightness(0.72);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card:hover .card-bg-img,
.content-card:hover .card-bg-img {
  opacity: 0.3;
  transform: scale(1.07);
}

/* ── Page feature image ── */
.page-feature-img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 103, 87, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(35, 7, 4, 0.9), rgba(5, 5, 5, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 35px 90px rgba(0, 0, 0, 0.56);
  aspect-ratio: 16 / 5;
  max-width: 1180px;
  margin: 0 auto 32px;
}

.page-feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  filter: saturate(0.55) contrast(1.1) brightness(0.7);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.page-feature-img:hover img {
  transform: scale(1.03);
}

.page-feature-img::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at 70% 30%, rgba(255, 49, 40, 0.18), transparent 38%);
  content: "";
}

/* ── Page stats bar ── */
.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 32px;
}

.page-stat {
  flex: 1 1 200px;
  display: grid;
  gap: 6px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 118, 104, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(45, 10, 7, 0.68), rgba(5, 5, 5, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.42);
}

.page-stat strong {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}

.page-stat span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity  0.68s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.68s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll-margin so anchor links always land below the floating nav ── */
section[id],
main[id] {
  scroll-margin-top: 72px;
}

/* ── Consistent will-change for GSAP-animated cards ── */
.service-card,
.process-step,
.testimonial-card,
.lift-card,
.case-card,
.planner-card {
  will-change: transform;
}

/* ── backface-visibility prevents GPU flicker on 3D-composited cards ── */
.service-card,
.lift-card,
.case-card,
.testimonial-card,
.planner-card,
.content-card,
.glass-card,
.process-step {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* content-visibility: auto — browser skips off-screen section rendering
   until they're near the viewport. Biggest scroll-jank fix for long pages. */
.about-section,
.services-section,
.process-section,
.case-section,
.trust-section,
.final-cta {
  content-visibility: auto;
  /* contain-intrinsic-size gives the browser a size estimate so
     the scrollbar doesn't jump when sections paint in */
  contain-intrinsic-size: 0 800px;
}

/* Ensure the parallax/scroll-driven image is on its own compositing layer */
.hero-video,
.about-image-frame img,
.process-video,
.final-cta-video {
  will-change: transform;
}

.split-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

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

@media (max-width: 1380px) {
  .hero-shell {
    padding-right: 48px;
    padding-left: 48px;
  }

  .page-site-header {
    right: 48px;
    left: 48px;
  }

  h1 {
    font-size: 74px;
  }

  .metric-grid {
    grid-template-columns: repeat(3, 190px);
  }

  .side-panel {
    width: min(420px, 39vw);
  }

  .manifesto p {
    font-size: 29px;
  }

  .section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .page-main {
    padding-right: 48px;
    padding-left: 48px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.86fr);
    gap: 44px;
  }

  .about-section .section-title {
    font-size: clamp(42px, 3.8vw, 56px);
  }

  .about-image-frame {
    max-height: 380px;
  }

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

  .services-showcase {
    aspect-ratio: 2.35 / 1;
  }

  .services-section .section-title {
    max-width: 820px;
    font-size: clamp(42px, 4.6vw, 58px);
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-shell {
    overflow: visible;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .nav-pill {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 10px;
  }

  .hero {
    display: grid;
    gap: 46px;
    padding-top: 92px;
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .side-panel,
  .manifesto,
  .social-stack {
    position: static;
  }

  .side-panel {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .trusted {
    grid-column: 1 / -1;
    margin: 0;
    text-align: left;
  }

  .partner-card {
    margin-top: 0;
  }

  .social-stack {
    display: flex;
  }

  .social-stack div {
    display: contents;
  }

  .manifesto {
    justify-content: space-between;
  }

  .about-grid,
  .case-section,
  .case-card,
  .final-cta,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

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

  .about-content {
    padding-top: 0;
  }

  .about-section {
    min-height: auto;
    padding-top: 110px;
  }

  .about-section .section-title {
    max-width: 760px;
    font-size: clamp(42px, 6.5vw, 58px);
  }

  .services-section {
    padding-top: 98px;
  }

  .services-section .section-title {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 56px);
  }

  .about-image-frame {
    max-height: none;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step::before {
    top: 18px;
    right: 20px;
    left: auto;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  .hero-shell {
    padding: 16px 18px 28px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .page-site-header {
    right: 18px;
    left: 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .nav-pill {
    flex: 0 0 100%;
    order: 3;
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: calc(100vw - 36px);
    overflow-x: auto;
    padding: 3px;
  }

  .nav-pill a {
    flex: 0 0 82px;
    min-width: 82px;
    font-size: 14px;
  }

  .menu-button {
    height: 40px;
    padding: 0 15px;
  }

  .hero {
    padding-top: 40px;
    min-width: 0;
  }

  .hero-copy,
  .intro {
    width: 100%;
    max-width: 100%;
  }

  .title-lockup {
    display: block;
  }

  h1 {
    font-size: 54px;
  }

  .title-lockup > p {
    margin-top: 14px;
  }

  .intro {
    font-size: 15px;
    max-width: min(100%, 322px);
  }

  .button {
    width: 100%;
  }

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

  .metric-line.split {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .metric-line p {
    max-width: 190px;
    margin: 0;
  }

  .metric-card {
    min-height: 128px;
  }

  .about-pill {
    margin-top: 32px;
  }

  .side-panel {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 12px;
  }

  .manifesto p {
    font-size: 28px;
  }

  .section {
    padding: 70px 18px;
  }

  .page-main {
    padding: 96px 18px 70px;
  }

  .content-grid,
  .form-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 72px 18px 30px;
  }

  .footer-hero > p:not(.section-kicker) {
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .store-buttons {
    gap: 10px;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: clamp(38px, 10vw, 54px);
  }

  .lead {
    font-size: 19px;
  }

  .about-image-frame {
    min-height: 360px;
    aspect-ratio: 1 / 1.04;
  }

  .about-section {
    padding-top: 88px;
  }

  .about-section .section-title {
    font-size: clamp(36px, 9.3vw, 48px);
  }

  .about-cards {
    gap: 14px;
  }

  .lift-card {
    min-height: 170px;
  }

  .services-showcase {
    aspect-ratio: 1 / 0.86;
  }

  .services-section {
    padding-top: 84px;
  }

  .services-section .section-title {
    font-size: clamp(36px, 9vw, 46px);
  }

  .services-showcase img {
    object-fit: contain;
    object-position: center;
    transform: scale(1);
  }

  .showcase-copy {
    margin: 0 14px 14px;
  }

  .showcase-copy strong {
    font-size: 18px;
  }

  .about-cards,
  .service-grid,
  .testimonial-grid,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .case-info {
    padding: 26px;
  }

  .logo-marquee span {
    padding: 22px 28px;
    font-size: 20px;
  }

  .planner-card li {
    align-items: flex-start;
    flex-direction: column;
  }
}

