:root {
  --bg: #ffffff;
  --bg-soft: #fffaf2;
  --panel: #ffffff;
  --panel-tint: rgba(244, 221, 183, 0.28);
  --text: #1f2633;
  --muted: #5f6a78;
  --line: rgba(31, 38, 51, 0.1);
  --line-strong: rgba(31, 38, 51, 0.18);
  --accent: #ed552d;
  --accent-green: #54b585;
  --accent-warm: #f4ddb7;
  --radius-xl: 40px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: min(1240px, calc(100vw - 52px));
  --shadow-soft: 0 16px 44px rgba(31, 38, 51, 0.08);
  --shadow-medium: 0 24px 58px rgba(31, 38, 51, 0.12);
  --page-mouse-x: 50vw;
  --page-mouse-y: 28vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(237, 85, 45, 0.1), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(84, 181, 133, 0.12), transparent 22%),
    linear-gradient(160deg, #ffffff 0%, #fffdf9 46%, #fff9f0 100%);
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  filter: blur(58px);
  transform: translate3d(calc(var(--page-mouse-x) - 50%), calc(var(--page-mouse-y) - 50%), 0);
  background:
    radial-gradient(circle, rgba(244, 221, 183, 0.45) 0%, rgba(237, 85, 45, 0.22) 36%, rgba(84, 181, 133, 0.18) 54%, transparent 74%);
  transition: opacity 220ms ease;
}

body.page-glow-active::before {
  opacity: 0.34;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
  position: relative;
  z-index: 3;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(31, 38, 51, 0.12);
  box-shadow: 0 12px 26px rgba(31, 38, 51, 0.07);
  backdrop-filter: blur(12px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(90deg, #ed552d, #f36b46);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(237, 85, 45, 0.24);
}

.button-primary:hover {
  background: #dd4c25;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line-strong);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(84, 181, 133, 0.45);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  padding: 64px 0 84px;
}

.hero-mesh,
.hero-grid,
.hero-glow,
.hero-mouse-glow,
.hero-divider {
  position: absolute;
  pointer-events: none;
}

.hero-mesh {
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(237, 85, 45, 0.12), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(84, 181, 133, 0.1), transparent 22%),
    radial-gradient(circle at 58% 74%, rgba(244, 221, 183, 0.46), transparent 36%);
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 38, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 38, 51, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-glow {
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.74;
}

.hero-glow-orange {
  top: -20px;
  left: -140px;
  width: 320px;
  height: 320px;
  background: rgba(237, 85, 45, 0.22);
}

.hero-glow-green {
  top: 40px;
  right: -140px;
  width: 340px;
  height: 340px;
  background: rgba(84, 181, 133, 0.22);
}

.hero-mouse-glow {
  width: 280px;
  height: 280px;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 221, 183, 0.5) 0%, rgba(237, 85, 45, 0.26) 42%, transparent 72%);
  filter: blur(34px);
  opacity: 0;
  transform: translate3d(var(--mouse-x, 0), var(--mouse-y, 0), 0);
  transition: opacity 220ms ease, transform 160ms ease;
}

.hero.hero-active .hero-mouse-glow {
  opacity: 1;
}

.hero-divider {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 85, 45, 0.45), rgba(84, 181, 133, 0.45), transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, 1fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-copy h1 {
  margin-top: 14px;
  max-width: 17ch;
  font-size: clamp(3.2rem, 5.8vw, 4.45rem);
}

.hero-text,
.section-intro,
.section-copy-note,
.support-panel p,
.service-card p,
.talent-tile p,
.fit-card p,
.feature-item p,
.process-card p,
.footer-block p,
.footer-block a {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-microline {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-microline span + span {
  position: relative;
}

.hero-microline span + span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-green);
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-visual {
  min-height: 510px;
  display: grid;
  place-items: center;
}

.hero-visual-image {
  width: clamp(320px, 42vw, 520px);
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 22px 34px rgba(31, 38, 51, 0.2));
  animation: floatLogo 7.5s ease-in-out infinite;
}

.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(244, 221, 183, 0.4), rgba(255, 255, 255, 0.9));
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 16px 0;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  font-weight: 700;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

.capability-track span {
  position: relative;
}

.capability-track span::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--accent);
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 38, 51, 0.1), transparent);
}

.about-layout,
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.section-heading h2,
.section-copy h2,
.cta-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.section-intro {
  margin: 10px 0 0;
  max-width: 58ch;
  font-size: 1rem;
}

.section-intro-lead {
  color: #323b48;
  font-size: 1.1rem;
}

.section-copy-note {
  margin: 8px 0 0;
  max-width: 52ch;
  font-size: 0.95rem;
}

.about-stack {
  display: grid;
  gap: 16px;
}

.about-copy {
  position: relative;
  display: grid;
  align-content: start;
}

.about-cinema {
  position: relative;
  min-height: 150px;
  margin-top: 22px;
  border-radius: 30px;
  border: 1px solid rgba(31, 38, 51, 0.1);
  background:
    radial-gradient(circle at 14% 20%, rgba(237, 85, 45, 0.12), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(84, 181, 133, 0.14), transparent 32%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.85), rgba(244, 221, 183, 0.36));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-cinema-line {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(237, 85, 45, 0.6), rgba(84, 181, 133, 0.6));
}

.about-cinema-line-one {
  width: 72%;
  height: 2px;
  left: 10%;
  top: 34%;
  opacity: 0.5;
}

.about-cinema-line-two {
  width: 56%;
  height: 2px;
  right: 12%;
  bottom: 28%;
  opacity: 0.52;
}

.about-cinema-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  animation: pulseDot 3.8s ease-in-out infinite;
}

.about-cinema-dot-orange {
  left: 20%;
  top: 26%;
  background: var(--accent);
}

.about-cinema-dot-green {
  right: 20%;
  bottom: 22%;
  background: var(--accent-green);
  animation-delay: 0.9s;
}

.support-panel,
.service-card,
.talent-tile,
.fit-card,
.feature-item,
.process-card,
.cta-panel {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.support-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

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

.about-mini-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 221, 183, 0.28));
}

.about-mini-card span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.service-grid,
.talent-grid,
.fit-grid,
.process-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

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

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

.service-card,
.talent-tile,
.fit-card,
.process-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 204px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.talent-tile:hover,
.fit-card:hover,
.process-card:hover,
.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(84, 181, 133, 0.45);
  box-shadow: 0 22px 44px rgba(31, 38, 51, 0.12);
}

.card-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(237, 85, 45, 0.16), rgba(84, 181, 133, 0.2));
  border: 1px solid rgba(84, 181, 133, 0.28);
}

.card-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.talent-tile h3,
.fit-card h3,
.feature-item h3,
.process-card h3 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.talent-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.talent-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.talent-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 85, 45, 0.25);
  background: linear-gradient(145deg, rgba(237, 85, 45, 0.14), rgba(244, 221, 183, 0.42));
  color: var(--accent);
}

.talent-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-type {
  min-height: 30px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(84, 181, 133, 0.3);
  background: rgba(84, 181, 133, 0.1);
  color: #328a62;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.talent-note {
  white-space: nowrap;
}

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(237, 85, 45, 0.1), transparent 26%),
    radial-gradient(circle at 90% 82%, rgba(84, 181, 133, 0.1), transparent 26%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(244, 221, 183, 0.24));
}

.why-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 22px;
}

.why-copy-panel {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 20%, rgba(237, 85, 45, 0.12), transparent 30%),
    linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(244, 221, 183, 0.34));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}

.why-copy-panel h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  max-width: 12ch;
}

.why-copy-panel .section-intro {
  max-width: 38ch;
  font-size: 1.03rem;
  margin-top: 14px;
}

.why-accent-band {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.why-accent-band span {
  min-height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 0.8rem;
  color: #3f4854;
  font-weight: 600;
}

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

.feature-item {
  border-radius: 22px;
  padding: 22px;
  display: flex;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-height: 174px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(90deg, rgba(237, 85, 45, 0.06), rgba(84, 181, 133, 0.06));
  border: 1px solid rgba(31, 38, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(237, 85, 45, 0.8), rgba(84, 181, 133, 0.8));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 260ms ease;
}

.feature-item:hover::after {
  transform: scaleX(1);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  box-shadow: 0 0 0 7px rgba(237, 85, 45, 0.08);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: #d44c28;
  border: 1px solid rgba(237, 85, 45, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(237, 85, 45, 0.14), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(84, 181, 133, 0.14), transparent 24%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(244, 221, 183, 0.28));
}

.process-section::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: clamp(250px, 44%, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 85, 45, 0.38), rgba(84, 181, 133, 0.38), transparent);
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .section-heading h2 {
  max-width: 18ch;
}

.process-section .process-grid {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 34px;
}

.process-section .process-card {
  flex: 1 1 0;
  position: relative;
  min-height: 240px;
  padding: 26px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(31, 38, 51, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86)),
    linear-gradient(140deg, rgba(237, 85, 45, 0.08), rgba(84, 181, 133, 0.06));
  overflow: hidden;
  transition: flex 320ms ease, min-height 320ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-section .process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(31, 38, 51, 0.06);
  pointer-events: none;
}

.process-section .process-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(237, 85, 45, 0.92), rgba(84, 181, 133, 0.86));
}

.process-section .process-card h3 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  line-height: 1.02;
}

.process-section .process-card p {
  max-width: 28ch;
  margin-top: 12px;
  font-size: 1rem;
}

.process-section .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 56px rgba(31, 38, 51, 0.16);
}

.process-section .process-card:first-child {
  flex: 1.58 1 0;
  min-height: 300px;
}

.process-section .process-card:nth-child(2),
.process-section .process-card:nth-child(3) {
  flex: 0.94 1 0;
  min-height: 248px;
}

.process-section .process-grid:hover .process-card {
  flex: 1 1 0;
  min-height: 248px;
}

.process-section .process-grid:hover .process-card:hover {
  flex: 1.58 1 0;
  min-height: 300px;
}

.cta-section {
  padding-top: 24px;
  padding-bottom: 88px;
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 26px;
  background:
    radial-gradient(circle at 10% 84%, rgba(237, 85, 45, 0.18), transparent 32%),
    radial-gradient(circle at 90% 14%, rgba(84, 181, 133, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 243, 0.96));
}

.cta-copy {
  max-width: 920px;
}

.cta-actions {
  margin-top: 2px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: flex-start;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 28px 0 22px;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 12px;
}

.footer-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.footer-block a {
  display: block;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.footer-socials {
  display: grid;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  transition: border-color 160ms ease, transform 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 181, 133, 0.4);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes floatLogo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.8;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .about-layout,
  .why-layout,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: auto;
    pointer-events: none;
  }

  .hero-layout {
    position: relative;
    min-height: 460px;
    gap: 30px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual-image {
    position: absolute;
    right: -30px;
    top: 46px;
    width: clamp(280px, 44vw, 420px);
    opacity: 0.2;
    filter: drop-shadow(0 18px 26px rgba(31, 38, 51, 0.16));
  }

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

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

  .cta-panel {
    flex-direction: column;
  }

  .cta-actions {
    align-self: flex-start;
  }

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

  .process-section .process-card,
  .process-section .process-card:first-child,
  .process-section .process-card:nth-child(2),
  .process-section .process-card:nth-child(3) {
    flex: 1 1 auto;
    min-height: 230px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-copy h2 {
    font-size: clamp(2rem, 5.4vw, 2.7rem);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .hero-layout {
    position: relative;
    min-height: 420px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: auto;
    pointer-events: none;
  }

  .hero-visual-image {
    position: absolute;
    right: -34px;
    top: 58px;
    width: clamp(260px, 70vw, 420px);
    opacity: 0.2;
    filter: drop-shadow(0 18px 26px rgba(31, 38, 51, 0.16));
  }

  .about-cinema {
    min-height: 118px;
  }

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

  .process-section .section-heading h2 {
    max-width: 100%;
  }

  .cta-copy h2 {
    max-width: 20ch;
  }

  .cta-actions .button-secondary {
    white-space: normal;
  }

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

  .service-grid,
  .fit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .talent-note {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .section {
    padding: 72px 0;
  }

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

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

  .hero-visual-image {
    right: -28px;
    top: 76px;
    width: clamp(220px, 82vw, 320px);
    opacity: 0.16;
  }

  .service-card,
  .talent-tile,
  .fit-card,
  .feature-item,
  .process-card,
  .support-panel,
  .cta-panel {
    padding: 20px;
    min-height: auto;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-microline {
    font-size: 0.84rem;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .footer-grid {
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    height: 44px;
    width: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.4rem);
  }

  .hero-text,
  .section-intro,
  .section-copy-note {
    font-size: 0.94rem;
  }

  .process-section .process-card h3 {
    font-size: 1.56rem;
  }

  .process-section .process-card p {
    font-size: 0.95rem;
  }

  .cta-panel {
    padding: 18px;
  }

  .footer-block a {
    font-size: 0.92rem;
  }
}

@media (max-width: 980px) {
  body::before {
    width: 460px;
    height: 460px;
    filter: blur(50px);
  }
}

@media (hover: none) and (pointer: coarse) {
  body.page-glow-active::before {
    opacity: 0.22;
  }
}
