:root {
  --milk: #fffafb;
  --white: #ffffff;
  --soft: #f8f4f5;
  --pink: #e8649b;
  --pink-light: #ffd5e6;
  --pink-pale: #fff0f6;
  --graphite: #25222a;
  --muted: #676268;
  --line: rgba(232, 100, 155, 0.18);
  --shadow: 0 24px 70px rgba(49, 33, 42, 0.11);
  --shadow-soft: 0 16px 42px rgba(49, 33, 42, 0.08);
  --radius: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--milk);
  line-height: 1.55;
}

/* Keep editorial headings and subtitles balanced without orphaned words. */
h1,
h2,
h3,
.eyebrow,
.hero-subtitle,
.hero-cta-note,
.section-kicker,
.cases-subtitle,
.process-subtitle,
.founder-role,
.team-subtitle,
.faq-subtitle,
.contact-modal-subtitle,
.footer-desc {
  text-wrap: balance;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 18px;
}

.nav-panel {
  max-width: 1380px;
  margin: 0 auto;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 18px 10px 22px;
  border: 1px solid rgba(36, 35, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 60px rgba(36, 35, 38, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 42px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 34px);
  align-items: center;
  font-size: 14px;
  color: #312f33;
}

.nav-links a {
  transition: color 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-cta,
.button-ghost {
  border: 1px solid rgba(232, 100, 155, 0.7);
  background: rgba(255, 255, 255, 0.58);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #ee4f9a, #e8649b 52%, #f18cbb);
  box-shadow: 0 18px 38px rgba(232, 100, 155, 0.28);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(232, 100, 155, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  justify-self: end;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--graphite);
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 145px) max(20px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 96px;
  isolation: isolate;
}

.section-shell::before,
.section-shell::after {
  z-index: 0;
}

.hero {
  min-height: 100vh;
  padding-top: 132px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 49% 42%, rgba(255, 222, 236, 0.78), transparent 29%),
    radial-gradient(circle at 8% 5%, rgba(232, 100, 155, 0.09), transparent 27%),
    linear-gradient(180deg, #fff, var(--milk));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
}

.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 860;
}

h1 em,
h2 em {
  color: var(--pink);
  font-style: normal;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 32px;
  color: #5f5a60;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-proof {
  position: relative;
  z-index: 4;
  width: min(930px, 100%);
  margin: 84px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-proof article,
.soft-card,
.direction-card,
.team-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.hero-proof article {
  min-height: 112px;
  padding: 24px;
}

.hero-proof strong,
.soft-card span,
.direction-card span {
  color: var(--pink);
  font-size: 26px;
  line-height: 1;
}

.hero-proof p {
  margin: 16px 0 0;
  color: #3d393f;
}

.fluffy {
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  color: #ffc6dc;
  text-shadow:
    0 2px 0 #f7accb,
    0 7px 0 #ed93bb,
    0 12px 18px rgba(232, 100, 155, 0.22),
    -8px -8px 24px rgba(255, 255, 255, 0.9),
    10px 10px 38px rgba(232, 100, 155, 0.28);
  filter: drop-shadow(0 20px 22px rgba(232, 100, 155, 0.18));
}

.hero-fluff {
  position: absolute;
  z-index: 2;
  transform: rotate(-8deg);
  animation: floaty 5.4s ease-in-out infinite;
  opacity: 0.92;
}

.hero-fluff-img {
  width: clamp(210px, 28vw, 430px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 38px rgba(232, 100, 155, 0.18));
  pointer-events: none;
  user-select: none;
}

.fluff-a {
  top: 22%;
  left: 2.5%;
}

.fluff-b {
  top: 26%;
  right: 3.5%;
  transform: rotate(7deg);
  animation-delay: -1.4s;
}

.fluff-c {
  left: 3%;
  bottom: 11%;
  transform: rotate(-9deg);
  animation-delay: -2.6s;
}

.orbital {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(232, 100, 155, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbital-left {
  left: -260px;
  bottom: 4%;
}

.orbital-right {
  right: -280px;
  bottom: 14%;
}

.dot {
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 16px var(--pink);
}

.dot-a { left: 16%; top: 55%; }
.dot-b { right: 17%; top: 62%; }
.dot-c { right: 7%; bottom: 7%; }

.soft-section {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.dark-section {
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 100, 155, 0.22), transparent 28%),
    linear-gradient(145deg, #262429, #3a3439);
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-bottom: 48px;
}

.section-head.wide {
  max-width: 1010px;
}

.section-head h2,
.about-copy h2,
.founder-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.about-copy p,
.founder-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.dark-section .section-head p,
.dark-section .section-kicker,
.dark-section .final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.section-kicker {
  position: relative;
  padding-left: 18px;
  color: var(--pink);
  text-transform: lowercase;
}

.section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 2px;
  background: var(--pink);
}

.problem-grid,
.direction-grid,
.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem {
  min-height: 780px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 100, 155, 0.08), transparent 32%),
    linear-gradient(180deg, #fffafa, #fff);
}

.problem::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: 22px;
  width: 640px;
  height: 260px;
  border-bottom: 1px solid rgba(232, 100, 155, 0.24);
  border-radius: 50%;
  transform: rotate(7deg);
}

.problem::after {
  content: "";
  position: absolute;
  left: 34%;
  bottom: 58px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(232, 100, 155, 0.72);
}

.problem-content {
  position: relative;
  z-index: 3;
  width: min(1280px, 90%);
}

.problem .section-head {
  max-width: 100%;
  margin-bottom: 52px;
}

.problem .section-head h2 {
  max-width: 100%;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.15;
}

.problem .section-head p:not(.section-kicker) {
  max-width: 780px;
  color: #6b666d;
}

.problem-visual {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: -10%;
  width: min(55vw, 820px);
  height: 88%;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 12%, #000 32%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 12%, #000 32%);
}

.problem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.9;
  filter: saturate(1.03) drop-shadow(0 26px 70px rgba(232, 100, 155, 0.08));
}

.problem .problem-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  max-width: 980px;
}

.soft-card {
  min-height: 190px;
  padding: 30px;
}

.problem-card {
  min-height: 220px;
  aspect-ratio: 1.35 / 1;
  padding: 28px 30px;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(55, 39, 47, 0.1);
  display: flex;
  flex-direction: column;
}

.soft-card h3 {
  margin: 26px 0 0;
  font-size: 24px;
  line-height: 1.16;
}

.problem-card h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  line-height: 1.16;
}

.problem-card p {
  margin: 0;
  color: #625d64;
  font-size: 15px;
}

.problem-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(232, 100, 155, 0.68);
  border-radius: 999px;
  background: rgba(255, 240, 246, 0.78);
}

.problem-icon::before,
.problem-icon::after {
  content: "";
  position: absolute;
}

.problem-icon-chaos::before {
  width: 30px;
  height: 30px;
  border: 3px solid var(--pink);
  border-radius: 45% 55% 42% 58%;
  opacity: 0.7;
  transform: rotate(18deg);
}

.problem-icon-chaos::after {
  width: 24px;
  height: 24px;
  border: 3px solid var(--pink);
  border-radius: 55% 45% 58% 42%;
  opacity: 0.55;
  transform: rotate(-35deg);
}

.problem-icon-budget::before {
  width: 30px;
  height: 18px;
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(-45deg);
}

.problem-icon-budget::after {
  right: 16px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  transform: rotate(45deg);
}

.problem-icon-growth::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow:
    14px 0 0 var(--pink),
    -14px 0 0 var(--pink),
    0 14px 0 var(--pink),
    0 -14px 0 var(--pink),
    10px 10px 0 rgba(232, 100, 155, 0.52),
    -10px 10px 0 rgba(232, 100, 155, 0.52),
    10px -10px 0 rgba(232, 100, 155, 0.52),
    -10px -10px 0 rgba(232, 100, 155, 0.52);
}

.problem-metrics {
  width: 100%;
  max-width: 980px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 92px repeat(3, 1fr);
  align-items: center;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(232, 100, 155, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(55, 39, 47, 0.1);
  backdrop-filter: blur(18px);
}

.problem-metrics div {
  min-height: 52px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid rgba(232, 100, 155, 0.2);
}

.problem-metrics div:first-child {
  border-left: 0;
}

.problem-metrics strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 240, 246, 0.92);
  font-size: 30px;
  line-height: 1;
}

.problem-metrics b {
  display: block;
  color: var(--pink);
  font-size: 30px;
  line-height: 1;
}

.problem-metrics span {
  display: block;
  margin-top: 6px;
  color: #706b72;
  font-size: 13px;
}

.flow-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(118px, 1fr));
  gap: 12px;
  align-items: center;
}

.flow-map::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.flow-node {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-weight: 750;
}

.flow-node.growth {
  color: white;
  background: var(--pink);
}

.solution {
  min-height: 900px;
  padding-top: clamp(96px, 9vw, 128px);
  background:
    radial-gradient(circle at 76% 22%, rgba(232, 100, 155, 0.13), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(255, 213, 230, 0.38), transparent 28%),
    linear-gradient(180deg, #fffafa, #fff);
}

.solution::before,
.solution::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(232, 100, 155, 0.18);
  border-radius: 50%;
}

.solution::before {
  right: -36px;
  top: 58px;
  width: 620px;
  height: 330px;
  transform: rotate(-18deg);
}

.solution::after {
  right: 7%;
  top: 24%;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--pink);
  box-shadow: -460px -86px 0 var(--pink), 120px 130px 0 rgba(232, 100, 155, 0.72);
}

.solution-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 410px;
}

.solution-copy {
  padding-top: 10px;
}

.solution-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.solution-copy p:not(.section-kicker) {
  max-width: 620px;
  color: #69636b;
  font-size: 20px;
}

.solution-copy em,
.solution-outcome em {
  color: var(--pink);
  font-style: normal;
}

.solution-visual {
  position: relative;
  min-height: 390px;
}

.solution-visual img {
  position: absolute;
  top: -34px;
  right: -10px;
  width: min(560px, 43vw);
  max-width: none;
  filter: drop-shadow(0 28px 64px rgba(232, 100, 155, 0.18));
}

.solution-steps {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.solution-steps::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 52%;
  height: 2px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.95) 0 2px, transparent 3px) 0 50% / 32px 2px,
    linear-gradient(90deg, transparent, rgba(232, 100, 155, 0.66), transparent);
  box-shadow: 0 0 18px rgba(232, 100, 155, 0.28);
}

.solution-steps article {
  position: relative;
  z-index: 2;
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 22px 12px 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(55, 39, 47, 0.08);
  backdrop-filter: blur(18px);
}

.solution-steps article.is-growth {
  color: white;
  background: linear-gradient(135deg, #ef559c, #e8649b);
  box-shadow: 0 26px 70px rgba(232, 100, 155, 0.32);
}

.solution-steps span {
  position: absolute;
  top: -20px;
  left: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(232, 100, 155, 0.18);
  font-size: 18px;
  font-weight: 900;
}

.solution-steps h3 {
  margin: 12px 0 7px;
  font-size: 15px;
  line-height: 1.1;
}

.solution-steps p {
  margin: 0;
  color: #69636b;
  font-size: 12px;
  line-height: 1.35;
}

.solution-steps .is-growth p,
.solution-steps .is-growth h3 {
  color: white;
}

.step-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  color: var(--pink);
}

.is-growth .step-icon {
  color: white;
}

.step-icon::before,
.step-icon::after {
  content: "";
  position: absolute;
}

.step-search::before {
  inset: 6px 11px 13px 7px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.step-search::after {
  width: 16px;
  height: 3px;
  right: 4px;
  bottom: 7px;
  background: currentColor;
  transform: rotate(45deg);
}

.step-target::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 0 0 0 7px rgba(232, 100, 155, 0.12);
}

.step-target::after {
  width: 9px;
  height: 9px;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  background: currentColor;
}

.step-pencil::before {
  width: 30px;
  height: 10px;
  left: 6px;
  top: 16px;
  border: 3px solid currentColor;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.step-pencil::after {
  width: 12px;
  height: 12px;
  left: 4px;
  bottom: 5px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.step-plane::before {
  width: 32px;
  height: 28px;
  left: 5px;
  top: 7px;
  clip-path: polygon(0 45%, 100% 0, 65% 100%, 48% 62%, 22% 82%);
  background: currentColor;
}

.step-funnel::before {
  left: 3px;
  top: 6px;
  width: 36px;
  height: 28px;
  border: 3px solid currentColor;
  clip-path: polygon(0 0, 100% 0, 60% 55%, 60% 100%, 40% 100%, 40% 55%);
}

.step-bars::before {
  left: 8px;
  bottom: 6px;
  width: 6px;
  height: 14px;
  background: currentColor;
  box-shadow: 11px -8px 0 currentColor, 22px -18px 0 currentColor;
}

.step-rise::before {
  left: 6px;
  bottom: 9px;
  width: 29px;
  height: 20px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: skew(-18deg) rotate(-18deg);
}

.step-rise::after {
  right: 5px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.step-puzzle::before {
  inset: 5px;
  border: 3px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 240, 246, 0.74);
}

.solution-outcome {
  position: relative;
  z-index: 3;
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 64px rgba(55, 39, 47, 0.09);
  backdrop-filter: blur(18px);
}

.solution-outcome > div:first-child {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.solution-outcome > div:first-child small {
  grid-column: 2;
  color: var(--muted);
  font-size: 16px;
}

.solution-outcome p {
  margin: 0;
  color: var(--graphite);
  font-size: 20px;
  font-weight: 800;
}

.solution-outcome dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
}

.solution-outcome dl div {
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(232, 100, 155, 0.18);
}

.solution-outcome dt {
  color: var(--pink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 780;
}

.solution-outcome dd {
  margin: 8px 0 0;
  color: #666068;
  font-size: 14px;
}

.system-summary {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 0.9fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(232, 100, 155, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.system-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.system-summary div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.system-summary span,
.industry-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(232, 100, 155, 0.26);
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 240, 246, 0.78);
  font-size: 13px;
  font-weight: 760;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-media {
  min-height: 520px;
  position: relative;
}

.about-media img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img:first-child {
  inset: 0 18% 18% 0;
  width: 82%;
  height: 82%;
}

.about-media img:last-child {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 44%;
  border: 9px solid var(--milk);
}

.trust-panel {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(232, 100, 155, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.trust-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.trust-title span {
  color: var(--graphite);
  font-size: 18px;
  font-weight: 850;
}

.trust-title p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.trust-row img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  padding: 13px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(36, 35, 38, 0.06);
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.direction-grid {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  box-shadow: 0 60px 100px -30px rgba(235, 100, 155, 0.06);
}

.direction-card {
  min-height: 250px;
  padding: 34px;
  cursor: pointer;
}

.direction-card span {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 58px;
  font-weight: 900;
  text-shadow: 0 5px 0 #f7bdd5, 0 16px 24px rgba(232, 100, 155, 0.22);
}

.direction-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.direction-card p {
  color: var(--muted);
}

.direction-card button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 750;
  cursor: pointer;
}

.direction-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
}

.directions-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  margin-bottom: clamp(42px, 5vw, 76px);
}

#system .directions-hero .section-head {
  max-width: 100%;
  margin-bottom: 0;
}

.directions-orbit-decor {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  pointer-events: none;
  opacity: 0.55;
}

.direction-bottom {
  text-align: center;
  margin-top: clamp(28px, 3vw, 42px);
}

.direction-line-decor {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 28px;
  height: auto;
  pointer-events: none;
}

.direction-bottom h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 780;
  color: var(--graphite);
}

.direction-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.direction-bottom em {
  color: var(--pink);
  font-style: normal;
}

.soft-card,
.direction-card,
.team-card,
.process-card {
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.soft-card:hover,
.direction-card:hover,
.team-card:hover,
.process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

/* Process: system cards. */
.process-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.process-orb-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(232, 100, 155, 0.55);
}

.process-orb-sphere {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee 0%, #c0c0c0 35%, #fafafa 55%, #b8b8b8 100%);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.15),
    inset 0 -3px 8px rgba(0, 0, 0, 0.1),
    inset 0 3px 6px rgba(255, 255, 255, 0.95);
}

.process-orb-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(232, 100, 155, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg) scaleY(0.55);
}

.process-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.process-header-text {
  max-width: 960px;
}

.process-header-decor {
  width: 130%;
  max-width: none;
  margin-left: -18%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transform: rotate(-4deg) translate(0, -4%);
}

.process-header h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 780px;
}

.process-subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(232, 100, 155, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(55, 39, 47, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  overflow: visible;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(55, 39, 47, 0.09);
}

.process-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.process-book {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease);
}

.process-card:hover .process-book {
  transform: scale(1.03);
}

.process-example {
  position: absolute;
  width: 140%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -42%) scale(0.92);
  opacity: 0;
  z-index: 10;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.process-card:hover .process-example {
  opacity: 1;
  transform: translate(-26%, -46%) scale(1);
}

.process-card-text {
  position: relative;
  z-index: 2;
}

.process-num {
  display: inline-block;
  color: var(--pink);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1.5px solid rgba(232, 100, 155, 0.35);
  border-radius: 999px;
  background: rgba(255, 240, 246, 0.6);
}

.process-card-text h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  line-height: 1.2;
}

.process-card-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Process CTA */
.process-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(32px, 4vw, 48px) clamp(36px, 5vw, 60px);
  border: 1px solid rgba(232, 100, 155, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(255, 213, 230, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 250, 0.85));
  box-shadow: 0 16px 48px rgba(55, 39, 47, 0.05);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(55, 39, 47, 0.08);
}

.process-cta-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.process-cta-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.process-cta-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.process-cta-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  min-height: 160px;
  z-index: 2;
}

.process-cta-btn {
  position: relative;
  z-index: 3;
  white-space: nowrap;
  padding: 18px 48px;
  font-size: 17px;
}

.process-cta-btn:hover {
  box-shadow: 0 18px 42px rgba(232, 100, 155, 0.28);
}

/* CTA Decorative */
.process-cta-decor {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 1;
}

.process-cta-orbit {
  position: absolute;
  border: 1px solid rgba(232, 100, 155, 0.2);
  border-radius: 50%;
}

.process-cta-orbit-1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg) scaleY(0.55);
}

.process-cta-orbit-2 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg) scaleY(0.5);
  border-color: rgba(232, 100, 155, 0.12);
}

.process-cta-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee 0%, #c0c0c0 35%, #fafafa 55%, #b8b8b8 100%);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.14),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
}

.process-cta-sphere-lg {
  width: 30px;
  height: 30px;
  right: 5%;
  top: 40%;
}

.process-cta-sphere-md {
  width: 20px;
  height: 20px;
  left: 12%;
  top: 25%;
}

.process-cta-sphere-sm {
  width: 14px;
  height: 14px;
  right: 18%;
  bottom: 20%;
}

.process-cta-sphere-xs {
  width: 10px;
  height: 10px;
  left: 30%;
  bottom: 30%;
}

.process-cta-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(232, 100, 155, 0.5);
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.founder-photo-col {
  position: relative;
}

.founder-photo {
  display: block;
  width: 130%;
  max-width: none;
  margin-left: -15%;
  margin-bottom: -200px;
  height: auto;
  object-fit: contain;
  object-position: top center;
  pointer-events: none;
  user-select: none;
}

/* --- Right column text --- */
.founder-role {
  color: var(--pink) !important;
  font-weight: 750;
  font-size: 18px;
}

.founder-desc {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.founder-copy h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* --- Achievement cards --- */
.founder-achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.founder-ach-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 16px 18px;
  border: 1px solid rgba(232, 100, 155, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(55, 39, 47, 0.05);
  aspect-ratio: 1;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.founder-ach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(55, 39, 47, 0.09);
}

.founder-ach-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  border-radius: 10px;
  background: rgba(255, 240, 246, 0.9);
  color: var(--pink);
}

.founder-ach-card strong {
  display: block;
  color: var(--pink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  font-weight: 820;
}

.founder-ach-text {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.founder-ach-line {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--pink);
  opacity: 0.5;
}

.team-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card h3 {
  margin: 16px 0 4px;
  padding: 0 16px;
  font-size: 16px;
  line-height: 1.2;
}

.team-card p {
  margin: 0 0 16px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.accordion {
  max-width: 900px;
}

details {
  border-bottom: 1px solid rgba(36, 35, 38, 0.12);
  padding: 24px 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 780;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--pink);
  font-size: 30px;
  transition: transform 0.22s var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.final-cta {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-inner {
  max-width: 900px;
}

.inline-fluffy {
  display: inline-block;
  color: var(--pink-light);
  font-size: 0.95em;
}

.big {
  margin-top: 22px;
  padding: 21px 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #262429;
}

.footer strong {
  display: block;
  color: white;
  font-size: 22px;
}

.footer p {
  margin: 6px 0 0;
  color: var(--pink-light);
}

.footer div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a:hover {
  color: var(--pink-light);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(36, 35, 38, 0.42);
  backdrop-filter: blur(18px);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 38px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}

.modal-card h3 {
  font-size: 34px;
  line-height: 1.05;
}

.modal-card p:not(.section-kicker) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 28px;
  cursor: pointer;
}

/* Contact Form Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(36, 35, 38, 0.5);
  backdrop-filter: blur(12px);
}

.contact-modal.is-open {
  display: grid;
  animation: contactModalFadeIn 0.3s var(--ease) forwards;
}

@keyframes contactModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-modal-close:hover {
  background: var(--pink-light);
}

#contact-modal-title {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 6px;
}

.contact-modal-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.contact-form-group {
  margin-bottom: 18px;
}

.contact-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--graphite);
}

.contact-form-group .required {
  color: var(--pink);
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(36, 35, 38, 0.12);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--graphite);
  background: var(--milk);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 100, 155, 0.12);
}

.contact-form-group input.error,
.contact-form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-error {
  display: none;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 4px;
}

.contact-error.visible {
  display: block;
}

.contact-form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  background: var(--pink);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form-submit:hover {
  background: #d45a8a;
  transform: translateY(-1px);
}

.contact-form-policy {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

.contact-form-policy a {
  color: var(--pink);
  text-decoration: underline;
}

.contact-form-policy a:hover {
  color: #d45a8a;
}

.contact-form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.contact-form-success h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.contact-form-success p {
  color: var(--muted);
  margin: 0 0 20px;
}

@media (max-width: 600px) {
  .contact-modal-card {
    padding: 28px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* Dramatic background system: light and graphite story chapters. */
.section-shell > * {
  position: relative;
  z-index: 2;
}

.section-shell::before,
.section-shell::after {
  z-index: 0;
}

/* Hero stays light and approved. */
.hero {
  background:
    radial-gradient(circle at 49% 42%, rgba(255, 222, 236, 0.64), transparent 27%),
    radial-gradient(circle at 8% 5%, rgba(232, 100, 155, 0.07), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--milk) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 58%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow:
    -50vw -2vh 0 rgba(232, 100, 155, 0.44),
    8vw 28vh 0 rgba(232, 100, 155, 0.26);
  opacity: 0.5;
  pointer-events: none;
}

/* Problem: full graphite chapter. */
.problem {
  color: #fff;
  background:
    linear-gradient(145deg, #232127 0%, #26242b 54%, #25222a 100%);
}

.problem .section-head h2,
.problem .section-head p:not(.section-kicker) {
  color: #fff;
}

.problem .section-head p:not(.section-kicker),
.problem .problem-metrics span {
  color: rgba(255, 255, 255, 0.72);
}

.problem::before {
  content: "";
  position: absolute;
  left: -18%;
  top: -18%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 213, 230, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.problem::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 64vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.035), rgba(39, 37, 45, 0.05) 48%, transparent 72%);
  pointer-events: none;
}

.problem .problem-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -12%;
  right: 20%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 230, 0.24), transparent);
}

/* Solution: clean return to light. */
.solution {
  background:
    radial-gradient(ellipse 66% 46% at 72% 20%, rgba(232, 100, 155, 0.12), transparent 58%),
    radial-gradient(ellipse 72% 48% at 8% 92%, rgba(245, 244, 246, 0.92), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fff8fb 48%, #ffffff 100%);
}

.solution::before {
  opacity: 0.56;
}

.solution::after {
  opacity: 0.38;
}

/* System/directions remains light between solution and trust. */
.directions,
#system {
  background:
    radial-gradient(ellipse 72% 44% at 88% 14%, rgba(232, 100, 155, 0.1), transparent 58%),
    radial-gradient(ellipse 68% 52% at 12% 100%, rgba(245, 244, 246, 0.96), transparent 58%),
    linear-gradient(180deg, #f7f6f7 0%, #ffffff 48%, #f4f3f4 100%);
}

.directions::before,
#system::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -8%;
  width: 62vw;
  height: 38vw;
  border: 1px solid rgba(232, 100, 155, 0.14);
  border-radius: 50%;
  opacity: 0.72;
  transform: rotate(-9deg);
  pointer-events: none;
}

.directions::after,
#system::after {
  content: "";
  position: absolute;
  left: -22%;
  bottom: -32%;
  width: 58vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(36, 34, 39, 0.06), rgba(232, 100, 155, 0.025) 46%, transparent 70%);
  transform: rotate(12deg);
  pointer-events: none;
}

.direction-grid::before,
#system .direction-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(232, 100, 155, 0.22), transparent);
  transform: none;
  pointer-events: none;
}

.direction-card {
  position: relative;
  overflow: hidden;
}

.direction-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(232, 100, 155, 0.48);
  box-shadow: 0 0 14px rgba(232, 100, 155, 0.32);
}

/* About: first mixed white/graphite composition. */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 18% 36%, rgba(232, 100, 155, 0.1), transparent 58%),
    linear-gradient(124deg, #ffffff 0 48%, #25222a 48% 78%, #27252d 78% 100%);
}

.about::before {
  content: "";
  position: absolute;
  left: -18%;
  top: 4%;
  width: 58vw;
  height: 34vw;
  border: 1px solid rgba(232, 100, 155, 0.15);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 54vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04), rgba(39, 37, 45, 0.06) 48%, transparent 72%);
  pointer-events: none;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 10% 4% 4% 10%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.13), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

/* Cases: full graphite trust chapter. */
.cases {
  background:
    linear-gradient(145deg, #232127 0%, #26242b 54%, #25222a 100%);
}

.cases::before {
  content: "";
  position: absolute;
  right: -20%;
  top: -2%;
  width: 64vw;
  height: 32vw;
  border: 1px solid rgba(255, 213, 230, 0.16);
  border-radius: 50%;
  transform: rotate(12deg);
  pointer-events: none;
}

.cases::after {
  content: "";
  position: absolute;
  left: -18%;
  bottom: -30%;
  width: 70vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232, 100, 155, 0.16), rgba(232, 100, 155, 0.04) 48%, transparent 72%);
  pointer-events: none;
}

/* Process: light chapter. */
.process {
  background:
    radial-gradient(ellipse 58% 44% at 80% 8%, rgba(232, 100, 155, 0.06), transparent 58%),
    radial-gradient(ellipse 52% 38% at 8% 88%, rgba(255, 213, 230, 0.18), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f7 100%);
}

.process::before {
  content: "";
  position: absolute;
  right: -14%;
  top: 6%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(232, 100, 155, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.process::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -14%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 34, 42, 0.04), rgba(232, 100, 155, 0.02) 48%, transparent 72%);
  pointer-events: none;
}

/* Founder: light chapter with orbital accents. */
.founder {
  overflow: visible;
  background:
    radial-gradient(ellipse 58% 52% at 22% 44%, rgba(232, 100, 155, 0.09), transparent 62%),
    radial-gradient(ellipse 48% 40% at 82% 72%, rgba(255, 213, 230, 0.24), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f7 100%);
}

.founder::before {
  content: "";
  position: absolute;
  left: -16%;
  top: 4%;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(232, 100, 155, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.founder::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -22%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 34, 42, 0.06), rgba(232, 100, 155, 0.03) 48%, transparent 72%);
  pointer-events: none;
}

/* Team: light chapter with decor. */
.team {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(ellipse 50% 40% at 80% 15%, rgba(232, 100, 155, 0.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7f6f7 100%);
}

.team-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.team-orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 10%;
  border: 1px solid rgba(232, 100, 155, 0.15);
  border-radius: 50%;
  transform: rotate(-15deg) scaleY(0.55);
}

.team-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee 0%, #c0c0c0 35%, #fafafa 55%, #b8b8b8 100%);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
}

.team-sphere-lg {
  width: 24px;
  height: 24px;
  right: 12%;
  top: 22%;
}

.team-sphere-sm {
  width: 14px;
  height: 14px;
  right: 28%;
  top: 8%;
}

.team-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(232, 100, 155, 0.45);
}

.team .section-head h2,
.team .section-head p:not(.section-kicker),
.team-card h3 {
  color: var(--graphite);
}

.team .section-head p:not(.section-kicker),
.team-card p {
  color: var(--muted);
}

/* Team header with decorative image */
.team-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: end;
  margin-bottom: clamp(4px, 1vw, 10px);
}

.team-header-text {
  max-width: 720px;
}

.team-header h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.team-subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Girl visual with orbits */
.team-header-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 300px;
  margin-bottom: -30px;
}

.team-header-orbit {
  position: absolute;
  inset: -35px;
  pointer-events: none;
  z-index: 1;
}

.team-header-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.2px solid rgba(232, 100, 155, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.5);
}

.team-header-orbit-ring-2 {
  inset: 25px;
  border-color: rgba(232, 100, 155, 0.12);
  transform: rotate(30deg) scaleY(0.45);
}

.team-header-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee 0%, #c0c0c0 35%, #fafafa 55%, #b8b8b8 100%);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.15),
    inset 0 -3px 8px rgba(0, 0, 0, 0.1),
    inset 0 3px 6px rgba(255, 255, 255, 0.95);
  z-index: 3;
}

.team-header-sphere-lg {
  width: 26px;
  height: 26px;
  top: 4%;
  right: 10%;
}

.team-header-sphere-md {
  width: 16px;
  height: 16px;
  bottom: 16%;
  left: 6%;
}

.team-header-sphere-sm {
  width: 11px;
  height: 11px;
  top: 40%;
  right: 2%;
}

.team-header-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(232, 100, 155, 0.5);
  z-index: 3;
}

.team-header-decor {
  position: relative;
  z-index: 2;
  width: clamp(300px, 35vw, 460px);
  max-width: none;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transform: translate(2%, 4%);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.08));
}

/* Fade bottom of girl image into team cards */
.team-grid {
  position: relative;
  z-index: 3;
}

.team::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 20px);
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--soft));
  pointer-events: none;
  z-index: 2;
}

.team::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 230, 0.18), transparent);
  pointer-events: none;
}

.team::after {
  content: "";
  position: absolute;
  right: -18%;
  top: -10%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.035), rgba(39, 37, 45, 0.05) 48%, transparent 72%);
  pointer-events: none;
}

/* FAQ: clean light chapter. */
.faq {
  background:
    radial-gradient(ellipse 56% 36% at 82% 18%, rgba(232, 100, 155, 0.045), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f6f5f6 100%);
}

.faq::before {
  content: "";
  position: absolute;
  right: -18%;
  top: 10%;
  width: 58vw;
  height: 30vw;
  border: 1px solid rgba(232, 100, 155, 0.1);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.faq::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 28%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: -9vw 38vh 0 rgba(232, 100, 155, 0.22);
  opacity: 0.58;
  pointer-events: none;
}

/* CTA: final graphite chapter. */
.final-cta {
  background:
    linear-gradient(145deg, #232127 0%, #27252d 56%, #25222a 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(820px, 76vw);
  height: min(820px, 76vw);
  border: 1px solid rgba(255, 213, 230, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 24%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow:
    -18vw 26vh 0 rgba(255, 213, 230, 0.18),
    14vw 28vh 0 rgba(232, 100, 155, 0.22);
  pointer-events: none;
}

.final-cta .button-primary {
  box-shadow:
    0 18px 38px rgba(232, 100, 155, 0.3),
    0 0 58px rgba(232, 100, 155, 0.18);
}

#system .direction-card:nth-child(2)::before,
#system .direction-card:nth-child(5)::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8649b;
  box-shadow: 0 0 18px rgba(232, 100, 155, 0.34);
  opacity: 0.58;
  pointer-events: none;
}

#system .direction-card:nth-child(2)::before {
  right: -6px;
  top: 38%;
}

#system .direction-card:nth-child(5)::before {
  left: -6px;
  bottom: 34%;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero-fluff {
    opacity: 0.45;
  }

  .problem {
    min-height: auto;
  }

  .problem-content {
    width: 76%;
  }

  .problem-visual {
    top: 14%;
    right: -24%;
    width: 60vw;
    height: 68%;
    opacity: 0.7;
  }

  .solution-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-visual {
    min-height: 440px;
    order: -1;
  }

  .solution-visual img {
    inset: -60px auto auto 50%;
    width: min(820px, 92vw);
    transform: translateX(-50%);
  }

  .solution-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
  }

  .solution-steps::before {
    display: none;
  }

  .solution-outcome {
    grid-template-columns: 1fr;
  }

  .flow-map,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-map::before {
    display: none;
  }

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

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .nav-panel {
    grid-template-columns: auto auto;
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(36, 35, 38, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

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

  .menu-open .menu-toggle span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .problem {
    display: block;
    padding-top: 92px;
  }

  .problem-content {
    width: 100%;
  }

  .problem-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 560px);
    height: 280px;
    margin: -18px auto 28px;
    opacity: 1;
    border-radius: var(--radius);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .problem-visual img {
    object-position: center;
  }

  .problem .section-head h2 {
    font-size: clamp(36px, 8vw, 48px);
  }

  .solution {
    min-height: auto;
  }

  .solution-copy h2 {
    font-size: clamp(36px, 8vw, 50px);
  }

  .solution-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  .solution-visual {
    min-height: 320px;
  }

  .solution-visual img {
    width: min(680px, 112vw);
  }

  .solution-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .solution-outcome dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .hero-proof,
  .problem-grid,
  .direction-grid,
  .about,
  .founder-layout,
  .system-summary,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .system-summary div {
    justify-content: flex-start;
  }

  .hero-fluff {
    width: min(42vw, 180px);
  }

  .fluff-a { top: 17%; left: 3%; }
  .fluff-b { top: 17%; right: 2%; }
  .fluff-c { display: none; }

  .directions-orbit-decor {
    display: none;
  }

  .directions-hero {
    grid-template-columns: 1fr;
  }

  .orbital,
  .dot {
    opacity: 0.45;
  }

  .about-media {
    min-height: 420px;
  }

  .flow-map,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .team-header-text {
    max-width: 100%;
  }

  .team-header-visual {
    min-height: 240px;
    margin-bottom: -10px;
  }

  .team-header-decor {
    width: clamp(200px, 50vw, 300px);
    justify-self: center;
  }

  .team::after {
    display: none;
  }

  .trust-title {
    display: block;
  }

  .trust-title p {
    margin-top: 6px;
    text-align: left;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .process-card-visual {
    min-height: 0;
    height: auto;
    padding: 4px 0;
  }

  .process-example {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 130%;
    max-width: 200px;
    margin-top: 0;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .process-card.is-example-open .process-example {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .process-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-header-text {
    max-width: 100%;
  }

  .process-header-decor {
    width: clamp(280px, 50vw, 400px);
    max-width: none;
    justify-self: center;
    transform: rotate(-2deg) translate(0, -4%);
  }

  .process-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 28px 24px;
  }

  .process-cta-content {
    max-width: 100%;
  }

  .process-cta-right {
    min-width: auto;
    min-height: auto;
  }

  .process-cta-btn {
    padding: 16px 36px;
    font-size: 15px;
  }

  .process-cta-decor {
    display: none;
  }

  .founder-photo {
    width: 100%;
    margin-left: 0;
    margin-bottom: -120px;
  }

  .founder-achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .founder-copy h2 {
    font-size: clamp(36px, 8vw, 52px);
  }
}

@media (max-width: 540px) {
 .section-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-proof article,
  .soft-card,
  .direction-card,
  .modal-card {
    padding: 22px;
  }

  .problem-card {
    min-height: auto;
  }

  .problem-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
  }

  .problem-metrics div {
    min-height: auto;
    padding: 0 0 14px;
    border-left: 0;
    border-bottom: 1px solid rgba(232, 100, 155, 0.16);
  }

  .problem-metrics div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .solution-visual {
    min-height: 250px;
  }

  .solution-steps {
    grid-template-columns: 1fr;
  }

  .solution-steps article {
    min-height: 150px;
  }

  .solution-outcome {
    padding: 22px;
  }

  .solution-outcome > div:first-child {
    grid-template-columns: 1fr;
  }

  .solution-outcome > div:first-child small {
    grid-column: auto;
  }

  .solution-outcome dl {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-outcome dl div {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(232, 100, 155, 0.18);
  }

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

  .team-header-decor {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .process-header-decor {
    display: none;
  }
}

/* Section surface masks: smooth full-width section edges from the reference. */
:root {
  --mask-wave-down: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2092%20C210%2030%20376%2038%20560%2078%20C760%20122%20950%20128%201140%2082%20C1268%2051%201362%2048%201440%2070%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
  --mask-wave-up: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2058%20C190%2088%20360%20132%20560%2094%20C742%2060%20906%2018%201100%2052%20C1248%2078%201344%20112%201440%2094%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
  --mask-wave-soft: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2076%20C180%2044%20360%2056%20548%2086%20C740%20116%20916%20104%201106%2062%20C1258%2028%201358%2044%201440%2074%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
  --mask-wave-low: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2050%20C218%2076%20392%2096%20580%2078%20C782%2058%20940%2028%201126%2044%20C1268%2056%201370%2072%201440%2062%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
  --mask-wave-high: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%20104%20C166%2070%20330%2028%20526%2052%20C728%2076%20888%20132%201092%20110%20C1254%2092%201354%2054%201440%2048%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
  --mask-near-straight: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%201440%201000%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2058%20C220%2050%20430%2046%20650%2054%20C850%2062%201050%2070%201240%2062%20C1328%2058%201390%2054%201440%2056%20V1000%20H0%20Z%22/%3E%3C/svg%3E");
}

.problem,
.solution,
.about,
.directions,
.cases,
.process,
.founder,
.team,
.faq,
.final-cta {
  --surface-overlap: clamp(58px, 7vw, 108px);
  margin-top: calc(var(--surface-overlap) * -1);
  padding-top: calc(clamp(82px, 10vw, 145px) + var(--surface-overlap));
  -webkit-mask-image: var(--section-mask);
  mask-image: var(--section-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.problem { --section-mask: var(--mask-wave-down); }
.solution { --section-mask: var(--mask-wave-up); }
.about { --section-mask: var(--mask-wave-soft); }
.directions { --section-mask: var(--mask-wave-low); }
.cases { --section-mask: var(--mask-wave-high); }
.process { --section-mask: var(--mask-wave-up); }
.founder { --section-mask: var(--mask-wave-soft); }
.team { --section-mask: var(--mask-wave-down); }
.faq { --section-mask: var(--mask-wave-soft); }
.final-cta { --section-mask: var(--mask-near-straight); }

@supports not ((mask-image: url("")) or (-webkit-mask-image: url(""))) {
  .problem,
  .solution,
  .about,
  .directions,
  .cases,
  .process,
  .founder,
  .team,
  .faq,
  .final-cta {
    border-top-left-radius: 50% clamp(44px, 6vw, 96px);
    border-top-right-radius: 50% clamp(44px, 6vw, 96px);
  }
}

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

/* Hero rebuilt from reference: scoped replacement for the first screen only. */
.hero.section-shell {
  box-sizing: border-box;
  min-height: 100vh;
  height: auto;
  padding-top: 132px;
  padding-bottom: 52px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  row-gap: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 225, 238, 0.68), transparent 27%),
    radial-gradient(circle at 7% 6%, rgba(232, 100, 155, 0.065), transparent 24%),
    radial-gradient(circle at 92% 92%, rgba(232, 100, 155, 0.035), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fffdfd 56%, #fff7fa 100%);
}

.hero .orbital,
.hero .dot,
.hero .hero-fluff {
  position: absolute;
  pointer-events: none;
}

.hero .hero-content {
  width: min(760px, 100%);
  margin: 72px auto 0;
  text-align: center;
  z-index: 5;
}

.hero .eyebrow {
  margin: 0 0 34px;
  color: #68626a;
  font-size: 16px;
  font-weight: 560;
}

.hero .eyebrow span {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(232, 100, 155, 0.72);
}

.hero h1 {
  max-width: 740px;
  margin: 0 auto 34px;
  font-size: clamp(58px, 5.55vw, 76px);
  line-height: 0.98;
  font-weight: 860;
  letter-spacing: 0;
  color: #242328;
}

.hero h1 em {
  display: inline;
  color: var(--pink);
}

.hero .hero-subtitle {
  max-width: 675px;
  margin: 0 auto 46px;
  color: #625d64;
  font-size: 20px;
  line-height: 1.55;
}

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

.hero .button {
  min-width: 268px;
  min-height: 66px;
  padding: 20px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 760;
}

.hero .button-primary {
  box-shadow: 0 24px 52px rgba(232, 100, 155, 0.24);
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.78);
}

.hero .hero-proof {
  width: min(1130px, 100%);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  z-index: 5;
}

.hero .hero-proof article {
  min-height: 150px;
  padding: 34px 34px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(52, 44, 48, 0.08);
  backdrop-filter: blur(18px);
}

.hero .hero-proof strong {
  display: block;
  color: var(--pink);
  font-size: 34px;
  line-height: 1;
  font-weight: 820;
}

.hero .hero-proof p {
  max-width: 270px;
  margin: 24px 0 0;
  color: #363238;
  font-size: 17px;
  line-height: 1.45;
}

.hero .hero-fluff.hero-fluff-img {
  z-index: 2;
  width: clamp(245px, 24vw, 405px);
  max-width: none;
  height: auto;
  opacity: 0.92;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 38px rgba(232, 100, 155, 0.16));
  user-select: none;
}

.hero .hero-fluff.hero-fluff-img.fluff-a {
  top: 18.8%;
  left: 4.6%;
  right: auto;
  bottom: auto;
  display: block;
  transform: rotate(-8deg);
}

.hero .hero-fluff.hero-fluff-img.fluff-b {
  top: 24.2%;
  right: 5.2%;
  left: auto;
  bottom: auto;
  display: block;
  transform: rotate(7deg);
}

.hero .hero-fluff.hero-fluff-img.fluff-c {
  left: 3.4%;
  bottom: 18.8%;
  top: auto;
  right: auto;
  display: block;
  transform: rotate(-9deg);
}

.hero .orbital {
  width: 560px;
  height: 560px;
  border: 1px solid rgba(232, 100, 155, 0.22);
  opacity: 0.8;
}

.hero .orbital-left {
  left: -308px;
  bottom: 11.5%;
}

.hero .orbital-right {
  right: -318px;
  bottom: 16%;
}

.hero .dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(232, 100, 155, 0.76);
  opacity: 0.75;
}

.hero .dot-a {
  left: 15.6%;
  top: 55.2%;
}

.hero .dot-b {
  right: 16.4%;
  top: 61.7%;
}

.hero .dot-c {
  right: 7.6%;
  bottom: 7%;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .hero.section-shell {
    min-height: 100vh;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero .hero-content {
    margin-top: 54px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.6vw, 68px);
  }

  .hero .hero-fluff.hero-fluff-img {
    width: clamp(185px, 25vw, 285px);
    opacity: 0.48;
  }

  .hero .hero-proof {
    width: min(940px, 100%);
    margin-top: 54px;
  }
}

@media (max-width: 820px) {
  .hero.section-shell {
    min-height: auto;
    padding-top: 102px;
    padding-bottom: 44px;
    align-content: start;
  }

  .hero .hero-content {
    margin-top: 18px;
  }

  .hero .eyebrow {
    margin-bottom: 24px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(38px, 10.2vw, 52px);
  }

  .hero .hero-subtitle {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .hero .hero-actions {
    gap: 14px;
  }

  .hero .button {
    min-width: 0;
    min-height: 58px;
  }

  .hero .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 36px;
    gap: 14px;
  }

  .hero .hero-proof article {
    min-height: auto;
    padding: 24px;
  }

  .hero .hero-fluff.hero-fluff-img {
    width: clamp(116px, 30vw, 158px);
    opacity: 0.2;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-a {
    top: 106px;
    left: 3%;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-b {
    top: 114px;
    right: 3%;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-c {
    display: none;
  }

  .hero .orbital,
  .hero .dot {
    opacity: 0.24;
  }
}

/* Problem layout refinement: two-column composition. */
@media (min-width: 821px) {
  .problem.section-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.59fr) minmax(350px, 0.41fr);
    column-gap: clamp(54px, 6.5vw, 112px);
    align-items: start;
  }

  .problem-content {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    padding-top: clamp(70px, 7vw, 104px);
  }

  .problem .section-head,
  .problem .section-head h2,
  .problem .section-head p:not(.section-kicker) {
    max-width: 100%;
  }

  .problem-visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    top: auto;
    right: auto;
    z-index: 2;
    width: min(43vw, 660px);
    height: clamp(520px, 46vw, 700px);
    margin: clamp(78px, 7vw, 112px) 0 0 auto;
    overflow: visible;
    opacity: 0.98;
    transform: translateX(-8%);
    -webkit-mask-image: none;
    mask-image: none;
    background:
      radial-gradient(circle at 34% 34%, rgba(255, 213, 230, 0.2), transparent 23%),
      radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.1), transparent 18%);
  }

  .problem-visual::before,
  .problem-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .problem-visual::before {
    z-index: 0;
    inset: 7% -2% 8% -12%;
    border: 1px solid rgba(255, 213, 230, 0.17);
    border-radius: 50%;
    transform: rotate(-13deg);
    background:
      radial-gradient(circle at 22% 18%, rgba(232, 100, 155, 0.24) 0 4px, transparent 5px),
      radial-gradient(circle at 83% 72%, rgba(232, 100, 155, 0.2) 0 5px, transparent 6px),
      linear-gradient(132deg, transparent 0 44%, rgba(255, 213, 230, 0.18) 44.2%, transparent 45% 100%);
    filter: drop-shadow(0 0 44px rgba(232, 100, 155, 0.18));
  }

  .problem-visual::after {
    z-index: 1;
    right: -1%;
    bottom: 12%;
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.12), transparent 31%),
      radial-gradient(circle at 72% 64%, rgba(232, 100, 155, 0.15), transparent 34%),
      radial-gradient(circle at 44% 78%, rgba(255, 213, 230, 0.11), transparent 24%);
    opacity: 0.82;
  }

  .problem-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    filter: saturate(1.04) drop-shadow(0 32px 88px rgba(232, 100, 155, 0.16));
  }

  .problem .problem-grid {
    max-width: 100%;
    gap: 8px;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(12, 10, 13, 0.12);
    backdrop-filter: blur(18px);
  }

  .problem-card {
    height: 100%;
    min-height: 224px;
    padding: 24px 22px;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 38px rgba(12, 10, 13, 0.08);
  }

  .problem-metrics {
    width: min(560px, 88%);
    min-height: 78px;
    margin-top: 24px;
    grid-template-columns: 66px repeat(3, 1fr);
    padding: 12px 16px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 50px rgba(12, 10, 13, 0.12);
    backdrop-filter: blur(22px);
  }

  .problem-metrics div {
    min-height: 44px;
    border-left-color: rgba(255, 255, 255, 0.18);
  }

  .problem-metrics strong {
    width: 42px;
    height: 42px;
    font-size: 24px;
    background: rgba(255, 240, 246, 0.72);
  }

  .problem-metrics b {
    font-size: 24px;
  }

  .problem-metrics span {
    margin-top: 4px;
    font-size: 12px;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .problem.section-shell {
    grid-template-columns: minmax(0, 0.57fr) minmax(310px, 0.43fr);
    column-gap: clamp(34px, 4.4vw, 64px);
  }

  .problem-content {
    padding-top: clamp(46px, 6vw, 74px);
  }

  .problem-visual {
    width: min(45vw, 590px);
    height: clamp(430px, 49vw, 590px);
    margin-top: clamp(60px, 7vw, 86px);
    transform: translateX(-5%);
  }

  .problem .problem-grid {
    gap: 7px;
    padding: 7px;
  }

  .problem-card {
    min-height: 214px;
    padding: 22px 18px;
  }

  .problem-metrics {
    width: min(520px, 92%);
  }
}
/* End problem layout refinement. */




/* Dark-section object lighting: objects emit light, backgrounds stay graphite. */
.team-card {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.team-card:hover {
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(232, 100, 155, 0.12);
}

/* Dark section lighting correction: object glow only. */
.problem,
.cases,
.team,
.final-cta {
  background:
    linear-gradient(145deg, #232127 0%, #26242b 46%, #27252d 68%, #25222a 100%);
}

.problem::after,
.cases::after,
.team::after {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.028), rgba(39, 37, 45, 0.045) 48%, transparent 72%);
  opacity: 0.72;
}

.cases::before,
.team::before,
.final-cta::before,
.problem::before {
  border-color: rgba(255, 255, 255, 0.1);
}

.team-card {
  box-shadow: 0 12px 36px rgba(55, 39, 47, 0.06);
}

.final-cta::after {
  opacity: 0.5;
  box-shadow: none;
}

.final-cta .button-primary {
  box-shadow:
    0 18px 38px rgba(232, 100, 155, 0.3),
    0 0 46px rgba(232, 100, 155, 0.16);
}

@media (min-width: 821px) {
  .problem-visual {
    background:
      radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.08), transparent 24%),
      radial-gradient(circle at 72% 70%, rgba(232, 100, 155, 0.1), transparent 16%);
  }

  .problem-visual::before {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at 22% 18%, rgba(232, 100, 155, 0.2) 0 4px, transparent 5px),
      radial-gradient(circle at 83% 72%, rgba(232, 100, 155, 0.18) 0 5px, transparent 6px),
      linear-gradient(132deg, transparent 0 44%, rgba(255, 255, 255, 0.1) 44.2%, transparent 45% 100%);
    filter: drop-shadow(0 0 32px rgba(232, 100, 155, 0.12));
  }

  .problem-visual::after {
    background:
      radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.1), transparent 31%),
      radial-gradient(circle at 72% 64%, rgba(232, 100, 155, 0.09), transparent 30%);
  }

  .problem-visual img {
    filter: saturate(1.04) drop-shadow(0 30px 76px rgba(232, 100, 155, 0.13));
  }
}
/* End dark section lighting correction. */

/* Premium editorial polish: personal site visual system. */
:root {
  --pink: #EB649B;
  --milk: #F6F6F6;
  --soft: #F1F2F4;
  --graphite: #3C3D41;
  --muted: rgba(60, 61, 65, 0.68);
  --line: rgba(60, 61, 65, 0.08);
  --shadow: 0 22px 60px rgba(60, 61, 65, 0.08);
  --shadow-soft: 0 18px 50px rgba(60, 61, 65, 0.05);
  --radius: 24px;
}

body {
  color: #3C3D41;
  background: #F6F6F6;
}

.section-shell:not(.hero) {
  padding-top: clamp(104px, 11vw, 168px);
  padding-bottom: clamp(104px, 11vw, 168px);
}

.directions.section-shell {
  padding-bottom: clamp(68px, 7vw, 110px);
}

.section-shell:not(.hero) .section-head {
  margin-bottom: clamp(42px, 5vw, 76px);
}

.section-shell:not(.hero) h2 {
  color: #3C3D41;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-shell:not(.hero) p,
.section-shell:not(.hero) li {
  color: rgba(60, 61, 65, 0.68);
}

.section-kicker {
  color: #EB649B;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.section-kicker::before {
  width: 10px;
  height: 1px;
  background: #EB649B;
}

/* Surface rhythm */
.problem,
.about,
.cases,
.final-cta {
  color: #fff;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0) 32%),
    #3C3D41;
}

.solution,
.process,
.faq,
.team {
  background:
    radial-gradient(ellipse 58% 34% at 82% 8%, rgba(235, 100, 155, 0.045), transparent 58%),
    #FFFFFF;
}

.directions,
#system,
.founder {
  background:
    radial-gradient(ellipse 54% 30% at 18% 8%, rgba(235, 100, 155, 0.035), transparent 62%),
    #F1F2F4;
}

.problem h2,
.problem .section-head p:not(.section-kicker),
.about h2,
.about p,
.about li,
.cases h2,
.cases .section-head p,
.final-cta h2,
.final-cta p {
  color: #fff;
}

.problem .section-head p:not(.section-kicker),
.about p,
.cases .section-head p,
.final-cta p {
  color: rgba(255,255,255,0.72);
}

/* Remove atmospheric pink haze from graphite surfaces. */
.problem::after,
.about::after,
.cases::after,
.final-cta::after,
.team::after {
  background: transparent;
  box-shadow: none;
}

.problem::before,
.about::before,
.cases::before,
.final-cta::before,
.team::before,
.solution::before,
.solution::after,
.directions::before,
.directions::after,
#system::before,
#system::after,
.process::before,
.process::after,
.founder::before,
.founder::after,
.faq::before {
  border-color: rgba(60, 61, 65, 0.08);
  background: transparent;
  opacity: 0.72;
}

.problem::before,
.about::before,
.cases::before,
.final-cta::before {
  border-color: rgba(255,255,255,0.12);
}

/* Cards: lighter editorial surfaces */
.soft-card,
.direction-card,
.team-card,
.process-card,
.faq-item,
.solution-steps article,
.solution-outcome,
.trust-row,
.problem-metrics {
  border: 1px solid rgba(60, 61, 65, 0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 50px rgba(60,61,65,0.05);
  backdrop-filter: blur(18px);
}

.soft-card:hover,
.direction-card:hover,
.team-card:hover,
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(60,61,65,0.08);
}

.problem-card {
  min-height: 214px;
  border-color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.problem-card h3,
.problem-card p {
  color: #3C3D41;
}

.problem .problem-grid {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}

/* Editorial numbers */
.direction-card > span,
.solution-steps article > span,
.process-num,
.hero-proof strong {
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 38px;
  min-height: 24px;
  margin: 0 0 24px;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60,61,65,0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(60,61,65,0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: none;
  box-shadow: none;
}

.problem .problem-card::before {
  color: rgba(60,61,65,0.45);
}

/* Buttons outside approved Hero */
.section-shell:not(.hero) .button-primary,
.modal-card .button-primary {
  background: #3C3D41;
  color: #fff;
  border-color: #3C3D41;
  box-shadow: none;
}

.section-shell:not(.hero) .button-primary:hover,
.modal-card .button-primary:hover {
  background: #EB649B;
  border-color: #EB649B;
  box-shadow: none;
}

.section-shell:not(.hero) .button-ghost {
  background: transparent;
  border: 1px solid rgba(60,61,65,0.12);
  box-shadow: none;
}

/* Cases: compact editorial grid */
.cases .section-head {
  max-width: 760px;
}

.cases .section-head h2 {
  color: #fff !important;
}

/* Team returns to white and lighter portrait cards */
.team {
  color: #3C3D41;
  background: #FFFFFF;
}

.team .section-head h2,
.team .section-head p:not(.section-kicker),
.team-card h3,
.team-card p {
  color: #3C3D41;
}

.team .section-head p:not(.section-kicker),
.team-card p {
  color: rgba(60,61,65,0.68);
}

.team-card {
  background: rgba(255,255,255,0.72);
  border-color: rgba(60,61,65,0.08);
  box-shadow: 0 18px 50px rgba(60,61,65,0.05);
}

/* Founder and production breathe more like editorial blocks */
.founder-layout,
.about-grid,
.solution-hero {
  gap: clamp(48px, 7vw, 110px);
}

.about-media img,
.team-card img {
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(60,61,65,0.06);
}

.problem-visual img,
.solution-visual img {
  filter: drop-shadow(0 28px 64px rgba(60,61,65,0.12));
}

.problem-visual,
.problem-visual::before,
.problem-visual::after {
  background: transparent;
  filter: none;
}

.problem-visual img {
  filter: drop-shadow(0 30px 76px rgba(0,0,0,0.16));
}

.final-cta .inline-fluffy {
  color: #EB649B;
  text-shadow: none;
  filter: none;
}

@media (max-width: 820px) {
  .section-shell:not(.hero) {
    padding-top: 86px;
    padding-bottom: 86px;
  }
}
/* End premium editorial polish. */

/* Approved mockup alignment with 3D identity. */
:root {
  --brand-pink: #EB649B;
  --brand-light: #F6F6F6;
  --brand-graphite: #3C3D41;
  --brand-grey: #EDEFF1;
}

/* Keep approved Hero untouched. */
.section-shell:not(.hero) {
  overflow: hidden;
}

.problem,
.about,
.cases,
.final-cta {
  background: #3C3D41;
  color: #fff;
}

.solution,
.process,
.team,
.faq {
  background: #F6F6F6;
}

.directions,
.founder {
  background: #EDEFF1;
}

.problem.section-shell {
  grid-template-columns: minmax(0, .58fr) minmax(360px, .42fr);
  align-items: center;
}

.problem .section-head h2,
.problem .section-head p:not(.section-kicker) {
  color: #fff;
}

.problem .section-head p:not(.section-kicker) {
  color: rgba(255,255,255,.72);
}

.problem-pieces {
  min-height: 560px;
  margin-top: 34px;
}

.problem-pieces .piece {
  position: absolute;
  width: clamp(190px, 20vw, 330px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(0,0,0,.24));
}

.problem-pieces .piece-a {
  right: 4%;
  top: 4%;
  transform: rotate(-13deg);
}

.problem-pieces .piece-b {
  right: 24%;
  top: 36%;
  transform: rotate(16deg) scale(.9);
  opacity: .92;
}

.problem-pieces .piece-c {
  right: -6%;
  bottom: 0;
  transform: rotate(8deg) scale(1.08);
}

.problem-icon {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
}

.problem-icon::before,
.problem-icon::after {
  display: none;
}

.problem-icon img,
.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem .problem-grid {
  background: transparent;
  border: 0;
  padding: 0;
  gap: 30px;
}

.problem-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  color: #fff;
}

.problem-card h3,
.problem-card p {
  color: #fff;
}

.problem-card p {
  color: rgba(255,255,255,.68);
}

.problem-metrics {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}

.problem-metrics span {
  color: rgba(255,255,255,.64);
}

.solution-hero {
  align-items: center;
}

.solution-visual img {
  width: min(560px, 44vw);
  filter: drop-shadow(0 34px 70px rgba(60,61,65,.13));
}

.solution-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-steps article,
.solution-outcome {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,61,65,.08);
  box-shadow: 0 18px 50px rgba(60,61,65,.05);
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--brand-pink);
  background: transparent;
}

.step-icon::before,
.step-icon::after {
  display: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.about-media {
  grid-column: 1;
}

.about-copy {
  grid-column: 2;
  padding: clamp(38px, 5vw, 72px);
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.about-copy h2,
.about-copy p {
  color: #fff;
}

.about-copy p {
  color: rgba(255,255,255,.72);
}

.trust-panel {
  margin-top: 34px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  color: #3C3D41;
}

.trust-title span,
.trust-title p,
.industry-pills span {
  color: #3C3D41;
}

.section-3d-accent {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  opacity: .35;
}

.directions-accent {
  right: -8%;
  top: 5%;
  width: min(390px, 30vw);
}

.direction-card > span,
.process-num {
  color: transparent;
  background: linear-gradient(145deg, #ffffff 0%, #9ea2a8 48%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  border-color: rgba(60,61,65,.12);
  font-size: 15px;
}

.direction-card {
  background: rgba(255,255,255,.72);
}

.process .section-head {
  max-width: 620px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(235,100,155,0), rgba(235,100,155,.55), rgba(235,100,155,0));
}

.timeline-item {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.timeline-item::after {
  top: 30px;
  left: 52px;
}

.timeline-item h3 {
  margin-top: 22px;
}

.timeline-item p {
  font-size: 14px;
}

.team .section-head {
  max-width: 420px;
  margin-bottom: 44px;
}

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

.team-card {
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
}

.team-card-img img {
  filter: none;
}

.team-card h3 {
  margin: 14px 0 4px;
  padding: 0 16px;
  font-size: 15px;
}

.team-card p {
  margin: 0 0 14px;
  padding: 0 16px;
  font-size: 12px;
}

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

.accordion details {
  margin: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(60,61,65,.08);
  box-shadow: none;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta .inline-fluffy {
  color: var(--brand-pink);
}

.footer {
  background: #3C3D41;
  color: rgba(255,255,255,.72);
}

.footer a,
.footer strong {
  color: #fff;
}

@media (max-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .problem.section-shell,
  .about {
    display: block;
  }

  .problem-pieces {
    min-height: 260px;
    margin: 0 0 26px;
  }

  .problem-pieces .piece {
    width: clamp(132px, 42vw, 220px);
  }

  .solution-steps,
  .timeline,
  .accordion,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .solution-visual img {
    width: min(100%, 440px);
  }
}
/* End approved mockup alignment with 3D identity. */

/* Problem section contrast and scattered puzzle polish. */
#problem.problem {
  background: #3C3D41;
  color: #FFFFFF;
}

#problem .problem-content,
#problem .section-head,
#problem .problem-grid,
#problem .problem-metrics {
  position: relative;
  z-index: 4;
}

#problem .section-head h2 {
  color: #FFFFFF;
}

#problem .section-head p:not(.section-kicker) {
  color: rgba(255,255,255,0.72);
}

#problem .problem-card {
  min-height: 224px;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 24px 58px rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
}

#problem .problem-card h3 {
  color: #FFFFFF;
}

#problem .problem-card p {
  color: rgba(255,255,255,0.72);
}

#problem .problem-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
}

#problem .problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

#problem .problem-metrics {
  width: min(560px, 92%);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 54px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
}

#problem .problem-metrics strong,
#problem .problem-metrics b {
  color: #EB649B;
}

#problem .problem-metrics span {
  color: rgba(255,255,255,0.68);
}

#problem .problem-metrics div {
  border-left-color: rgba(255,255,255,0.14);
}

#problem .problem-pieces {
  position: relative;
  min-height: clamp(520px, 48vw, 690px);
  overflow: visible;
  isolation: isolate;
}

#problem .problem-pieces::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -18%;
  top: -5%;
  width: 135%;
  height: 95%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

#problem .problem-pieces::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 12%;
  top: 14%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #EB649B;
  box-shadow: 36vw 22vw 0 rgba(235,100,155,0.82);
  pointer-events: none;
}

#problem .problem-pieces .piece {
  position: absolute;
  z-index: 2;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,0.22));
  opacity: 0.9;
  will-change: transform;
}

@keyframes puzzle-float-a {
  0%, 100% { transform: rotate(-15deg) translate(0, 0); }
  50% { transform: rotate(-11deg) translate(-14px, 10px); }
}

@keyframes puzzle-float-b {
  0%, 100% { transform: rotate(12deg) translate(0, 0); }
  50% { transform: rotate(16deg) translate(16px, -9px); }
}

@keyframes puzzle-float-c {
  0%, 100% { transform: rotate(8deg) translate(0, 0); }
  50% { transform: rotate(4deg) translate(-11px, -14px); }
}

@keyframes puzzle-float-d {
  0%, 100% { transform: rotate(-25deg) translate(0, 0); }
  50% { transform: rotate(-21deg) translate(12px, 9px); }
}

@keyframes puzzle-float-e {
  0%, 100% { transform: rotate(22deg) translate(0, 0); }
  50% { transform: rotate(18deg) translate(-15px, -7px); }
}

@keyframes puzzle-float-f {
  0%, 100% { transform: rotate(-10deg) translate(0, 0); }
  50% { transform: rotate(-6deg) translate(10px, 12px); }
}

#problem .problem-pieces .piece-a {
  width: clamp(200px, 19vw, 300px);
  right: 6%;
  top: 2%;
  animation: puzzle-float-a 10s ease-in-out infinite alternate;
}

#problem .problem-pieces .piece-b {
  width: clamp(170px, 16vw, 250px);
  right: 34%;
  top: 14%;
  opacity: 0.82;
  animation: puzzle-float-b 12s ease-in-out 1.4s infinite alternate;
}

#problem .problem-pieces .piece-c {
  width: clamp(240px, 23vw, 370px);
  right: -6%;
  top: 24%;
  animation: puzzle-float-c 11s ease-in-out 0.7s infinite alternate;
}

#problem .problem-pieces .piece-d {
  width: clamp(150px, 14vw, 220px);
  right: 50%;
  bottom: 14%;
  opacity: 0.72;
  animation: puzzle-float-d 9s ease-in-out 2.2s infinite alternate;
}

#problem .problem-pieces .piece-e {
  width: clamp(190px, 18vw, 280px);
  right: 14%;
  bottom: 2%;
  animation: puzzle-float-e 13s ease-in-out 0.9s infinite alternate;
}

#problem .problem-pieces .piece-f {
  width: clamp(140px, 13vw, 210px);
  right: 2%;
  bottom: 8%;
  opacity: 0.78;
  animation: puzzle-float-f 8s ease-in-out 1.8s infinite alternate;
}

@media (max-width: 820px) {
  #problem .problem-pieces {
    min-height: 280px;
  }

  #problem .problem-pieces .piece-a,
  #problem .problem-pieces .piece-b,
  #problem .problem-pieces .piece-c,
  #problem .problem-pieces .piece-d,
  #problem .problem-pieces .piece-e,
  #problem .problem-pieces .piece-f {
    width: clamp(92px, 28vw, 150px);
  }

  #problem .problem-pieces::after {
    box-shadow: 58vw 28vw 0 rgba(235,100,155,0.72);
  }
}
/* End problem section contrast and scattered puzzle polish. */

/* Problem icon scale refinement. */
#problem .problem-card {
  padding-top: 28px;
}

#problem .problem-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

#problem .problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#problem .problem-icon-chaos img {
  width: 70px;
  height: 70px;
}

#problem .problem-icon-budget img {
  width: 60px;
  height: 60px;
}

#problem .problem-icon-growth img {
  width: 64px;
  height: 64px;
}

#problem .problem-card h3 {
  margin-top: 0;
}
/* End problem icon scale refinement. */

/* Solution compact premium composition. */
#solution.solution.section-shell {
  padding-top: clamp(74px, 7vw, 108px);
  padding-bottom: clamp(74px, 7vw, 112px);
  background: #F6F6F6;
}

#solution .solution-hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  margin-bottom: clamp(26px, 3.2vw, 42px);
}

#solution .solution-copy {
  max-width: 650px;
}

#solution .solution-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.98;
  font-weight: 760;
}

#solution .solution-copy h2 em {
  color: #EB649B;
}

#solution .solution-copy p:not(.section-kicker) {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(60,61,65,0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}

#solution .section-kicker {
  margin-bottom: 18px;
}

#solution .solution-visual {
  min-height: clamp(300px, 30vw, 430px);
  display: grid;
  place-items: center;
  order: initial;
}

#solution .solution-visual::before,
#solution .solution-visual::after {
  opacity: 0.28;
}

#solution .solution-visual img {
  position: relative;
  inset: auto;
  width: min(480px, 36vw);
  max-width: 100%;
  transform: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 58px rgba(60,61,65,0.12));
}

#solution .solution-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

#solution .solution-steps::before {
  display: none;
}

#solution .solution-steps article {
  position: relative;
  min-height: 154px;
  padding: 22px 18px 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(60,61,65,0.08);
  box-shadow: 0 18px 46px rgba(60,61,65,0.055);
  backdrop-filter: blur(16px);
}

#solution .solution-steps article > span {
  position: absolute;
  left: 16px;
  top: 14px;
  min-width: 38px;
  min-height: 24px;
  margin: 0;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60,61,65,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: rgba(60,61,65,0.5);
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

#solution .solution-steps .step-icon {
  width: 62px;
  height: 62px;
  margin: 24px 0 14px;
}

#solution .solution-steps .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#solution .solution-steps h3 {
  margin: 0;
  color: #3C3D41;
  font-size: 17px;
  line-height: 1.1;
  text-align: center;
  text-transform: lowercase;
}

#solution .solution-steps p {
  display: none;
}

#solution .solution-steps article.is-growth {
  background: #EB649B;
  border-color: rgba(235,100,155,0.2);
  box-shadow: 0 18px 46px rgba(235,100,155,0.18);
}

#solution .solution-steps article.is-growth > span {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.16);
  color: #fff;
}

#solution .solution-steps article.is-growth h3 {
  color: #fff;
}

#solution .solution-steps article.is-growth .step-icon img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(60,61,65,0.12));
}

#solution .solution-outcome {
  display: none;
}

@media (min-width: 821px) {
  #solution .solution-steps article:nth-child(5) {
    grid-column: 1;
  }
}

@media (max-width: 1180px) {
  #solution .solution-hero {
    grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
    gap: 34px;
  }

  #solution .solution-copy h2 {
    font-size: clamp(38px, 5vw, 56px);
  }

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

@media (max-width: 820px) {
  #solution.solution.section-shell {
    padding-bottom: 82px;
  }

  #solution .solution-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  #solution .solution-copy {
    display: contents;
  }

  #solution .solution-copy .section-kicker,
  #solution .solution-copy h2,
  #solution .solution-copy p:not(.section-kicker) {
    display: block;
  }

  #solution .solution-visual {
    min-height: 240px;
    order: 4;
  }

  #solution .solution-visual img {
    width: min(360px, 86vw);
  }

  #solution .solution-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #solution .solution-steps article {
    min-height: 128px;
  }
}
/* End solution compact premium composition. */

/* Solution one-row compact refinement. */
#solution.solution.section-shell {
  padding-top: clamp(58px, 5.8vw, 88px);
  padding-bottom: clamp(66px, 6vw, 96px);
}

#solution .solution-hero {
  grid-template-columns: minmax(0, 0.54fr) minmax(300px, 0.46fr);
  gap: clamp(36px, 5vw, 78px);
  margin-bottom: clamp(20px, 2.6vw, 34px);
}

#solution .solution-copy h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(44px, 3.8vw, 58px);
  line-height: 0.96;
}

#solution .solution-copy p:not(.section-kicker) {
  max-width: 600px;
  margin-top: 24px;
  line-height: 1.45;
}

#solution .solution-visual {
  min-height: clamp(270px, 27vw, 390px);
}

#solution .solution-visual img {
  width: min(440px, 33vw);
}

#solution .solution-steps {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

#solution .solution-steps article {
  min-height: 132px;
  height: 132px;
  padding: 18px 14px 16px;
  border-radius: 24px;
}

#solution .solution-steps article > span {
  left: 12px;
  top: 12px;
  min-width: 34px;
  min-height: 22px;
  padding: 5px 9px;
  font-size: 11px;
}

#solution .solution-steps .step-icon {
  width: 42px;
  height: 42px;
  margin: 22px 0 13px;
}

#solution .solution-steps h3 {
  width: 100%;
  font-size: 16px;
  font-weight: 680;
  white-space: nowrap;
}

#solution .solution-steps p {
  display: none;
}

@media (max-width: 1360px) {
  #solution .solution-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  #solution .solution-copy h2 {
    font-size: clamp(44px, 5vw, 60px);
  }

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

@media (max-width: 820px) {
  #solution .solution-copy h2 {
    font-size: clamp(36px, 9vw, 48px);
  }

  #solution .solution-copy p:not(.section-kicker) {
    margin-top: 20px;
  }

  #solution .solution-steps {
    grid-template-columns: 1fr;
  }

  #solution .solution-steps article {
    height: 122px;
    min-height: 122px;
  }
}
/* End solution one-row compact refinement. */

/* Solution exact sizing correction. */
#solution.solution.section-shell {
  padding-top: 96px;
  padding-bottom: 88px;
}

#solution .solution-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 0;
}

#solution .solution-copy h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

#solution .solution-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
}

#solution .solution-visual {
  min-height: 0;
}

#solution .solution-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

#solution .solution-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

#solution .solution-steps article {
  position: relative;
  height: 132px;
  min-height: 132px;
  padding: 18px 14px;
  border-radius: 24px;
}

#solution .solution-steps article > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1;
}

#solution .solution-steps .step-icon {
  width: 34px;
  height: 34px;
  margin-top: 26px;
  margin-bottom: 14px;
}

#solution .solution-steps .step-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#solution .solution-steps h3 {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}

#solution .solution-steps p {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  #solution .solution-copy h2 {
    max-width: 580px;
    font-size: 52px;
  }

  #solution .solution-steps {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  #solution .solution-copy h2 {
    font-size: 44px;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  #solution .solution-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  #solution .solution-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #solution .solution-copy h2 {
    font-size: 44px;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  #solution .solution-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  #solution.solution.section-shell {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  #solution .solution-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #solution .solution-copy h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  #solution .solution-steps {
    grid-template-columns: 1fr;
  }
}
/* End solution exact sizing correction. */

/* Solution final approved layout lock. */
#solution.solution.section-shell {
  padding-top: 96px;
  padding-bottom: 88px;
}

#solution .solution-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  min-height: 0;
  margin: 0;
}

#solution .solution-copy {
  width: 100%;
  max-width: 620px;
}

#solution .solution-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 760;
}

#solution .solution-copy h2 em {
  color: #EB649B;
}

#solution .solution-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

#solution .solution-visual {
  min-height: 0;
  display: grid;
  place-items: center;
}

#solution .solution-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  transform: none;
}

#solution::before,
#solution::after {
  opacity: 0.08;
}

#solution .solution-steps {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

#solution .solution-steps::before {
  display: none;
}

#solution .solution-steps article,
#solution .solution-steps article:nth-child(5) {
  grid-column: auto;
}

#solution .solution-steps article {
  height: 128px;
  min-height: 128px;
  padding: 16px 10px;
  border-radius: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
}

#solution .solution-steps article > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

#solution .solution-steps .step-icon {
  width: 34px;
  height: 34px;
  margin: 24px 0 12px;
}

#solution .solution-steps .step-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

#solution .solution-steps h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

#solution .solution-steps p,
#solution .solution-outcome {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1439px) {
  #solution .solution-copy h2 {
    max-width: 580px;
    font-size: 52px;
  }

  #solution .solution-steps {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #solution .solution-copy h2 {
    font-size: 44px;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 18px;
  }

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

@media (min-width: 481px) and (max-width: 767px) {
  #solution .solution-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  #solution .solution-steps article.is-growth {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  #solution.solution.section-shell {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  #solution .solution-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #solution .solution-copy h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  #solution .solution-steps {
    grid-template-columns: 1fr;
  }
}
/* End solution final approved layout lock. */

/* About trust niches split layout. */
#about.about.section-shell {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  background: #3C3D41;
}

#about .about-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#about .about-copy h2 {
  color: #FFFFFF;
}

#about .about-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
}

#about .about-media {
  min-width: 0;
}

#about .about-media img {
  border-radius: 28px;
}

.trust.section-shell {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
  background: #3C3D41;
  color: #FFFFFF;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.trust-metrics div {
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.trust-metrics strong {
  display: block;
  color: #FFFFFF;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.trust-logo-capsule {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  padding: 24px 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 70px rgba(0,0,0,.16);
}

.trust-logo-capsule img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .86;
  mix-blend-mode: screen;
}

.niches.section-shell {
  padding-top: clamp(76px, 8vw, 126px);
  padding-bottom: clamp(84px, 8vw, 136px);
  background: #3C3D41;
  color: #FFFFFF;
}

.niches-inner h2 {
  max-width: 920px;
  margin-bottom: 38px;
  color: #FFFFFF;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.niche-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1120px;
}

.niche-pills span {
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #FFFFFF;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  #about.about.section-shell {
    display: block;
  }

  #about .about-media {
    margin-bottom: 34px;
  }

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

  .trust-logo-capsule {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 32px;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-metrics div {
    padding: 18px 16px;
  }

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

  .niche-pills {
    gap: 9px;
  }

  .niche-pills span {
    padding: 12px 16px;
    font-size: 14px;
  }
}
/* End about trust niches split layout. */

/* About trust unified dark zone spacing fix. */
#about.about.section-shell {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 0;
  height: auto;
}

#trust.trust.section-shell {
  padding-top: 80px;
  padding-bottom: 0;
  margin-top: 0;
  min-height: 0;
  height: auto;
}

#niches.niches.section-shell {
  padding-top: 72px;
  padding-bottom: 120px;
  margin-top: 0;
  min-height: 0;
  height: auto;
}

#about.about.section-shell,
#trust.trust.section-shell,
#niches.niches.section-shell {
  background: #3C3D41;
  -webkit-mask-image: none;
  mask-image: none;
}

#about .about-media,
#about .about-copy,
#trust .trust-metrics,
#trust .trust-logo-capsule,
#niches .niches-inner {
  position: relative;
  z-index: 3;
}

.trust-metrics {
  gap: 24px;
  margin-bottom: 32px;
}

.trust-metrics div {
  min-height: 128px;
  display: grid;
  align-content: center;
  padding: 24px 26px;
}

.trust-logo-capsule {
  width: 100%;
  min-height: 132px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 34px;
  row-gap: 18px;
  padding: 28px 52px;
  border-radius: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.trust-logo-capsule img,
.trust-logo-capsule .trust-logo-text {
  flex: 0 1 150px;
  max-width: 150px;
  max-height: 42px;
  min-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  filter: grayscale(1) contrast(1.05);
  opacity: 0.92;
  mix-blend-mode: normal;
}

.trust-logo-capsule .trust-logo-text {
  color: #3C3D41;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  filter: none;
}

.trust-logo-capsule .trust-logo-text-wide {
  text-transform: none;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.niches-inner h2 {
  max-width: 780px;
  margin-bottom: 40px;
  font-size: clamp(36px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.niche-pills {
  gap: 14px;
  max-width: 1120px;
}

@media (max-width: 900px) {
  #about.about.section-shell {
    padding-top: 80px;
  }

  #trust.trust.section-shell {
    padding-top: 64px;
  }

  #niches.niches.section-shell {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .trust-logo-capsule {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border-radius: 32px;
    padding: 22px;
  }

  .trust-logo-capsule img,
  .trust-logo-capsule .trust-logo-text {
    justify-self: center;
    width: 100%;
    max-width: 150px;
  }
}

@media (max-width: 560px) {
  .trust-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-metrics div {
    min-height: 112px;
  }

  .trust-logo-capsule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .niche-pills {
    gap: 10px;
  }
}
/* End about trust unified dark zone spacing fix. */


/* Trust logos mobile two-column refinement. */
@media (max-width: 560px) {
  .trust-logo-capsule {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
    padding: 18px;
  }

  .trust-logo-capsule img,
  .trust-logo-capsule .trust-logo-text {
    max-height: 38px;
    min-height: 38px;
    max-width: 136px;
    padding: 7px 10px;
    font-size: 13px;
  }
}

/* Trust industries connected animated pills. */
#trust.trust.section-shell {
  padding-bottom: 0;
}

#niches.niches.section-shell {
  padding-top: 0;
}

.logo-row,
.trust-logo-capsule.logo-row {
  margin-bottom: 56px;
}

.industries-title,
#niches .industries-title {
  max-width: 820px;
  margin: 56px auto 32px;
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

.industries-tags,
#niches .industries-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.industry-pill,
#niches .industry-pill {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  border-radius: 999px;
  padding: 14px 24px;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.industry-pill.is-active,
#niches .industry-pill.is-active {
  background: rgba(235,100,155,0.18);
  border-color: #EB649B;
  color: #FFFFFF;
  box-shadow: 0 0 32px rgba(235,100,155,0.28);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .industries-title,
  #niches .industries-title {
    margin: 40px auto 24px;
    font-size: 26px;
    line-height: 1.2;
  }

  .industries-tags,
  #niches .industries-tags {
    gap: 10px;
  }

  .industry-pill,
  #niches .industry-pill {
    padding: 10px 16px;
    font-size: 14px;
  }

  .industry-pill.is-active,
  #niches .industry-pill.is-active {
    transform: none;
    box-shadow: 0 0 20px rgba(235,100,155,0.22);
  }
}
/* End trust industries connected animated pills. */

/* About media crop refinement. */
#about .about-media {
  min-height: 0;
  position: relative;
  padding-bottom: 96px;
}

#about .about-photo-main {
  position: relative;
  width: min(100%, 640px);
  padding: 12px;
  border-radius: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

#about .about-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  height: 220px;
  overflow: hidden;
  border-radius: 32px;
  border: 10px solid #F6F6F6;
  background: #F6F6F6;
  box-shadow: var(--shadow);
}

#about .about-photo-main img,
#about .about-photo-small img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  box-shadow: none;
}

#about .about-photo-main img {
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 32px;
}

#about .about-photo-small img {
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 21px;
}

@media (max-width: 900px) {
  #about .about-media {
    min-height: 0;
    padding-bottom: 74px;
  }

  #about .about-photo-main {
    width: 100%;
    padding: 10px;
    border-radius: 38px;
  }

  #about .about-photo-main img {
    border-radius: 28px;
  }

  #about .about-photo-small {
    right: 18px;
    bottom: 0;
    width: min(280px, 52vw);
    height: 180px;
    border-width: 8px;
  }
}

@media (max-width: 560px) {
  #about .about-media {
    display: grid;
    gap: 16px;
    padding-bottom: 0;
  }

  #about .about-photo-main,
  #about .about-photo-small {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  #about .about-photo-main {
    padding: 8px;
    border-radius: 32px;
  }

  #about .about-photo-main img {
    border-radius: 24px;
  }

  #about .about-photo-small {
    height: 210px;
    border-radius: 28px;
    border-width: 8px;
  }
}
/* End about media crop refinement. */

/* Solution premium interactive system. */
@keyframes solution-puzzle-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@keyframes solution-orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes solution-orbit-spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes solution-sphere-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(4px); }
}

@keyframes solution-dot-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

#solution .solution-visual {
  position: relative;
}

#solution .solution-visual img.solution-puzzle {
  position: relative;
  z-index: 2;
  width: min(540px, 40vw);
  animation: solution-puzzle-breathe 8s ease-in-out infinite;
  filter: drop-shadow(0 32px 72px rgba(232, 100, 155, 0.22))
          drop-shadow(0 0 60px rgba(235, 100, 155, 0.12));
}

#solution .solution-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(235, 100, 155, 0.18);
  pointer-events: none;
}

#solution .solution-orbit-1 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  animation: solution-orbit-spin 45s linear infinite;
}

#solution .solution-orbit-2 {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  border-color: rgba(235, 100, 155, 0.1);
  animation: solution-orbit-spin-reverse 35s linear infinite;
}

#solution .solution-sphere {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  background: linear-gradient(145deg, #eee 0%, #c0c0c0 35%, #fafafa 55%, #b8b8b8 100%);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.14),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
}

#solution .solution-sphere-lg {
  width: 28px;
  height: 28px;
  top: 8%;
  right: 10%;
  animation: solution-sphere-float 7s ease-in-out infinite;
}

#solution .solution-sphere-md {
  width: 18px;
  height: 18px;
  bottom: 18%;
  left: 12%;
  animation: solution-sphere-float 9s ease-in-out 1.5s infinite;
}

#solution .solution-sphere-sm {
  width: 12px;
  height: 12px;
  top: 45%;
  right: 5%;
  animation: solution-sphere-float 6s ease-in-out 0.8s infinite;
}

#solution .solution-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #EB649B;
  z-index: 3;
  animation: solution-dot-pulse 4s ease-in-out infinite;
}

#solution .solution-dot:nth-child(6) { animation-delay: 0s; }
#solution .solution-dot:nth-child(7) { animation-delay: 1.4s; }
#solution .solution-dot:nth-child(8) { animation-delay: 2.8s; }

/* Timeline */
#solution .solution-timeline {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(235, 100, 155, 0.3) 10%, rgba(235, 100, 155, 0.3) 90%, transparent);
  z-index: 0;
  pointer-events: none;
}

/* Cards as timeline nodes */
#solution .solution-steps {
  position: relative;
}

#solution .solution-steps article {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#solution .solution-steps article:hover {
  transform: translateY(-6px);
  background: rgba(235, 100, 155, 0.06);
  border-color: rgba(235, 100, 155, 0.2);
  box-shadow: 0 22px 56px rgba(235, 100, 155, 0.12);
}

#solution .solution-steps article:hover > span {
  color: #EB649B;
  border-color: rgba(235, 100, 155, 0.3);
  background: rgba(255, 240, 246, 0.9);
}

#solution .solution-steps article:hover .step-icon {
  transform: scale(1.08);
}

#solution .solution-steps .step-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Growth card hover */
#solution .solution-steps article.is-growth:hover {
  background: #d45589;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 56px rgba(235, 100, 155, 0.28);
}

/* Puzzle glow on card hover */
#solution .solution-visual {
  transition: filter 0.5s ease;
}

#solution .solution-visual.glow-active {
  filter: drop-shadow(0 0 40px rgba(235, 100, 155, 0.25));
}

#solution .solution-visual.glow-active img.solution-puzzle {
  filter: drop-shadow(0 32px 72px rgba(232, 100, 155, 0.3))
          drop-shadow(0 0 80px rgba(235, 100, 155, 0.2));
}

/* End solution premium interactive system. */

/* Cases slider. */
#cases {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.cases-header-text {
  max-width: 900px;
  margin-bottom: 16px;
}

.cases-header-text h2 {
  color: #fff !important;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.06;
  margin-bottom: 10px;
}

.mobile-br {
  display: none;
}

.cases-header-text .section-kicker {
  margin-bottom: 12px;
}

.cases-header-text .cases-subtitle {
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  margin: 0;
  color: #fff !important;
}

/* Filters */
.cases-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cases-filters::-webkit-scrollbar {
  display: none;
}

.cases-filters-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.cases-filter {
  background: none;
  border: 0;
  padding: 6px 14px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease;
}

.cases-filter:first-child {
  padding-left: 0;
}

.cases-filter:hover {
  color: #fff;
}

.cases-filter.is-active {
  color: #fff;
}

.cases-filter.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
}

.cases-filter:first-child.is-active::after {
  left: 0;
}

.cases-filter-sep {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  user-select: none;
}

.cases-navigation {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  pointer-events: auto;
}

.cases-nav-btn {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cases-nav-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.cases-nav-btn:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

/* Slider */
.cases-slider-wrap {
  overflow: hidden;
  touch-action: pan-y;
}

.cases-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.case-slide:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.case-slide-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.case-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-slide:hover .case-slide-img img {
  transform: scale(1.04);
}

.case-slide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 20px;
}

.case-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.case-metric {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(235,100,155,0.4);
  border-radius: 999px;
  background: rgba(235,100,155,0.12);
  color: #EB649B;
  font-size: 13px;
  font-weight: 700;
}

.case-tag {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
}

.case-slide-body h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.case-slide-niche {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.case-slide-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 16px;
  flex: 1;
}

.case-slide-result {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  line-height: 1.4;
}

.case-slide-result span {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--pink);
}

.case-slide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  margin-top: auto;
}

.case-slide-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.case-slide-btn span {
  transition: transform 0.2s ease;
}

.case-slide-btn:hover span {
  transform: translateX(3px);
}

/* Dots */
.cases-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.cases-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}

.cases-dot.is-active {
  background: var(--pink);
}

/* CTA block */
.cases-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 24px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(235,100,155,0.06), transparent 60%),
    rgba(60,61,65,0.35);
  backdrop-filter: blur(12px);
}

.cases-cta-title {
  margin: 0 0 6px;
  color: #fff !important;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
}

.cases-cta-description {
  margin: 0;
  color: #fff !important;
  font-size: 14px;
  line-height: 1.5;
  max-width: 520px;
}

.cases-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ee4f9a, #e8649b 52%, #f18cbb);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(235,100,155,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.cases-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(235,100,155,0.35);
}

.cases-cta-btn span {
  transition: transform 0.2s ease;
}

.cases-cta-btn:hover span {
  transform: translateX(3px);
}

/* Cases responsive */
@media (max-width: 1180px) {
  .case-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 820px) {
  #cases {
    padding-top: clamp(100px, 12vw, 140px);
  }

  .mobile-br {
    display: block;
  }

  .cases-header-text {
    max-width: 100%;
  }

  .cases-filters-list {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cases-filters-list::-webkit-scrollbar {
    display: none;
  }

  .case-slide {
    flex: 0 0 100%;
  }

  .cases-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .cases-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Cases filter hidden state */
.case-slide.is-hidden {
  display: none !important;
}

/* End cases slider. */

/* FAQ section — brand composition. */
.faq {
  position: relative;
  overflow: hidden;
}

/* Световые пятна — 4 штуки, усиленные */
.faq::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -18%;
  right: -12%;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.12) 0%, transparent 60%);
  box-shadow: none;
  opacity: 1;
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.faq::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  bottom: -8%;
  left: -10%;
  right: auto;
  top: auto;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.08) 0%, transparent 60%);
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Дополнительные пятна через элементы */
.faq-decor-glow-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  top: 15%;
  left: 25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 230, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.faq-decor-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 2%;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Декоративный контейнер */
.faq-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Базовый стиль для изображений */
.faq-decor-piece {
  position: absolute;
  object-fit: contain;
  opacity: 1;
}

/* === ХРОМОВЫЕ ШАРИКИ (5) === */

/* Крупный — слева снизу, за карточками */
.faq-chrome-1 {
  width: clamp(180px, 22vw, 300px);
  bottom: -5%;
  left: -4%;
  z-index: 1;
}

/* Средний — справа сверху */
.faq-chrome-2 {
  width: clamp(140px, 16vw, 220px);
  top: -2%;
  right: -3%;
  transform: rotate(-10deg);
  z-index: 1;
}

/* Маленький — справа внизу */
.faq-chrome-3 {
  width: clamp(90px, 10vw, 140px);
  bottom: 15%;
  right: 2%;
  transform: rotate(15deg);
  z-index: 1;
}

/* Мелкий — слева сверху */
.faq-chrome-4 {
  width: clamp(70px, 8vw, 110px);
  top: 8%;
  left: 3%;
  transform: rotate(-20deg);
  z-index: 1;
}

/* Мелкий — справа по центру */
.faq-chrome-5 {
  width: clamp(60px, 7vw, 95px);
  top: 52%;
  right: -1%;
  transform: rotate(8deg);
  z-index: 1;
}

/* === ПАЗЛЫ (3) === */

/* Крупный — слева снизу, выходит за край */
.faq-puzzle-1 {
  width: clamp(160px, 18vw, 260px);
  bottom: -8%;
  left: -3%;
  transform: rotate(12deg);
  z-index: 1;
}

/* Средний — справа между карточками */
.faq-puzzle-2 {
  width: clamp(120px, 13vw, 190px);
  top: 45%;
  right: -2%;
  transform: rotate(-18deg);
  z-index: 1;
}

/* Маленький — слева сверху */
.faq-puzzle-3 {
  width: clamp(80px, 9vw, 130px);
  top: 12%;
  left: -1%;
  transform: rotate(25deg);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.08));
  z-index: 0;
}

/* === МЕХОВЫЕ ШАРИКИ (3) === */

.faq-fur-1 {
  width: clamp(100px, 11vw, 160px);
  top: 5%;
  left: 12%;
  opacity: 0.25;
  transform: rotate(-5deg);
  filter: drop-shadow(0 14px 34px rgba(0,0,0,0.1));
  z-index: 1;
}

.faq-fur-2 {
  width: clamp(80px, 9vw, 130px);
  bottom: 8%;
  right: 12%;
  transform: rotate(10deg);
  z-index: 1;
}

.faq-fur-3 {
  width: clamp(65px, 7vw, 100px);
  top: 58%;
  left: 6%;
  transform: rotate(-12deg);
  z-index: 1;
}

/* === ОРБИТЫ (3) === */

.faq-orbit {
  position: absolute;
  border: 1.5px solid rgba(232, 100, 155, 0.12);
  border-radius: 50%;
}

/* Крупная — за заголовком, проходит через весь блок */
.faq-orbit-1 {
  width: 520px;
  height: 520px;
  top: -12%;
  left: 15%;
  transform: rotate(-15deg) scaleY(0.45);
}

/* Средняя — справа за карточками */
.faq-orbit-2 {
  width: 380px;
  height: 380px;
  bottom: -5%;
  right: -8%;
  transform: rotate(10deg) scaleY(0.5);
}

/* Мелкая — слева внизу */
.faq-orbit-3 {
  width: 260px;
  height: 260px;
  bottom: 10%;
  left: -5%;
  transform: rotate(-8deg) scaleY(0.55);
}

/* === РОЗОВЫЕ ТОЧКИ (6) === */

.faq-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(232, 100, 155, 0.5);
  opacity: 0.7;
}

/* === ХРОМИРОВАННЫЕ СФЕРЫ (6) === */

.faq-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee, #c0c0c0 40%, #fafafa 60%, #b8b8b8);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.9);
}

/* === ЗАГОЛОВОК === */

.faq-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 24px;
}

.faq-header .section-kicker {
  text-align: left;
}

.faq-header h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.faq-subtitle {
  max-width: 440px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
}

/* === СЕТКА КАРТОЧЕК === */

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}

/* === КАРТОЧКА === */

.faq-card {
  border: 1px solid rgba(36, 35, 38, 0.06);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 39, 47, 0.06);
  border-color: rgba(232, 100, 155, 0.12);
}

.faq-card[open] {
  border-color: rgba(232, 100, 155, 0.15);
}

/* === ВОПРОС === */

.faq-q {
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--graphite);
  list-style: none;
  min-height: 52px;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ""; }
.faq-q::after { display: none !important; }

/* === ИКОНКА === */

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(36, 35, 38, 0.1);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--graphite);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.faq-icon::before {
  width: 9px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 9px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-card:hover .faq-icon {
  box-shadow: 0 0 8px rgba(232, 100, 155, 0.2);
}

.faq-card[open] .faq-icon {
  border-color: var(--pink);
  background: rgba(232, 100, 155, 0.04);
}

.faq-card[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  background: var(--pink);
}

.faq-card[open] .faq-icon::after {
  opacity: 0;
}

/* === РАЗДЕЛИТЕЛЬ === */

.faq-divider {
  height: 1px;
  margin: 0 18px;
  background: linear-gradient(90deg, transparent, rgba(232, 100, 155, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-card[open] .faq-divider {
  opacity: 1;
}

/* === ОТВЕТ === */

.faq-a {
  padding: 0 18px 16px;
}

.faq-a p {
  margin: 0;
  color: #625d64;
  font-size: 13px;
  line-height: 1.6;
}

/* === АДАПТИВ === */

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .faq-q {
    padding: 14px 16px;
    font-size: 13px;
  }

  .faq-a {
    padding: 0 16px 14px;
  }

  .faq-chrome-1,
  .faq-chrome-2,
  .faq-chrome-3,
  .faq-puzzle-1,
  .faq-puzzle-2,
  .faq-fur-1,
  .faq-fur-2 {
    opacity: 0.85;
  }

  .faq-orbit-1,
  .faq-orbit-2,
  .faq-orbit-3 {
    opacity: 0.5;
  }
}

/* End FAQ section. */

/* Final CTA — premium dark section. */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Световое пятно */
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Декор */
.cta-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cta-decor-piece {
  position: absolute;
  object-fit: contain;
  opacity: 1;
}

/* Хромовые шарики */
.cta-chrome-1 {
  width: clamp(100px, 12vw, 160px);
  top: 10%;
  left: 5%;
  z-index: 1;
}

.cta-chrome-2 {
  width: clamp(70px, 8vw, 110px);
  bottom: 15%;
  right: 8%;
  transform: rotate(-12deg);
  z-index: 1;
}

.cta-chrome-3 {
  width: clamp(55px, 6vw, 85px);
  top: 20%;
  right: 5%;
  transform: rotate(10deg);
  z-index: 1;
}

/* Меховые элементы */
.cta-fur-1 {
  width: clamp(60px, 7vw, 95px);
  bottom: 20%;
  left: 10%;
  transform: rotate(8deg);
  z-index: 1;
}

.cta-fur-2 {
  width: clamp(50px, 6vw, 80px);
  top: 15%;
  right: 15%;
  transform: rotate(-15deg);
  z-index: 1;
}

/* Орбиты */
.cta-orbit {
  position: absolute;
  border: 1px solid rgba(232, 100, 155, 0.1);
  border-radius: 50%;
}

.cta-orbit-1 {
  width: 400px;
  height: 400px;
  top: -15%;
  left: 10%;
  transform: rotate(-12deg) scaleY(0.45);
}

.cta-orbit-2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  right: 5%;
  transform: rotate(8deg) scaleY(0.5);
}

/* Розовые точки */
.cta-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(232, 100, 155, 0.4);
  opacity: 0.6;
}

/* Хромированные сферы */
.cta-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee, #c0c0c0 40%, #fafafa 60%, #b8b8b8);
  box-shadow: 0 3px 10px rgba(0,0,0,0.15), inset 0 2px 3px rgba(255,255,255,0.9);
}

/* Контент */
.final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.final-inner h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff !important;
}

.cta-accent {
  color: #EB649B !important;
}

.final-inner p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Кнопка */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ee4f9a, #e8649b 52%, #f18cbb);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(232, 100, 155, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(232, 100, 155, 0.4);
}

.cta-button span {
  transition: transform 0.2s ease;
}

.cta-button:hover span {
  transform: translateX(4px);
}

/* CTA responsive */
@media (max-width: 768px) {
  .final-cta {
    min-height: 420px;
  }

  .final-inner h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Footer — premium 4-column. */
.footer {
  position: relative;
  background: #1a191c;
  overflow: hidden;
}

/* Световые пятна */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -15%;
  left: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 20%;
  left: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 100, 155, 0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Декор */
.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-decor-piece {
  position: absolute;
  object-fit: contain;
  opacity: 1;
}

.footer-chrome-1 {
  width: clamp(100px, 12vw, 160px);
  top: 8%;
  left: 3%;
  z-index: 1;
}

.footer-chrome-2 {
  width: clamp(70px, 8vw, 110px);
  bottom: 20%;
  right: 5%;
  transform: rotate(-10deg);
  z-index: 1;
}

.footer-chrome-3 {
  width: clamp(50px, 6vw, 80px);
  top: 30%;
  right: 8%;
  transform: rotate(12deg);
  z-index: 1;
}

.footer-puzzle-1 {
  width: clamp(80px, 9vw, 130px);
  bottom: 15%;
  left: 8%;
  transform: rotate(8deg);
  z-index: 1;
}

.footer-fur-1 {
  width: clamp(60px, 7vw, 95px);
  top: 15%;
  right: 12%;
  transform: rotate(-12deg);
  z-index: 1;
}

.footer-orbit {
  position: absolute;
  border: 1px solid rgba(232, 100, 155, 0.08);
  border-radius: 50%;
}

.footer-orbit-1 {
  width: 350px;
  height: 350px;
  top: -20%;
  left: 10%;
  transform: rotate(-10deg) scaleY(0.45);
}

.footer-orbit-2 {
  width: 250px;
  height: 250px;
  bottom: -10%;
  right: 5%;
  transform: rotate(8deg) scaleY(0.5);
}

.footer-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(232, 100, 155, 0.35);
  opacity: 0.5;
}

.footer-sphere {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee, #c0c0c0 40%, #fafafa 60%, #b8b8b8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 2px rgba(255,255,255,0.9);
}

/* Сетка footer */
.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Бренд */
.footer-logo {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-line {
  width: 40px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 500;
}

/* Колонки */
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Keep the current footer columns out of the legacy nth-child flex rule. */
.footer-grid > .footer-col {
  display: block;
}

.footer-col li a,
.footer-contacts li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col li a span {
  transition: transform 0.2s ease;
  opacity: 0;
}

.footer-col li a:hover {
  color: #fff;
}

.footer-col li a:hover span {
  transform: translateX(3px);
  opacity: 1;
}

.footer-contacts li svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contacts li a:hover svg {
  color: var(--pink);
}

/* CTA кнопка */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ee4f9a, #e8649b 52%, #f18cbb);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(232, 100, 155, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(232, 100, 155, 0.35);
}

.footer-cta span {
  transition: transform 0.2s ease;
}

.footer-cta:hover span {
  transform: translateX(3px);
}

.footer-disclaimer {
  margin: 6px 0 0;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.3;
}

/* Нижняя строка */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 20px 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-line {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-contacts li {
    justify-content: center;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* End footer. */

/* ========================================
   MICRO-ANIMATIONS — Premium Polish
   ======================================== */

/* --- Cards: enhanced hover --- */
.soft-card,
.direction-card,
.team-card,
.process-card,
.case-slide {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.soft-card:hover,
.direction-card:hover,
.team-card:hover,
.process-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(49, 33, 42, 0.12);
  border-color: rgba(232, 100, 155, 0.15);
}

.case-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 100, 155, 0.15);
}

/* --- Buttons: unified hover + active --- */
.button,
.nav-cta,
.cta-button,
.footer-cta,
.faq-cta-btn,
.process-cta-btn {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

.button:hover,
.nav-cta:hover,
.cta-button:hover,
.footer-cta:hover,
.faq-cta-btn:hover,
.process-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 42px rgba(232, 100, 155, 0.25);
}

.button:active,
.nav-cta:active,
.cta-button:active,
.footer-cta:active,
.faq-cta-btn:active,
.process-cta-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 20px rgba(232, 100, 155, 0.2);
}

/* --- Case card images: light zoom on hover --- */
.case-slide-img img {
  transition: transform 0.5s var(--ease);
}

.case-slide:hover .case-slide-img img {
  transform: scale(1.03);
}

/* --- Direction cards: icon scale --- */
.direction-card .direction-icon {
  transition: transform 0.35s var(--ease);
}

.direction-card:hover .direction-icon {
  transform: scale(1.1);
}

/* --- Solution step icons: pulse on hover --- */
.solution-steps .step-icon {
  transition: transform 0.3s var(--ease);
}

.solution-steps article:hover .step-icon {
  transform: scale(1.08);
}

/* --- Process cards: image zoom --- */
.process-card .process-book {
  transition: transform 0.4s var(--ease);
}

.process-card:hover .process-book {
  transform: scale(1.04);
}

/* Process: remove stagger delay so card + image appear together */
.process-card.reveal {
  transition-delay: 0ms !important;
}

.process-header.reveal {
  transition-delay: 0ms !important;
}

/* --- Orbits: subtle drift --- */
@keyframes orbit-drift {
  0%, 100% { transform: rotate(-12deg) scaleY(0.55) translate(0, 0); }
  50% { transform: rotate(-10deg) scaleY(0.55) translate(4px, -3px); }
}

.orbital-left,
.orbital-right {
  animation: orbit-drift 20s ease-in-out infinite alternate;
}

/* --- FAQ: smooth expand --- */
.faq-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card[open] {
  animation: faqExpand 0.35s var(--ease) forwards;
}

@keyframes faqExpand {
  from { opacity: 0.9; }
  to { opacity: 1; }
}

/* --- Navigation: underline appear --- */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* --- Section reveal: staggered children --- */
.reveal.is-visible > * {
  animation: staggerFadeIn 0.5s var(--ease) both;
}

.reveal.is-visible > *:nth-child(1) { animation-delay: 0ms; }
.reveal.is-visible > *:nth-child(2) { animation-delay: 60ms; }
.reveal.is-visible > *:nth-child(3) { animation-delay: 120ms; }
.reveal.is-visible > *:nth-child(4) { animation-delay: 180ms; }
.reveal.is-visible > *:nth-child(5) { animation-delay: 240ms; }
.reveal.is-visible > *:nth-child(6) { animation-delay: 300ms; }
.reveal.is-visible > *:nth-child(7) { animation-delay: 360ms; }

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hero fluff: enhanced float --- */
.hero-fluff-img {
  will-change: transform;
}

/* --- Modal: smooth transitions --- */
.modal {
  transition: opacity 0.3s var(--ease);
}

.modal.is-open {
  animation: none;
  display: grid;
  opacity: 1;
}

/* --- Chrome elements: subtle shimmer --- */
@keyframes chromeShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.faq-decor-piece,
.cta-decor-piece {
  animation: chromeShimmer 8s ease-in-out infinite alternate;
}

.faq-decor-piece:nth-child(2) { animation-delay: 2s; }
.faq-decor-piece:nth-child(3) { animation-delay: 4s; }
.cta-decor-piece:nth-child(2) { animation-delay: 1.5s; }
.cta-decor-piece:nth-child(3) { animation-delay: 3s; }

/* --- Cases slider dots: smooth transition --- */
.cases-dot {
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}

.cases-dot.is-active {
  width: 40px;
}

/* --- Final CTA: subtle pulse on glow --- */
.cta-glow {
  animation: ctaGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.05); }
}

/* --- Footer links: smooth color --- */
.footer-col a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col a:hover {
  transform: translateX(3px);
}

/* ========================================
   MOBILE ADAPTATION — Full Responsive Rework
   Targets: 320px–1024px
   Does NOT affect desktop (>1024px)
   ======================================== */

/* --- GLOBAL MOBILE UTILITIES (≤820px) --- */
@media (max-width: 820px) {
  /* Prevent any horizontal overflow */
  html, body {
    overflow-x: hidden;
  }

  /* Disable hover effects on touch devices */
  .soft-card:hover,
  .direction-card:hover,
  .team-card:hover,
  .process-card:hover,
  .case-slide:hover,
  .solution-steps article:hover,
  .solution-steps article:hover .step-icon,
  .faq-card:hover,
  .button:hover,
  .nav-cta:hover,
  .cta-button:hover,
  .footer-cta:hover,
  .process-cta-btn:hover,
  .direction-card .direction-icon,
  .process-card .process-book,
  .solution-steps .step-icon,
  .faq-card:hover .faq-icon,
  .case-slide:hover .case-slide-img img {
    transform: none;
    box-shadow: none;
  }

  .button:active,
  .cta-button:active,
  .footer-cta:active,
  .process-cta-btn:active {
    transform: scale(0.98);
  }
}

/* --- HERO MOBILE (≤820px) --- */
@media (max-width: 820px) {
  /* Make fur decorations significantly more visible */
  .hero .hero-fluff.hero-fluff-img {
    opacity: 0.65 !important;
    width: clamp(140px, 32vw, 200px) !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-a {
    top: 80px !important;
    left: 2% !important;
    transform: rotate(-8deg);
  }

  .hero .hero-fluff.hero-fluff-img.fluff-b {
    top: 80px !important;
    right: 2% !important;
    transform: rotate(7deg);
  }

  .hero .hero-fluff.hero-fluff-img.fluff-c {
    display: block !important;
    bottom: auto !important;
    top: 140px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) rotate(-5deg) !important;
    width: clamp(110px, 26vw, 160px) !important;
    opacity: 0.5 !important;
  }

  /* Ensure text is not covered */
  .hero .hero-content {
    position: relative;
    z-index: 6;
  }

  .hero .hero-content h1,
  .hero .hero-content .hero-subtitle,
  .hero .hero-content .hero-actions {
    position: relative;
    z-index: 6;
  }
}

/* --- PROBLEM MOBILE (≤820px) --- */
@media (max-width: 820px) {
  /* Smaller heading */
  #problem .section-head h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.15;
  }

  /* Puzzles integrated around heading, not separate screen */
  #problem .problem-pieces {
    min-height: 200px !important;
    margin: 0 0 20px !important;
  }

  #problem .problem-pieces .piece {
    width: clamp(70px, 22vw, 120px) !important;
  }

  /* Compact cards, same size, stacked vertically */
  #problem .problem-card {
    min-height: auto !important;
    padding: 20px !important;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }

  #problem .problem-card h3 {
    font-size: 16px !important;
    margin-top: 0 !important;
  }

  #problem .problem-card p {
    font-size: 13px !important;
  }

  #problem .problem-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
    margin-bottom: 0 !important;
  }

  /* Horizontal compact statistics */
  #problem .problem-metrics {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    gap: 0 !important;
    padding: 14px 16px !important;
    min-height: auto !important;
  }

  #problem .problem-metrics > div {
    flex: 1;
    min-height: auto !important;
    padding: 8px 4px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #problem .problem-metrics > div:first-child {
    border-left: 0 !important;
  }

  #problem .problem-metrics > div:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  #problem .problem-metrics b {
    font-size: 20px !important;
    line-height: 1.2;
  }

  #problem .problem-metrics span {
    font-size: 10px !important;
    margin-top: 2px !important;
  }

  #problem .problem-metrics strong {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
  }
}

/* --- MOBILE SECTION WAVES (≤820px) --- */
@media (max-width: 820px) {
  .section-wave {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: -47px;
    width: 100%;
    height: 48px;
    background: var(--section-background);
    -webkit-mask-image: var(--section-mask);
    mask-image: var(--section-mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    pointer-events: none;
  }

  .solution,
  .about,
  .cases,
  .process,
  .founder,
  .team,
  .faq,
  .final-cta {
    margin-top: 0;
    -webkit-mask-image: none;
    mask-image: none;
    padding-top: 100px;
  }

  #problem.problem.section-shell {
    --mobile-surface-overlap: clamp(48px, 14vw, 64px);
    --mobile-wave-safe-area: clamp(36px, 10vw, 48px);
    --mobile-section-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20390%2072%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2040%20C28%2028%2052%208%2082%208%20C140%208%20174%2059%20238%2059%20C285%2059%20322%2030%20356%2030%20C370%2030%20382%2035%20390%2039%20V72%20H0%20Z%22/%3E%3C/svg%3E");
    --mobile-section-mask-height: 72px;
    margin-top: calc(var(--mobile-surface-overlap) * -1);
    padding-top: calc(82px + var(--mobile-surface-overlap) + var(--mobile-wave-safe-area));
    overflow: hidden;
    -webkit-mask-image: var(--mobile-section-mask), linear-gradient(#000, #000);
    mask-image: var(--mobile-section-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--mobile-section-mask-height), 100% calc(100% - var(--mobile-section-mask-height) + 1px);
    mask-size: 100% var(--mobile-section-mask-height), 100% calc(100% - var(--mobile-section-mask-height) + 1px);
    -webkit-mask-position: 0 0, 0 calc(var(--mobile-section-mask-height) - 1px);
    mask-position: 0 0, 0 calc(var(--mobile-section-mask-height) - 1px);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  #problem.problem::before {
    top: 12%;
  }

  #solution,
  #cases,
  #process,
  .founder,
  .team,
  .faq {
    padding-top: 108px;
  }

  .solution { --section-background: #fffafa; }
  .about { --section-background: #3c3d41; }
  .cases { --section-background: #3c3d41; }
  .process { --section-background: #ffffff; }
  .founder { --section-background: #f7f6f7; }
  .team { --section-background: #f7f6f7; }
  .faq { --section-background: #ffffff; }
  .final-cta { --section-background: #232127; }

  /* Content above wave */
  .about-media,
  .about-copy,
  .directions-hero,
  .cases-header,
  .cases-filters,
  .cases-slider-wrap,
  .cases-cta,
  .founder-layout,
  .team-header,
  .faq-header,
  .faq-grid,
  .process-header,
  .process-grid,
  .process-cta,
  .final-inner {
    position: relative;
    z-index: 2;
  }
}

/* --- SOLUTION MOBILE (≤820px) --- */
@media (max-width: 820px) {
  #solution.solution.section-shell {
    padding-bottom: 64px !important;
  }

  #solution .solution-hero {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    min-height: 0 !important;
  }

  #solution .solution-visual {
    min-height: 200px !important;
    order: -1;
  }

  #solution .solution-visual img {
    width: min(320px, 80vw) !important;
  }

  #solution .solution-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  #solution .solution-steps article {
    height: 110px !important;
    min-height: 110px !important;
    padding: 14px 10px !important;
    border-radius: 16px !important;
  }

  #solution .solution-steps .step-icon {
    width: 28px !important;
    height: 28px !important;
    margin: 16px 0 8px !important;
  }

  #solution .solution-steps h3 {
    font-size: 13px !important;
  }

  #solution .solution-copy h2 {
    font-size: clamp(28px, 7vw, 38px) !important;
  }

  #solution .solution-copy p:not(.section-kicker) {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  #solution .solution-steps {
    grid-template-columns: 1fr !important;
  }

  #solution .solution-steps article {
    height: 96px !important;
    min-height: 96px !important;
  }
}

/* --- SYSTEM / DIRECTIONS MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .directions.section-shell,
  #system.directions.section-shell {
    padding-bottom: 64px !important;
  }

  .direction-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .direction-card {
    padding: 20px !important;
  }

  .direction-card h3 {
    font-size: 16px !important;
  }

  .direction-card p {
    font-size: 14px !important;
  }

  .directions-hero {
    grid-template-columns: 1fr !important;
  }

  #system .directions-subtitle span,
  #system .direction-bottom-subtitle span {
    display: block;
    white-space: nowrap;
  }

  #system .directions-subtitle br,
  #system .direction-bottom-subtitle br {
    display: none;
  }
}

@media (max-width: 340px) {
  #system .directions-hero .section-head h2 {
    font-size: 28px;
    line-height: 1.02;
  }
}

/* --- PROCESS MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .process.section-shell {
    padding-bottom: 64px !important;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .process-card {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 14px !important;
  }

  .process-card-visual {
    min-height: 0 !important;
    height: auto !important;
    padding: 4px 0 !important;
  }

  .process-book {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 110px !important;
    margin: 0 auto !important;
  }

  .process-example {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 130% !important;
    max-width: 200px !important;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    pointer-events: none;
    display: block !important;
  }

  /* Disable desktop hover on touch devices; mobile state is controlled by scroll/tap. */
  .process-card:hover .process-example {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .process-card:hover .process-book {
    transform: none;
  }

  .process-card.is-example-preview .process-example,
  .process-card.is-example-open .process-example {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }

  .process-card.is-example-preview .process-book,
  .process-card.is-example-open .process-book {
    transform: scale(0.85);
    opacity: 0.6;
  }

  .process-card-visual[role="button"] {
    cursor: pointer;
    border-radius: 12px;
  }

  .process-card-visual[role="button"]:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 3px;
  }

  .process-card-text {
    gap: 0;
  }

  .process-num {
    font-size: 11px !important;
    margin-bottom: 4px !important;
    padding: 2px 8px !important;
  }

  .process-card-text h3 {
    font-size: 15px !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .process-card-text p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }

  .process-header {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }

  .process-header-decor {
    display: none !important;
  }

  .process-cta {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px 20px !important;
  }

  .process-cta-decor {
    display: none !important;
  }
}

/* --- FOUNDER MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .founder.section-shell {
    padding-bottom: 64px !important;
  }

  .founder-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .founder-photo-col {
    order: -1;
  }

  /* Fix photo - natural composition, no leg cutting */
  .founder-photo {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    border-radius: 24px !important;
  }

  .founder-photo-col {
    text-align: center;
  }

  /* Compact achievement cards */
  .founder-achievements {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 340px;
    margin: 0 auto;
  }

  .founder-ach-card {
    padding: 12px 10px !important;
    min-height: auto !important;
  }

  .founder-ach-card strong {
    font-size: 16px !important;
  }

  .founder-ach-text {
    font-size: 10px !important;
  }

  .founder-ach-icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 6px !important;
  }

  .founder-ach-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .founder-ach-line {
    display: none !important;
  }

  .founder-copy h2 {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .founder-copy .founder-desc {
    font-size: 14px !important;
  }
}

/* --- TEAM MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .team.section-shell {
    padding-bottom: 64px !important;
  }

  .team-header {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: center !important;
  }

  .team-header-visual {
    min-height: 180px !important;
  }

  .team-header-decor {
    display: none !important;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Square photos with correct cropping */
  .team-card-img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .team-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Individual object-position for team photos to avoid head cutting */
  .team-card:nth-child(1) .team-card-img img {
    object-position: center 15% !important;
  }

  .team-card:nth-child(2) .team-card-img img {
    object-position: center 18% !important;
  }

  .team-card:nth-child(3) .team-card-img img {
    object-position: center 12% !important;
  }

  .team-card:nth-child(4) .team-card-img img {
    object-position: center 14% !important;
  }

  .team-card:nth-child(5) .team-card-img img {
    object-position: center 16% !important;
  }

  .team-card h3 {
    font-size: 14px !important;
    padding: 12px 14px 2px !important;
  }

  .team-card p {
    font-size: 11px !important;
    padding: 0 14px 12px !important;
  }
}

/* --- FAQ MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .faq.section-shell {
    --faq-mobile-wave-height: 64px;
    --faq-mobile-overlap: 48px;
    --faq-mobile-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20390%2064%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2038%20C52%2038%2085%2012%20142%2012%20C205%2012%20238%2051%20298%2051%20C342%2051%20368%2029%20390%2026%20V64%20H0%20Z%22/%3E%3C/svg%3E");
    margin-top: calc(var(--faq-mobile-overlap) * -1);
    padding-top: calc(var(--faq-mobile-wave-height) + 44px) !important;
    padding-bottom: 64px !important;
    z-index: 4;
    overflow: hidden;
    -webkit-mask-image: var(--faq-mobile-mask), linear-gradient(#000, #000);
    mask-image: var(--faq-mobile-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--faq-mobile-wave-height), 100% calc(100% - var(--faq-mobile-wave-height) + 1px);
    mask-size: 100% var(--faq-mobile-wave-height), 100% calc(100% - var(--faq-mobile-wave-height) + 1px);
    -webkit-mask-position: 0 0, 0 calc(var(--faq-mobile-wave-height) - 1px);
    mask-position: 0 0, 0 calc(var(--faq-mobile-wave-height) - 1px);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .faq > .section-wave {
    display: none;
  }

  .faq-header,
  .faq-header h2,
  .faq-header .section-kicker,
  .faq-subtitle {
    text-align: left;
  }

  .faq-subtitle {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
    gap: 8px !important;
  }

  .faq-q {
    padding: 14px 16px !important;
    font-size: 13px !important;
  }

  .faq-a {
    padding: 0 16px 14px !important;
  }

  /* Reduce FAQ decorative elements on mobile */
  .faq-chrome-1 { width: clamp(80px, 20vw, 130px); opacity: 0.4; }
  .faq-chrome-2 { width: clamp(60px, 14vw, 100px); opacity: 0.35; }
  .faq-chrome-3 { display: none; }
  .faq-chrome-4 { display: none; }
  .faq-chrome-5 { display: none; }

  .faq-puzzle-1 { width: clamp(60px, 16vw, 100px); opacity: 0.35; }
  .faq-puzzle-2 { display: none; }
  .faq-puzzle-3 { display: none; }

  .faq-fur-1 { width: clamp(50px, 12vw, 80px); opacity: 0.2; }
  .faq-fur-2 { display: none; }
  .faq-fur-3 { display: none; }

  .faq-orbit-1 { display: none; }
  .faq-orbit-2 { display: none; }
  .faq-orbit-3 { display: none; }

  .faq-dot { display: none; }
  .faq-sphere { display: none; }
}

/* --- FINAL CTA MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .final-cta {
    min-height: 380px !important;
  }

  /* Reduce CTA decorative elements */
  .cta-chrome-1 { width: clamp(60px, 16vw, 100px); opacity: 0.35; }
  .cta-chrome-2 { display: none; }
  .cta-chrome-3 { display: none; }
  .cta-fur-1 { display: none; }
  .cta-fur-2 { display: none; }
  .cta-orbit-1 { display: none; }
  .cta-orbit-2 { display: none; }
  .cta-dot { display: none; }
  .cta-sphere { display: none; }

  .final-inner h2 {
    font-size: clamp(22px, 6vw, 30px) !important;
  }

  .final-inner p {
    font-size: 14px !important;
  }

  .cta-button {
    padding: 14px 28px !important;
    font-size: 15px !important;
  }
}

/* --- FOOTER MOBILE (≤820px) --- */
@media (max-width: 820px) {
  .footer {
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 48px 20px 32px !important;
  }

  .footer-brand {
    text-align: center !important;
  }

  .footer-desc {
    max-width: 100% !important;
  }

  .footer-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-tagline {
    text-align: center !important;
  }

  .footer-col {
    text-align: center !important;
  }

  .footer-grid > .footer-col {
    display: block !important;
  }

  .footer-col h4 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center !important;
  }

  .footer-contacts li {
    justify-content: center !important;
  }

  .footer-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }

  /* Reduce footer decorative elements */
  .footer-chrome-1 { width: clamp(50px, 12vw, 80px); opacity: 0.3; }
  .footer-chrome-2 { display: none; }
  .footer-chrome-3 { display: none; }
  .footer-puzzle-1 { display: none; }
  .footer-fur-1 { display: none; }
  .footer-orbit-1 { display: none; }
  .footer-orbit-2 { display: none; }
  .footer-dot { display: none; }
  .footer-sphere { display: none; }
}

/* --- EXTRA SMALL (≤480px) --- */
@media (max-width: 480px) {
  .hero .hero-fluff.hero-fluff-img.fluff-a {
    top: 60px !important;
    left: 0 !important;
    width: clamp(100px, 28vw, 140px) !important;
    opacity: 0.5 !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-b {
    top: 60px !important;
    right: 0 !important;
    width: clamp(100px, 28vw, 140px) !important;
    opacity: 0.5 !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-c {
    top: 110px !important;
    width: clamp(80px, 22vw, 110px) !important;
    opacity: 0.4 !important;
  }

  #problem .problem-card {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    text-align: center;
  }

  #problem .problem-metrics {
    flex-direction: column !important;
  }

  #problem .problem-metrics > div {
    border-left: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  #problem .problem-metrics > div:last-child {
    border-bottom: 0 !important;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .founder-achievements {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
}

/* --- TABLET (600px–1024px) --- */
@media (min-width: 601px) and (max-width: 1024px) {
  .problem.section-shell {
    display: block !important;
  }

  .problem-visual {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: min(100%, 480px) !important;
    height: 260px !important;
    margin: 20px auto 24px !important;
    opacity: 1 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .problem-content {
    width: 100% !important;
  }

  .problem .problem-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .problem-card {
    min-height: 180px !important;
    padding: 22px !important;
  }

  .problem-metrics {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    min-height: auto !important;
  }

  .problem-metrics > div {
    min-height: auto !important;
    padding: 10px 12px !important;
  }

  .solution-hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .solution-visual {
    min-height: 260px !important;
    order: -1;
  }

  .solution-steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }

  .direction-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .founder-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .founder-photo {
    max-width: 420px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .founder-achievements {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
  }

  .founder-ach-card {
    padding: 14px 12px !important;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 800px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .cases-header-text h2 {
    font-size: clamp(30px, 4vw, 40px) !important;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal.is-visible > * {
    animation: none;
  }

  .hero-fluff-img {
    animation: none;
  }

  .orbital-left,
  .orbital-right {
    animation: none;
  }

  .faq-decor-piece,
  .cta-decor-piece {
    animation: none;
  }

  .cta-glow {
    animation: none;
  }
}

/* ===== HERO MOBILE COMPOSITION (390×844) ===== */
/* Single clean block — no overrides, no conflicts */

/* Hide line-break helpers on desktop */
.hero-br { display: none; }

/* CTA note text under button */
.hero-cta-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .hero-br { display: block; }

  /* --- Hero section: normal flow, height by content --- */
  .hero.section-shell {
    --hero-wave-clearance: 28px;
    padding-top: 80px !important;
    padding-bottom: calc(36px + var(--hero-wave-clearance)) !important;
    display: block !important;
    align-content: start !important;
  }

  /* --- Fluff zone: absolute decorative elements between header and text --- */
  .fluff-c { display: block !important; }

  /* 300% romi — CENTER, highest */
  .hero .hero-fluff.hero-fluff-img.fluff-a {
    top: 90px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) rotate(-5deg) !important;
    width: min(42vw, 160px) !important;
    opacity: 0.88 !important;
  }

  /* 1000 продаж — LEFT, lower */
  .hero .hero-fluff.hero-fluff-img.fluff-b {
    top: 105px !important;
    left: 3% !important;
    right: auto !important;
    bottom: auto !important;
    transform: rotate(-12deg) !important;
    width: min(30vw, 115px) !important;
    opacity: 0.82 !important;
  }

  /* 1 млн просмотров — RIGHT, lower */
  .hero .hero-fluff.hero-fluff-img.fluff-c {
    top: 102px !important;
    left: auto !important;
    right: 3% !important;
    bottom: auto !important;
    transform: rotate(10deg) !important;
    width: min(30vw, 115px) !important;
    opacity: 0.82 !important;
  }

  /* --- Text block: compact vertical flow --- */
  .hero .hero-content {
    margin-top: 120px !important;
  }

  .hero .eyebrow {
    margin-bottom: 12px !important;
  }

  .hero h1 {
    margin-bottom: 18px !important;
    font-size: clamp(28px, 7.5vw, 38px) !important;
    line-height: 1.05 !important;
  }

  .hero .hero-subtitle {
    margin-bottom: 20px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  /* --- CTA block --- */
  .hero .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .hero .button {
    min-height: 44px !important;
    padding: 11px 20px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    width: 100% !important;
  }

  .hero-cta-note {
    margin-top: 10px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .hero .hero-subtitle {
    font-size: 12px !important;
  }

  .hero .button {
    min-height: 40px !important;
    padding: 10px 18px !important;
    font-size: 12px !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-a {
    top: 80px !important;
    width: min(44vw, 140px) !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-b {
    top: 95px !important;
    left: 1% !important;
    width: min(32vw, 105px) !important;
  }

  .hero .hero-fluff.hero-fluff-img.fluff-c {
    top: 92px !important;
    right: 1% !important;
    width: min(32vw, 105px) !important;
  }
}

.problem-swipe-hint {
  display: none;
}

@keyframes problem-swipe-arrow {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* Problem mobile: compact composition and native horizontal card rail. */
@media (max-width: 820px) {
  #problem.problem.section-shell {
    padding-bottom: 56px;
  }

  #problem .problem-pieces {
    position: absolute !important;
    z-index: 1;
    top: var(--mobile-section-mask-height) !important;
    left: 0;
    right: 0;
    width: 100%;
    height: 74px !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible;
  }

  #problem .problem-pieces .piece {
    z-index: 1;
  }

  #problem .problem-pieces::before {
    left: -8%;
    top: 0;
    width: 116%;
    height: 90%;
  }

  #problem .problem-pieces .piece-a {
    top: 3% !important;
    right: auto !important;
    bottom: auto !important;
    left: -3% !important;
    width: clamp(44px, 13.5vw, 56px) !important;
  }

  #problem .problem-pieces .piece-b {
    top: 44% !important;
    right: auto !important;
    bottom: auto !important;
    left: 21% !important;
    width: clamp(28px, 9vw, 38px) !important;
  }

  #problem .problem-pieces .piece-c {
    top: -2% !important;
    right: auto !important;
    bottom: auto !important;
    left: 43% !important;
    width: clamp(18px, 5.5vw, 24px) !important;
  }

  #problem .problem-pieces .piece-d {
    top: 14% !important;
    right: auto !important;
    bottom: auto !important;
    left: 58% !important;
    width: clamp(40px, 12vw, 52px) !important;
  }

  #problem .problem-pieces .piece-e {
    top: 48% !important;
    right: 18% !important;
    bottom: auto !important;
    left: auto !important;
    width: clamp(26px, 8vw, 36px) !important;
  }

  #problem .problem-pieces .piece-f {
    top: 10% !important;
    right: -2% !important;
    bottom: auto !important;
    left: auto !important;
    width: clamp(18px, 5vw, 22px) !important;
  }

  #problem .section-head {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
  }

  #problem .problem-title-line {
    display: block;
    white-space: nowrap;
  }

  #problem .section-head h2 {
    font-size: clamp(23px, 7vw, 36px) !important;
  }

  #problem .problem-title-desktop-break,
  #problem .problem-title-desktop-comma {
    display: none;
  }

  #problem .problem-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 16px 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #problem .problem-grid::-webkit-scrollbar {
    display: none;
  }

  #problem .problem-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1;
  }

  #problem .problem-swipe-hint span {
    display: inline-block;
    color: var(--pink);
    font-size: 18px;
    animation: problem-swipe-arrow 1.4s ease-in-out infinite;
  }

  #problem .problem-card {
    flex: 0 0 clamp(248px, 78vw, 310px);
    width: auto;
    min-height: 220px !important;
    aspect-ratio: auto;
    padding: 22px !important;
    gap: 0 !important;
    align-items: flex-start !important;
    text-align: left;
    scroll-snap-align: start;
  }

  #problem .problem-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 14px !important;
  }

  #problem .problem-card h3 {
    margin: 0 0 8px !important;
    font-size: 18px !important;
  }

  #problem .problem-card p {
    font-size: 14px !important;
    line-height: 1.45;
  }

  #problem .problem-metrics {
    display: grid !important;
    grid-template-columns: 42px repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-height: 84px !important;
    margin-top: 22px;
    padding: 0 !important;
    gap: 0 !important;
    overflow: hidden;
  }

  #problem .problem-metrics > div {
    min-width: 0;
    min-height: 84px !important;
    padding: 8px 4px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #problem .problem-metrics > div:first-child {
    border-left: 0 !important;
  }

  #problem .problem-metrics strong {
    width: auto !important;
    height: auto !important;
    border-radius: 0;
    background: transparent;
    font-size: 24px !important;
  }

  #problem .problem-metrics b {
    font-size: 23px !important;
  }

  #problem .problem-metrics span {
    margin-top: 4px !important;
    font-size: 10px !important;
    line-height: 1.2;
    text-align: center;
  }
}

/* Directions mobile: the section surface owns the Niches → Directions wave. */
@media (max-width: 820px) {
  #system.directions.section-shell {
    --directions-mobile-overlap: clamp(36px, 10vw, 48px);
    --directions-mobile-safe-area: clamp(20px, 6vw, 28px);
    --directions-mobile-mask-height: 64px;
    --directions-mobile-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20390%2064%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2022%20C70%208%20120%208%20170%2020%20C230%2034%20275%2046%20325%2032%20C352%2025%20372%2024%20390%2028%20V64%20H0%20Z%22/%3E%3C/svg%3E");
    margin-top: calc(var(--directions-mobile-overlap) * -1);
    padding-top: calc(44px + var(--directions-mobile-overlap) + var(--directions-mobile-safe-area));
    overflow: hidden;
    -webkit-mask-image: var(--directions-mobile-mask), linear-gradient(#000, #000);
    mask-image: var(--directions-mobile-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--directions-mobile-mask-height), 100% calc(100% - var(--directions-mobile-mask-height) + 1px);
    mask-size: 100% var(--directions-mobile-mask-height), 100% calc(100% - var(--directions-mobile-mask-height) + 1px);
    -webkit-mask-position: 0 0, 0 calc(var(--directions-mobile-mask-height) - 1px);
    mask-position: 0 0, 0 calc(var(--directions-mobile-mask-height) - 1px);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

/* Marquee wrappers preserve the existing desktop layouts. */
.logo-marquee-track,
.logo-set,
.niche-marquee-track,
.niche-set {
  display: contents;
}

.logo-set[aria-hidden="true"],
.niche-set[aria-hidden="true"] {
  display: none;
}

@keyframes trust-logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes niche-pill-marquee {
  from { transform: translateX(calc(-50% - 7px)); }
  to { transform: translateX(0); }
}

/* About / Trust / Niches mobile compact composition. */
@media (max-width: 820px) {
  #about.about.section-shell {
    padding-bottom: 0;
  }

  #about .about-media {
    display: block;
    position: relative;
    height: clamp(240px, 68vw, 280px);
    min-height: 0;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  #about .about-photo-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 86%;
    height: calc(100% - 24px);
    padding: 6px;
    border-radius: 28px;
  }

  #about .about-photo-main img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    object-position: center;
  }

  #about .about-photo-small {
    position: absolute;
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width: 38%;
    height: 44%;
    border-width: 6px;
    border-radius: 22px;
  }

  #about .about-photo-small img {
    border-radius: 16px;
  }

  #about .section-kicker {
    margin-bottom: 12px;
  }

  #about .about-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 8.7vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  #about .about-copy p:not(.section-kicker) {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4;
  }

  #trust.trust.section-shell {
    padding-top: 28px;
    padding-bottom: 0;
  }

  #trust .trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0 0 26px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  #trust .trust-metrics::-webkit-scrollbar {
    display: none;
  }

  #trust .trust-metrics > div {
    min-width: 0;
    min-height: 88px;
    padding: 8px 3px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #trust .trust-metrics > div:first-child {
    border-left: 0;
  }

  #trust .trust-metrics strong {
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  #trust .trust-metrics span {
    margin-top: 6px;
    font-size: clamp(9px, 2.5vw, 11px);
    line-height: 1.15;
  }

  #trust .trust-logo-capsule {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  #trust .logo-marquee-track,
  #trust .logo-set {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
  }

  #trust .logo-marquee-track {
    gap: 14px;
    animation: trust-logo-marquee 30s linear infinite;
  }

  #trust .logo-set {
    gap: 14px;
  }

  #trust .logo-set[aria-hidden="true"] {
    display: flex;
  }

  #trust .logo-set img,
  #trust .logo-set .trust-logo-text {
    flex: 0 0 124px;
    width: 124px;
    max-width: 124px;
    min-height: 40px;
    max-height: 40px;
    padding: 7px 12px;
    border-radius: 999px;
  }

  #niches.niches.section-shell {
    padding-top: 32px;
    padding-bottom: 64px;
  }

  #niches .industries-title {
    max-width: 100%;
    margin: 0 0 20px;
    font-size: clamp(24px, 6.7vw, 28px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-align: left;
  }

  #niches .niche-pills {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }

  #niches .niche-marquee-track,
  #niches .niche-set {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
  }

  #niches .niche-marquee-track {
    gap: 14px;
    animation: niche-pill-marquee 34s linear infinite;
  }

  #niches .niche-set {
    gap: 10px;
  }

  #niches .niche-set[aria-hidden="true"] {
    display: flex;
  }

  #niches .industry-pill {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  #trust .trust-logo-capsule,
  #niches .niche-pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #trust .logo-marquee-track,
  #niches .niche-marquee-track {
    animation: none;
    transform: none;
  }

  #trust .logo-set[aria-hidden="true"],
  #niches .niche-set[aria-hidden="true"] {
    display: none;
  }
}

.solution-steps-hint {
  display: none;
}

/* Solution mobile: compact visual and native horizontal steps rail. */
@media (max-width: 820px) {
  #solution .solution-hero {
    gap: 12px !important;
  }

  #solution .solution-visual {
    height: 165px !important;
    min-height: 165px !important;
  }

  #solution .solution-visual img,
  #solution .solution-visual img.solution-puzzle {
    width: min(270px, 68vw) !important;
  }

  #solution .solution-copy h2 {
    font-size: clamp(26px, 6.8vw, 34px) !important;
    line-height: 1.03;
  }

  #solution .solution-copy p:not(.section-kicker) {
    margin-top: 14px;
    line-height: 1.4;
  }

  #solution .solution-steps {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    width: 100%;
    max-width: none;
    margin-top: 18px !important;
    padding: 0 16px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #solution .solution-steps::-webkit-scrollbar {
    display: none;
  }

  #solution .solution-steps-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin-top: 4px;
    color: rgba(60, 61, 65, 0.58);
    font-size: 11px;
    line-height: 1;
  }

  #solution .solution-steps-hint span {
    display: inline-block;
    color: var(--pink);
    font-size: 18px;
    animation: problem-swipe-arrow 1.4s ease-in-out infinite;
  }

  #solution .solution-steps article,
  #solution .solution-steps article:nth-child(5),
  #solution .solution-steps article.is-growth {
    flex: 0 0 clamp(148px, 48vw, 180px);
    grid-column: auto !important;
    width: auto;
    height: 100px !important;
    min-height: 100px !important;
    padding: 12px 10px !important;
    scroll-snap-align: start;
  }

  #solution .solution-steps .step-icon {
    width: 26px !important;
    height: 26px !important;
    margin: 14px 0 6px !important;
  }

  #solution .solution-steps .step-icon img {
    width: 26px !important;
    height: 26px !important;
  }

  #solution .solution-steps h3 {
    font-size: 13px !important;
  }

  #solution .solution-steps article.is-auto-focus {
    border-color: rgba(232, 100, 155, 0.62);
    background: rgba(232, 100, 155, 0.1);
    box-shadow: 0 14px 34px rgba(232, 100, 155, 0.16);
  }

  #solution .solution-steps article.is-growth.is-auto-focus {
    border-color: rgba(255, 255, 255, 0.48);
    background: #d45589;
    box-shadow: 0 14px 34px rgba(232, 100, 155, 0.28);
  }
}

/* Founder mobile: full available portrait and compact information stack. */
@media (max-width: 820px) {
  #founder.founder.section-shell {
    --founder-mobile-wave-height: 72px;
    --founder-mobile-overlap: 52px;
    --founder-mobile-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20390%2072%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2044%20C54%2044%2078%2014%20134%2014%20C203%2014%20231%2055%20291%2055%20C337%2055%20361%2031%20390%2028%20V72%20H0%20Z%22/%3E%3C/svg%3E");
    margin-top: calc(var(--founder-mobile-overlap) * -1);
    padding-top: calc(var(--founder-mobile-wave-height) + 20px) !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    -webkit-mask-image: var(--founder-mobile-mask), linear-gradient(#000, #000);
    mask-image: var(--founder-mobile-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--founder-mobile-wave-height), 100% calc(100% - var(--founder-mobile-wave-height) + 1px);
    mask-size: 100% var(--founder-mobile-wave-height), 100% calc(100% - var(--founder-mobile-wave-height) + 1px);
    -webkit-mask-position: 0 0, 0 calc(var(--founder-mobile-wave-height) - 1px);
    mask-position: 0 0, 0 calc(var(--founder-mobile-wave-height) - 1px);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  #founder > .section-wave {
    display: none;
  }

  #founder .founder-layout {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #founder .founder-photo-col {
    order: 2;
    width: 100%;
    height: clamp(300px, 92vw, 396px);
    padding-top: 8px;
    overflow: hidden;
    box-sizing: border-box;
  }

  #founder .founder-copy {
    order: 1;
  }

  #founder .founder-photo {
    width: 100% !important;
    max-width: 390px !important;
    height: 100% !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    border-radius: 0 !important;
  }

  #founder .founder-copy .section-kicker {
    margin-bottom: 10px;
  }

  #founder .founder-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 8.7vw, 36px) !important;
    line-height: 0.94;
  }

  #founder .founder-role {
    margin: 0 0 12px;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.2;
  }

  #founder .founder-desc,
  #founder .founder-copy .founder-desc {
    margin: 0;
    font-size: clamp(13px, 3.5vw, 14px) !important;
    line-height: 1.4;
  }

  #founder .founder-achievements {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100%;
    max-width: none;
    margin: 18px 0 0;
  }

  #founder .founder-ach-card {
    min-height: 102px !important;
    aspect-ratio: auto;
    padding: 12px !important;
  }

  #founder .founder-ach-icon {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 6px !important;
  }

  #founder .founder-ach-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  #founder .founder-ach-card strong {
    font-size: clamp(18px, 5vw, 22px) !important;
  }

  #founder .founder-ach-text {
    margin-top: 4px;
    font-size: clamp(9px, 2.6vw, 11px) !important;
    line-height: 1.25;
  }

  #founder .founder-ach-line {
    display: none !important;
  }
}

/* Team mobile: compact centered header and equal two-column portrait grid. */
@media (max-width: 820px) {
  #team.team.section-shell {
    --team-mobile-wave-height: 72px;
    --team-mobile-overlap: 76px;
    --team-mobile-mask: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20390%2072%22%20preserveAspectRatio=%22none%22%3E%3Cpath%20fill=%22white%22%20d=%22M0%2050%20C50%2050%2083%2021%20142%2021%20C207%2021%20243%2058%20302%2058%20C344%2058%20370%2039%20390%2034%20V72%20H0%20Z%22/%3E%3C/svg%3E");
    margin-top: calc(var(--team-mobile-overlap) * -1);
    padding-top: calc(var(--team-mobile-wave-height) + 36px) !important;
    padding-bottom: 64px !important;
    overflow: hidden;
    -webkit-mask-image: var(--team-mobile-mask), linear-gradient(#000, #000);
    mask-image: var(--team-mobile-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--team-mobile-wave-height), 100% calc(100% - var(--team-mobile-wave-height) + 1px);
    mask-size: 100% var(--team-mobile-wave-height), 100% calc(100% - var(--team-mobile-wave-height) + 1px);
    -webkit-mask-position: 0 0, 0 calc(var(--team-mobile-wave-height) - 1px);
    mask-position: 0 0, 0 calc(var(--team-mobile-wave-height) - 1px);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  #team > .section-wave {
    display: none;
  }

  #team .team-header {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 32px;
    text-align: left !important;
  }

  #team .team-header-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  #team .team-header-text .section-kicker {
    width: max-content;
    margin: 0 0 12px;
  }

  #team .team-header h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(22px, 6.8vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-align: left;
  }

  #team .team-subtitle {
    width: 100%;
    max-width: 560px;
    margin: 16px 0 0;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.4;
    text-align: left;
  }

  #team .team-subtitle br {
    display: none;
  }

  #team .team-header-visual {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  #team .team-decor {
    opacity: 0.55;
    overflow: hidden;
  }

  #team .team-grid {
    --team-mobile-gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr;
    gap: var(--team-mobile-gap) !important;
    width: 100%;
  }

  #team .team-card {
    width: 100%;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
  }

  #team .team-card-img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
  }

  #team .team-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  #team .team-card h3 {
    min-height: 36px;
    margin: 0 !important;
    padding: 12px 10px 4px !important;
    display: flex;
    align-items: center;
    font-size: clamp(14px, 3.7vw, 16px) !important;
    line-height: 1.2;
  }

  #team .team-card p {
    min-height: 42px;
    margin: 0 !important;
    padding: 0 10px 12px !important;
    font-size: clamp(11px, 2.8vw, 12px) !important;
    line-height: 1.3;
  }

  #team .team-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - var(--team-mobile-gap)) / 2);
  }
}
