:root {
  --green: #c7ea22;
  --brand: #9fc44d;
  --olive: #77881f;
  --cream: #f4f3df;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.18);
  --glass: rgba(7, 12, 9, 0.52);
  --glass-strong: rgba(8, 13, 10, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --page-pad: clamp(18px, 4.65vw, 78px);
  --font-display: "Montserrat", "Poppins", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #020504;
  color: var(--text);
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: #020504;
}

.hero-bg,
.shade,
.orbit {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.04) brightness(0.82);
}

.shade {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.95) 0%, rgba(2, 5, 4, 0.78) 29%, rgba(2, 5, 4, 0.2) 58%, rgba(2, 5, 4, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 5, 4, 0.9) 0%, transparent 34%, rgba(2, 5, 4, 0.2) 100%);
}

.orbit {
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(199, 234, 34, 0.26);
  border-radius: 999px;
  opacity: 0.52;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 720px;
  height: 720px;
  left: 34%;
  top: -18%;
}

.orbit-two {
  width: 920px;
  height: 920px;
  left: 38%;
  top: -28%;
  opacity: 0.32;
}

.orbit-three {
  width: 1160px;
  height: 1160px;
  left: 42%;
  top: -42%;
  opacity: 0.22;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 54px);
  padding: clamp(24px, 4.2vw, 64px) var(--page-pad) 0;
  transition: padding 260ms ease, background 260ms ease, border-color 260ms ease, -webkit-backdrop-filter 260ms ease, backdrop-filter 260ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 5, 4, 0.72), rgba(2, 5, 4, 0));
  opacity: 1;
  transition: opacity 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(2, 5, 4, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled::before {
  background: linear-gradient(180deg, rgba(2, 5, 4, 0.88), rgba(2, 5, 4, 0.46));
}

.brand {
  width: clamp(190px, 15vw, 285px);
  display: block;
  animation: enterDown 620ms ease both;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.32));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 34px);
  min-height: 64px;
  padding: 0 clamp(18px, 2.3vw, 42px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 22px 54px rgba(0, 0, 0, 0.24);
  animation: enterDown 700ms ease 80ms both;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw, 1.13rem);
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: enterDown 760ms ease 140ms both;
}

.button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 clamp(22px, 2.5vw, 40px);
  border-radius: 14px;
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 760;
  white-space: nowrap;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #07100d;
  background: linear-gradient(180deg, #d8f62b, #bde019);
  box-shadow: 0 18px 48px rgba(199, 234, 34, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 62px rgba(199, 234, 34, 0.33);
}

.button-glass,
.button-dark {
  color: var(--text);
  background: rgba(8, 13, 10, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.button-glass svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
}

.button-glass svg path:first-child {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-glass svg path:last-child {
  stroke-width: 1.7;
}

.button-dark {
  min-width: 230px;
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 13, 10, 0.58);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(46vw, 650px);
  margin-left: var(--page-pad);
  margin-top: clamp(190px, 24vh, 275px);
  animation: enterLeft 760ms ease 160ms both;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.2vw, 7.05rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.hero-copy h1 span,
.hero-copy strong {
  color: var(--green);
}

.hero-copy p {
  max-width: 610px;
  margin: clamp(22px, 3vh, 32px) 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.58vw, 1.55rem);
  line-height: 1.35;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: clamp(34px, 4.2vh, 52px);
}

.hero-cards {
  position: absolute;
  z-index: 5;
  right: var(--page-pad);
  top: 16.4vh;
  width: min(23vw, 390px);
  display: grid;
  gap: clamp(16px, 2.4vh, 26px);
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: clamp(22px, 2vw, 30px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(6, 12, 9, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: cardIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: -30% -40%;
  background: radial-gradient(circle at 38% 16%, rgba(199, 234, 34, 0.15), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.metric-card:hover,
.metric-card:focus-visible {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(199, 234, 34, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(6, 12, 9, 0.58));
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.metric-card:hover::before,
.metric-card:focus-visible::before {
  opacity: 1;
}

.card-growth {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  animation-delay: 360ms;
}

.card-impact {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 22px;
  animation-delay: 480ms;
}

.card-coreq {
  min-height: 300px;
  animation-delay: 600ms;
}

.icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 234, 34, 0.38);
  border-radius: 999px;
}

.icon-circle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-growth strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.8vw, 5.1rem);
  line-height: 0.85;
}

.card-growth p,
.card-impact p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.25;
}

.bars {
  align-self: end;
  display: flex;
  align-items: end;
  gap: 13px;
  height: 104px;
  padding-bottom: 5px;
}

.bars span {
  width: clamp(9px, 0.76vw, 14px);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--green), rgba(159, 196, 77, 0.28));
  transform-origin: bottom;
  animation: barRise 900ms ease both;
}

.bars span:nth-child(1) {
  height: 22%;
  animation-delay: 760ms;
}

.bars span:nth-child(2) {
  height: 38%;
  animation-delay: 820ms;
}

.bars span:nth-child(3) {
  height: 56%;
  animation-delay: 880ms;
}

.bars span:nth-child(4) {
  height: 76%;
  animation-delay: 940ms;
}

.bars span:nth-child(5) {
  height: 100%;
  animation-delay: 1000ms;
}

.progress-ring {
  position: relative;
  width: 124px;
  height: 124px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track,
.ring-value {
  fill: none;
  stroke-width: 15;
}

.ring-track {
  stroke: rgba(255, 255, 255, 0.12);
}

.ring-value {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 276.4;
  stroke-dashoffset: 276.4;
  animation: ringFill 1200ms ease 760ms forwards;
}

.progress-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.wave {
  grid-column: 2;
  width: 100%;
  max-width: 172px;
  height: 48px;
}

.wave path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.95;
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: drawLine 1300ms ease 900ms forwards;
}

.wave path:nth-child(2) {
  opacity: 0.34;
  animation-delay: 1020ms;
}

.card-coreq h2 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 1.35vw, 1.45rem);
  font-weight: 700;
}

.coreq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 0.8vw, 12px);
}

.coreq-grid span {
  aspect-ratio: 1.72 / 1;
  border-radius: 7px;
  background: rgba(199, 234, 34, 0.55);
  transition: transform 180ms ease, filter 180ms ease;
}

.metric-card:hover .coreq-grid span,
.metric-card:focus-visible .coreq-grid span {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.coreq-grid .hot {
  background: var(--green);
}

.coreq-grid .soft {
  background: rgba(132, 151, 31, 0.9);
}

.coreq-grid .pale {
  background: rgba(244, 243, 223, 0.86);
}

.proof-row {
  position: absolute;
  z-index: 4;
  left: var(--page-pad);
  bottom: clamp(48px, 7vh, 84px);
  display: flex;
  align-items: center;
  gap: 0;
  animation: enterUp 800ms ease 760ms both;
}

.proof-row article {
  display: grid;
  grid-template-columns: 54px minmax(90px, 150px);
  gap: 13px;
  align-items: center;
  padding-right: clamp(12px, 1.9vw, 24px);
  margin-right: clamp(12px, 1.9vw, 24px);
  border-right: 1px solid rgba(199, 234, 34, 0.38);
}

.proof-row article:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.proof-row span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(199, 234, 34, 0.8);
  border-radius: 999px;
  font-weight: 900;
}

.proof-row svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.78rem, 0.92vw, 0.96rem);
  line-height: 1.25;
}

.proof-row strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.coreq-section {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: clamp(132px, 15vh, 180px) var(--page-pad) clamp(80px, 10vh, 132px);
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 234, 34, 0.14), transparent 28rem),
    radial-gradient(circle at 12% 86%, rgba(159, 196, 77, 0.12), transparent 26rem),
    linear-gradient(180deg, #020504 0%, #07100d 48%, #030806 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.18;
}

.glow-a {
  top: 14%;
  right: 8%;
  background: var(--green);
}

.glow-b {
  left: 4%;
  bottom: 8%;
  background: var(--brand);
}

.coreq-intro {
  position: relative;
  z-index: 1;
  max-width: min(940px, 48vw);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coreq-intro h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 7.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.coreq-intro p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.coreq-visual-option {
  position: absolute;
  z-index: 1;
  top: clamp(96px, 13vh, 152px);
  right: max(var(--page-pad), 5vw);
  width: min(45vw, 760px);
  margin: 0;
  pointer-events: auto;
  opacity: 0;
  transform-origin: 54% 54%;
  animation: coreqVisualEnter 780ms cubic-bezier(0.2, 0.8, 0.2, 1) 240ms forwards,
    coreqFloat 6.8s ease-in-out 1.18s infinite;
}

.coreq-visual-option::before {
  content: "";
  position: absolute;
  inset: 16% 10% 8%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(199, 234, 34, 0.28), transparent 62%);
  filter: blur(46px);
  opacity: 0.75;
  transform: scale(0.92);
  transition: opacity 260ms ease, transform 260ms ease;
}

.coreq-visual-option img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.45)) saturate(1.05) contrast(1.04);
  transform: perspective(1200px) rotateX(2deg) rotateY(-7deg) translateY(0);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease;
  will-change: transform;
}

.coreq-visual-option:hover::before,
.coreq-visual-option:focus-within::before {
  opacity: 1;
  transform: scale(1.08);
}

.coreq-visual-option:hover img,
.coreq-visual-option:focus-within img {
  filter: drop-shadow(0 58px 110px rgba(0, 0, 0, 0.58)) saturate(1.18) contrast(1.08) brightness(1.06);
  transform: perspective(1200px) rotateX(0deg) rotateY(-2deg) translateY(-16px) scale(1.035);
}

.coreq-experience {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  margin-top: clamp(50px, 8vh, 92px);
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.dimension-card {
  position: relative;
  min-height: clamp(210px, 22vw, 280px);
  padding: clamp(22px, 2vw, 32px);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.dimension-card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 26% 18%, rgba(199, 234, 34, 0.22), transparent 36%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.dimension-card:hover,
.dimension-card:focus-visible,
.dimension-card.is-active {
  transform: translateY(-8px);
  border-color: rgba(199, 234, 34, 0.44);
  background: linear-gradient(145deg, rgba(199, 234, 34, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.36);
}

.dimension-card:hover::before,
.dimension-card:focus-visible::before,
.dimension-card.is-active::before {
  opacity: 1;
}

.dimension-card span {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(38px, 5vw, 72px);
  color: #07100d;
  background: linear-gradient(180deg, #ddfa35, #aeca16);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(199, 234, 34, 0.2);
}

.dimension-card strong,
.dimension-card small {
  position: relative;
  display: block;
}

.dimension-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.4rem);
  line-height: 1;
}

.dimension-card small {
  max-width: 330px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.4;
}

.dimension-detail {
  position: sticky;
  top: 132px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 44px);
  --detail-accent: var(--green);
  --detail-aura: rgba(199, 234, 34, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 12, 9, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.dimension-detail::before {
  inset: -36% -28% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--detail-aura), transparent 68%);
  filter: blur(18px);
  opacity: 0.7;
  transform: translate3d(24px, -18px, 0);
  transition: opacity 280ms ease, transform 280ms ease;
}

.dimension-detail::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.2) 48%, transparent 76%);
  opacity: 0;
  transform: translateX(-120%);
}

.dimension-detail[data-dimension="oferta"] {
  --detail-accent: #d8f62b;
  --detail-aura: rgba(216, 246, 43, 0.2);
}

.dimension-detail[data-dimension="recursos"] {
  --detail-accent: #b7d822;
  --detail-aura: rgba(183, 216, 34, 0.2);
}

.dimension-detail[data-dimension="economia"] {
  --detail-accent: #eef4c6;
  --detail-aura: rgba(238, 244, 198, 0.16);
}

.dimension-detail.is-exiting {
  transform: translateY(10px) scale(0.986);
  border-color: rgba(199, 234, 34, 0.34);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.46);
}

.dimension-detail.is-exiting::before {
  opacity: 0.28;
  transform: translate3d(56px, -42px, 0) scale(0.92);
}

.dimension-detail.is-entering {
  animation: detailPanelEnter 560ms cubic-bezier(0.18, 0.86, 0.22, 1) both;
  border-color: rgba(199, 234, 34, 0.48);
}

.dimension-detail.is-entering::before {
  opacity: 0.95;
  transform: translate3d(0, 0, 0) scale(1.06);
}

.dimension-detail.is-entering::after {
  animation: detailSheen 760ms ease both;
}

.detail-topline,
.dimension-detail h3,
.dimension-detail > p,
.detail-metrics,
.detail-cta {
  position: relative;
  z-index: 1;
  transition: opacity 150ms ease, transform 150ms ease, filter 150ms ease;
}

.dimension-detail.is-exiting .detail-topline,
.dimension-detail.is-exiting h3,
.dimension-detail.is-exiting > p,
.dimension-detail.is-exiting .detail-metrics,
.dimension-detail.is-exiting .detail-cta {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(-10px) scale(0.985);
}

.dimension-detail.is-entering .detail-topline,
.dimension-detail.is-entering h3,
.dimension-detail.is-entering > p,
.dimension-detail.is-entering .detail-metrics,
.dimension-detail.is-entering .detail-cta {
  animation: detailContentIn 520ms cubic-bezier(0.2, 0.86, 0.24, 1) both;
}

.dimension-detail.is-entering h3 {
  animation-delay: 45ms;
}

.dimension-detail.is-entering > p {
  animation-delay: 90ms;
}

.dimension-detail.is-entering .detail-metrics {
  animation-delay: 135ms;
}

.dimension-detail.is-entering .detail-cta {
  animation-delay: 180ms;
}

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

.detail-topline .section-kicker {
  margin: 0;
}

#dimension-code {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #07100d;
  background: var(--detail-accent);
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--detail-accent) 26%, transparent);
}

.dimension-detail h3 {
  margin: auto 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.dimension-detail > p {
  min-height: 126px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.detail-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.detail-metrics strong,
.detail-metrics span {
  display: block;
}

.detail-metrics strong {
  color: var(--detail-accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
  transition: color 220ms ease;
}

.detail-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.detail-cta {
  width: fit-content;
  margin-top: 34px;
}

.services-section {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: clamp(118px, 14vh, 172px) var(--page-pad) clamp(82px, 10vh, 132px);
  background:
    radial-gradient(circle at 14% 12%, rgba(199, 234, 34, 0.1), transparent 27rem),
    radial-gradient(circle at 88% 66%, rgba(159, 196, 77, 0.11), transparent 30rem),
    linear-gradient(180deg, #030806 0%, #050b08 42%, #020504 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.045) 24.2% 24.35%, transparent 24.55%),
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.03) 49.15% 49.3%, transparent 49.5%),
    linear-gradient(90deg, transparent 0 74%, rgba(255, 255, 255, 0.045) 74.15% 74.3%, transparent 74.5%);
  opacity: 0.52;
}

.services-section::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% 34%;
  z-index: -1;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(199, 234, 34, 0.11), transparent 68%);
  filter: blur(54px);
  pointer-events: none;
}

.services-glow-a {
  top: 10%;
  left: 9%;
  background: var(--green);
}

.services-glow-b {
  right: 8%;
  bottom: 14%;
  background: var(--brand);
}

.services-shell {
  position: relative;
  z-index: 1;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
}

.services-heading h2 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 7.15rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.services-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.55;
}

.services-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.3fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  margin-top: clamp(48px, 7vh, 88px);
}

.service-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}

.service-card {
  position: relative;
  min-height: clamp(580px, 45vw, 690px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(18px, 1.6vw, 24px);
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
  transition: transform 260ms cubic-bezier(0.2, 0.86, 0.22, 1), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -24% -30% auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199, 234, 34, 0.18), transparent 66%);
  opacity: 0.3;
  transform: translate3d(38px, -38px, 0) scale(0.9);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(128deg, transparent 0 42%, rgba(255, 255, 255, 0.18), transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(199, 234, 34, 0.42);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(5, 11, 8, 0.74);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.08);
}

.service-card:hover::after,
.service-card:focus-within::after {
  animation: detailSheen 780ms ease both;
}

.service-card-featured {
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(5, 11, 8, 0.72);
  border-color: rgba(199, 234, 34, 0.32);
}

.service-index {
  position: relative;
  z-index: 1;
  margin: 8px 0 0 8px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.08) 0%, rgba(2, 5, 4, 0.18) 52%, rgba(2, 5, 4, 0.72) 100%),
    linear-gradient(90deg, rgba(2, 5, 4, 0.56), transparent 46%);
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(0.2, 0.86, 0.22, 1), filter 320ms ease;
}

.service-card:hover .service-media img,
.service-card:focus-within .service-media img {
  filter: saturate(1.06) contrast(1.08) brightness(0.96);
  transform: scale(1.07);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: -32px 0 0 18px;
  color: var(--green);
  border: 1px solid rgba(199, 234, 34, 0.44);
  border-radius: 20px;
  background: rgba(199, 234, 34, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.2);
  transition: transform 260ms ease, background 260ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.14), transparent 48%);
  opacity: 0.74;
  pointer-events: none;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-4px) rotate(-2deg);
  background: rgba(199, 234, 34, 0.14);
}

.service-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(199, 234, 34, 0.28));
}

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

.service-card h3 {
  margin: clamp(22px, 3.2vh, 38px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.18vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.018em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.service-card p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.48;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.88rem, 0.96vw, 0.98rem);
  line-height: 1.28;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(199, 234, 34, 0.44);
}

.service-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  transform: translateX(4px);
  color: #e5ff47;
}

.service-orbit-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(24px, 2.4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 8, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.service-radar {
  position: relative;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(199, 234, 34, 0.22) 0 5%, transparent 5.4%),
    radial-gradient(circle at center, rgba(199, 234, 34, 0.04), transparent 62%);
}

.service-radar span,
.service-radar::before,
.service-radar::after {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(199, 234, 34, 0.24);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.service-radar::before,
.service-radar::after {
  content: "";
}

.service-radar span:nth-child(1) {
  width: 44%;
  height: 44%;
}

.service-radar span:nth-child(2) {
  width: 68%;
  height: 68%;
}

.service-radar span:nth-child(3),
.service-radar::before {
  width: 92%;
  height: 92%;
}

.service-radar::after {
  width: 78%;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(199, 234, 34, 0.22);
  border-radius: 0;
}

.node {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 9px rgba(199, 234, 34, 0.08), 0 0 34px rgba(199, 234, 34, 0.42);
  animation: radarPulse 2.8s ease-in-out infinite;
}

.node-client {
  top: 20%;
  left: 29%;
}

.node-offer {
  top: 30%;
  right: 18%;
  animation-delay: 220ms;
}

.node-resource {
  right: 28%;
  bottom: 18%;
  animation-delay: 440ms;
}

.node-economy {
  left: 18%;
  bottom: 28%;
  animation-delay: 660ms;
}

.service-orbit-panel p {
  max-width: 300px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.5;
  text-align: center;
}

.focus-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(22px, 3vh, 34px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
}

.focus-strip a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2vw, 28px);
  color: inherit;
  text-decoration: none;
  background: rgba(5, 11, 8, 0.68);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.focus-strip a::after {
  content: "↗";
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 900;
  opacity: 0;
  transform: translate3d(-8px, 8px, 0);
  transition: opacity 200ms ease, transform 200ms ease;
}

.focus-strip a:hover,
.focus-strip a:focus-visible {
  background: rgba(199, 234, 34, 0.1);
  box-shadow: inset 0 0 0 1px rgba(199, 234, 34, 0.2);
}

.focus-strip a:hover::after,
.focus-strip a:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.focus-strip span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-strip strong {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.08;
}

.results-section,
.gastro-section {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: clamp(116px, 14vh, 170px) var(--page-pad) clamp(82px, 10vh, 132px);
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 234, 34, 0.1), transparent 28rem),
    linear-gradient(180deg, #020504 0%, #06100b 46%, #020504 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.results-section::before,
.gastro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.035) 18.12% 18.24%, transparent 18.4%),
    linear-gradient(90deg, transparent 0 50%, rgba(255, 255, 255, 0.032) 50.1% 50.22%, transparent 50.4%),
    linear-gradient(90deg, transparent 0 82%, rgba(255, 255, 255, 0.035) 82.12% 82.24%, transparent 82.4%);
  opacity: 0.48;
}

.results-glow-a {
  left: 10%;
  top: 18%;
  background: var(--green);
}

.results-glow-b {
  right: 7%;
  bottom: 18%;
  background: var(--brand);
}

.results-shell,
.gastro-shell {
  position: relative;
  z-index: 1;
}

.results-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.results-copy {
  align-self: center;
}

.results-copy h2,
.gastro-content h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.gastro-content h2 {
  font-size: clamp(3rem, 4.8vw, 6rem);
}

.results-copy > p,
.gastro-content > p {
  max-width: 680px;
  margin: clamp(24px, 3vh, 34px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.55;
}

.results-media,
.gastro-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 42vw, 680px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.results-media::before,
.gastro-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.04), rgba(2, 5, 4, 0.38)),
    linear-gradient(90deg, rgba(2, 5, 4, 0.58), transparent 48%);
}

.results-media::after,
.gastro-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  opacity: 0.8;
}

.results-media img,
.gastro-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
  transform: scale(1.015);
  transition: transform 760ms cubic-bezier(0.2, 0.86, 0.22, 1), filter 360ms ease;
}

.results-media:hover img,
.gastro-media:hover img {
  filter: saturate(1.04) contrast(1.08) brightness(0.94);
  transform: scale(1.055);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  margin-top: clamp(24px, 4.6vh, 54px);
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
  transition: transform 260ms cubic-bezier(0.2, 0.86, 0.22, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: -26% -26% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(199, 234, 34, 0.18), transparent 66%);
  opacity: 0.2;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 260ms ease;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-9px);
  border-color: rgba(199, 234, 34, 0.38);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(5, 11, 8, 0.76);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
}

.case-card:hover::before,
.case-card:focus-within::before {
  opacity: 0.78;
  transform: scale(1.08);
}

.case-card-active {
  border-color: rgba(199, 234, 34, 0.32);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(5, 11, 8, 0.76);
}

.case-topline,
.case-card h3,
.case-card p,
.case-stats,
.case-card blockquote {
  position: relative;
  z-index: 1;
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-topline span {
  color: var(--green);
}

.case-card h3 {
  max-width: 520px;
  margin: clamp(44px, 7vh, 72px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.case-card p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.5;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 0;
  padding-top: 30px;
}

.case-stats div {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.case-stats span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-stats strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.45vw, 1.52rem);
  line-height: 1;
  white-space: nowrap;
}

.case-card blockquote {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.gastro-section {
  background:
    radial-gradient(circle at 22% 28%, rgba(199, 234, 34, 0.12), transparent 29rem),
    radial-gradient(circle at 84% 76%, rgba(159, 196, 77, 0.08), transparent 28rem),
    linear-gradient(180deg, #020504 0%, #06100b 48%, #020504 100%);
}

.gastro-glow-a {
  right: 12%;
  top: 20%;
  background: var(--green);
}

.gastro-shell {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  grid-template-areas:
    "media content"
    "strip strip";
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.gastro-media {
  grid-area: media;
}

.gastro-media::before {
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.02), rgba(2, 5, 4, 0.42)),
    linear-gradient(90deg, transparent 38%, rgba(2, 5, 4, 0.64));
}

.gastro-content {
  grid-area: content;
  position: relative;
  padding: clamp(22px, 3vw, 40px) 0;
}

.gastro-logo {
  width: clamp(96px, 9vw, 132px);
  height: auto;
  display: block;
  margin: 0 0 clamp(28px, 4vh, 48px);
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.34));
}

.gastro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vh, 42px);
}

.gastro-facts article,
.workshop-strip article {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: clamp(18px, 1.8vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(5, 11, 8, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.gastro-facts article:hover,
.workshop-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 234, 34, 0.36);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(5, 11, 8, 0.78);
}

.gastro-facts span,
.workshop-strip span {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gastro-facts strong,
.workshop-strip strong {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.34vw, 1.44rem);
  line-height: 1.1;
  text-wrap: balance;
}

.gastro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(28px, 4vh, 42px);
}

.workshop-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(2px, 2vh, 16px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
}

.workshop-strip article {
  min-height: 138px;
  border: 0;
  border-radius: 0;
  background: rgba(5, 11, 8, 0.7);
}

.shop-section {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: clamp(116px, 14vh, 170px) var(--page-pad) clamp(82px, 10vh, 132px);
  background:
    radial-gradient(circle at 22% 22%, rgba(199, 234, 34, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 68%, rgba(159, 196, 77, 0.09), transparent 28rem),
    linear-gradient(180deg, #020504 0%, #06100b 48%, #020504 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.shop-section::before,
.catalog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.035) 20.12% 20.24%, transparent 20.4%),
    linear-gradient(90deg, transparent 0 55%, rgba(255, 255, 255, 0.028) 55.12% 55.24%, transparent 55.4%),
    linear-gradient(90deg, transparent 0 84%, rgba(255, 255, 255, 0.035) 84.12% 84.24%, transparent 84.4%);
  opacity: 0.48;
}

.shop-glow-a {
  left: 12%;
  top: 18%;
  background: var(--green);
}

.shop-glow-b {
  right: 9%;
  bottom: 16%;
  background: var(--brand);
}

.shop-shell,
.store-hero-shell {
  position: relative;
  z-index: 1;
}

.shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
}

.shop-heading h2,
.store-hero-copy h1,
.catalog-heading h2,
.store-proof h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.shop-heading > p,
.store-hero-copy > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.9fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(44px, 7vh, 82px);
}

.shop-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 34px);
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
  transition: transform 260ms cubic-bezier(0.2, 0.86, 0.22, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.shop-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: -28% -24% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(199, 234, 34, 0.18), transparent 66%);
  opacity: 0.2;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 260ms ease;
}

.shop-card:hover,
.shop-card:focus-visible,
.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-9px);
  border-color: rgba(199, 234, 34, 0.38);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(5, 11, 8, 0.78);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
}

.shop-card:hover::before,
.shop-card:focus-visible::before,
.catalog-card:hover::before,
.catalog-card:focus-within::before {
  opacity: 0.82;
  transform: scale(1.08);
}

.shop-card-featured {
  grid-row: span 2;
  min-height: 560px;
  border-color: rgba(199, 234, 34, 0.32);
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 234, 34, 0.18), transparent 23rem),
    linear-gradient(145deg, rgba(199, 234, 34, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(5, 11, 8, 0.76);
}

.shop-card-compact {
  grid-column: span 2;
  min-height: 220px;
}

.shop-type,
.catalog-card > span {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-card h3,
.catalog-card h3 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.shop-card:not(.shop-card-featured) h3 {
  font-size: clamp(1.8rem, 2.4vw, 3rem);
}

.shop-card p,
.catalog-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.48;
}

.shop-meta,
.catalog-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: clamp(28px, 4vh, 44px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-meta strong,
.catalog-card-footer strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 1rem;
}

.shop-meta em {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  font-style: normal;
}

.catalog-card-footer a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(28px, 5vh, 54px);
}

.store-page {
  background: #020504;
}

.store-hero {
  padding-top: clamp(130px, 16vh, 190px);
}

.store-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.72fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.store-preview {
  position: relative;
  min-height: clamp(440px, 42vw, 660px);
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 64% 28%, rgba(199, 234, 34, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 8, 0.74);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
}

.store-preview article {
  position: relative;
  z-index: 2;
}

.store-preview span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-preview strong {
  display: block;
  max-width: 420px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.98;
}

.store-preview p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.store-preview-stack {
  position: absolute;
  inset: 42px 42px auto auto;
  width: min(52%, 320px);
  aspect-ratio: 0.72;
}

.store-preview-stack span {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(8, 13, 10, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.store-preview-stack span:nth-child(1) {
  transform: translate3d(-42px, 54px, 0) rotate(-11deg);
}

.store-preview-stack span:nth-child(2) {
  transform: translate3d(-18px, 30px, 0) rotate(-5deg);
}

.store-preview-stack span:nth-child(3) {
  transform: translate3d(8px, 10px, 0) rotate(4deg);
}

.store-preview-stack span:nth-child(4) {
  transform: translate3d(32px, -14px, 0) rotate(10deg);
  background:
    linear-gradient(145deg, rgba(199, 234, 34, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(8, 13, 10, 0.86);
}

.catalog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vh, 148px) var(--page-pad);
  background: linear-gradient(180deg, #020504 0%, #06100b 52%, #020504 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.catalog-heading {
  max-width: 980px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  margin-top: clamp(40px, 6vh, 72px);
}

.catalog-card {
  min-height: 430px;
}

.store-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding: clamp(72px, 10vh, 120px) var(--page-pad);
  background: #020504;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-proof h2 {
  font-size: clamp(2.8rem, 5vw, 6rem);
}

.store-proof ul {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.store-proof li {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 11, 8, 0.72);
}

.store-proof li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(199, 234, 34, 0.44);
}

.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding: clamp(116px, 14vh, 172px) var(--page-pad) clamp(82px, 10vh, 132px);
  background:
    radial-gradient(circle at 16% 22%, rgba(199, 234, 34, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 72%, rgba(159, 196, 77, 0.1), transparent 28rem),
    linear-gradient(180deg, #020504 0%, #07120c 48%, #020504 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(255, 255, 255, 0.035) 28.1% 28.22%, transparent 28.38%),
    linear-gradient(90deg, transparent 0 64%, rgba(255, 255, 255, 0.032) 64.1% 64.22%, transparent 64.38%),
    radial-gradient(ellipse at 55% 110%, rgba(199, 234, 34, 0.09), transparent 62%);
  opacity: 0.62;
}

.contact-glow-a {
  left: 14%;
  top: 18%;
  background: var(--green);
}

.contact-glow-b {
  right: 10%;
  bottom: 12%;
  background: var(--brand);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
  gap: clamp(32px, 5.5vw, 92px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 134px;
}

.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.8vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-copy > p {
  max-width: 620px;
  margin: clamp(24px, 3vh, 34px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.qualification-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  max-width: 620px;
  margin-top: clamp(34px, 5vh, 58px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
}

.qualification-panel div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: clamp(18px, 1.8vw, 24px);
  background: rgba(5, 11, 8, 0.72);
  transition: background 220ms ease;
}

.qualification-panel div:hover {
  background: rgba(199, 234, 34, 0.09);
}

.qualification-panel span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(199, 234, 34, 0.42);
  border-radius: 16px;
  background: rgba(199, 234, 34, 0.07);
}

.qualification-panel strong {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.28vw, 1.34rem);
  line-height: 1.1;
}

.lead-form {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: -28% -22% auto auto;
  width: 360px;
  height: 360px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(199, 234, 34, 0.16), transparent 68%);
}

.form-status {
  position: relative;
  z-index: 1;
  min-height: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status:not(:empty) {
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(199, 234, 34, 0.34);
  border-radius: 18px;
  background: rgba(199, 234, 34, 0.09);
}

.lead-score {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.lead-score span {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-score strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 2rem);
  line-height: 1;
}

.lead-meter {
  overflow: hidden;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

.lead-meter span {
  width: 8%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fb338, var(--green), #d7f51e);
  box-shadow: 0 0 22px rgba(199, 234, 34, 0.34);
  transition: width 360ms cubic-bezier(0.2, 0.86, 0.22, 1);
}

.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 9px;
}

.lead-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  background: rgba(2, 5, 4, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-form textarea {
  min-height: 138px;
  padding-top: 15px;
  resize: vertical;
}

.lead-form select {
  cursor: pointer;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(2, 5, 4, 0.66);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(199, 234, 34, 0.64);
  background: rgba(2, 5, 4, 0.78);
  box-shadow: 0 0 0 4px rgba(199, 234, 34, 0.12);
}

.lead-form .field-invalid input,
.lead-form .field-invalid select,
.lead-form .field-invalid textarea {
  border-color: rgba(255, 122, 101, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 122, 101, 0.1);
}

.field-wide {
  grid-column: 1 / -1;
}

.field-error {
  color: #ffb09f;
  font-size: 0.82rem;
  line-height: 1.3;
}

.form-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.45;
}

.lead-form.is-submitting .button {
  pointer-events: none;
  opacity: 0.72;
  transform: translateY(1px);
}

.service-detail-page {
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 234, 34, 0.1), transparent 29rem),
    linear-gradient(180deg, #020504 0%, #06100b 42%, #020504 100%);
}

.service-detail {
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  padding-top: clamp(120px, 15vh, 176px);
}

.service-detail::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255, 255, 255, 0.035) 24.12% 24.24%, transparent 24.4%),
    linear-gradient(90deg, transparent 0 52%, rgba(255, 255, 255, 0.028) 52.12% 52.24%, transparent 52.4%),
    linear-gradient(90deg, transparent 0 80%, rgba(255, 255, 255, 0.035) 80.12% 80.24%, transparent 80.4%);
  opacity: 0.46;
}

.service-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 0 var(--page-pad) clamp(72px, 9vh, 118px);
  isolation: isolate;
}

.service-detail-glow-a {
  left: 10%;
  top: 2%;
  background: var(--green);
}

.service-detail-glow-b {
  right: 10%;
  bottom: 2%;
  background: var(--brand);
}

.back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(26px, 4vh, 44px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--green);
  transform: translateX(-4px);
}

.service-detail-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.4vw, 7.6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-detail-copy > p {
  max-width: 650px;
  margin: clamp(24px, 3vh, 34px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.56;
}

.service-detail-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 44vw, 720px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
}

.service-detail-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.02), rgba(2, 5, 4, 0.38)),
    linear-gradient(90deg, rgba(2, 5, 4, 0.48), transparent 52%);
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.06) brightness(0.9);
  transform: scale(1.01);
  transition: transform 760ms cubic-bezier(0.2, 0.86, 0.22, 1), filter 360ms ease;
}

.service-detail-media:hover img {
  filter: saturate(1.04) contrast(1.08) brightness(0.98);
  transform: scale(1.055);
}

.service-detail-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(340px, 0.82fr);
  gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--page-pad) clamp(72px, 10vh, 126px);
}

.detail-block,
.service-reference,
.service-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.3);
}

.detail-block {
  min-height: 430px;
  padding: clamp(24px, 2.4vw, 36px);
}

.detail-block > span,
.service-reference span,
.service-cta .section-kicker {
  color: var(--green);
}

.detail-block h2,
.service-cta h2 {
  max-width: 620px;
  margin: clamp(40px, 7vh, 74px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.detail-block ul {
  display: grid;
  gap: 12px;
  margin: clamp(28px, 4vh, 42px) 0 0;
  padding: 0;
  list-style: none;
}

.detail-block li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.45;
}

.detail-block li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.6em;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(199, 234, 34, 0.44);
}

.service-reference {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.service-reference img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06) brightness(0.86);
}

.service-reference div {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 2vw, 30px);
}

.service-reference strong {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.7vw, 1.76rem);
  line-height: 1.12;
  text-wrap: balance;
}

.service-cta {
  width: calc(100% - (var(--page-pad) * 2));
  margin: 0 auto clamp(76px, 10vh, 132px);
  padding: clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 80% 24%, rgba(199, 234, 34, 0.16), transparent 28rem),
    linear-gradient(145deg, rgba(199, 234, 34, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 8, 0.78);
}

.service-cta h2 {
  margin-top: 18px;
  max-width: 1020px;
}

.service-cta .button {
  margin-top: clamp(28px, 4vh, 44px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

:focus-visible {
  outline: 3px solid rgba(199, 234, 34, 0.86);
  outline-offset: 4px;
}

@keyframes enterDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes enterUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes detailPanelEnter {
  0% {
    transform: translateY(12px) scale(0.986);
    box-shadow: 0 18px 62px rgba(0, 0, 0, 0.46);
  }
  62% {
    transform: translateY(-4px) scale(1.006);
    box-shadow: 0 38px 92px rgba(0, 0, 0, 0.52);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow);
  }
}

@keyframes detailContentIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes detailSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  18% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes radarPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.28);
    opacity: 0.64;
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes ringFill {
  to {
    stroke-dashoffset: 60.8;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes coreqFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(1.2deg);
  }
}

@keyframes coreqVisualEnter {
  from {
    opacity: 0;
    transform: translate3d(24px, 34px, 0) scale(0.95) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(-1deg);
  }
}

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

  .header-actions {
    display: none;
  }

  .hero-copy {
    width: min(58vw, 650px);
  }

  .hero-cards {
    width: min(310px, 30vw);
  }

  .coreq-experience {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .dimension-detail {
    min-height: 520px;
  }

  .services-stage {
    grid-template-columns: 1fr;
  }

  .service-orbit-panel {
    min-height: 300px;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    align-items: center;
  }

  .service-orbit-panel p {
    max-width: 520px;
    text-align: left;
  }

  .results-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  }

  .case-stats {
    grid-template-columns: 1fr;
  }

  .case-stats div {
    min-height: 76px;
  }

  .gastro-shell {
    grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1fr);
  }

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

  .shop-card-featured,
  .shop-card-compact {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .contact-shell {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
    gap: 42px;
  }

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

  .service-detail-hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  }

  .service-detail-body {
    grid-template-columns: 1fr 1fr;
  }

  .service-reference {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) 1fr;
    min-height: 0;
  }

  .service-reference img {
    height: 100%;
    min-height: 300px;
  }
}

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

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: var(--page-pad);
    display: none;
    width: min(330px, calc(100vw - 36px));
    min-height: 0;
    padding: 12px;
    border-radius: 24px;
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 14px;
  }

  .hero-copy {
    width: min(68vw, 620px);
    margin-top: clamp(90px, 13vh, 142px);
  }

  .hero-cards {
    right: 24px;
    top: auto;
    bottom: 26px;
    width: min(300px, 38vw);
  }

  .card-growth,
  .card-impact {
    display: none;
  }

  .card-coreq {
    min-height: 0;
  }

  .proof-row {
    display: none;
  }

  .coreq-section {
    padding-top: 132px;
  }

  .coreq-intro {
    max-width: 940px;
  }

  .coreq-visual-option {
    position: relative;
    top: auto;
    right: auto;
    width: min(720px, 88vw);
    margin: 42px auto 0;
  }

  .coreq-experience {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .dimension-detail {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .dimension-detail h3 {
    margin-top: 56px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-heading > p {
    max-width: 720px;
  }

  .service-path {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card ul {
    margin-top: 42px;
  }

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

  .results-section,
  .gastro-section {
    min-height: auto;
  }

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

  .results-copy > p,
  .gastro-content > p {
    max-width: 760px;
  }

  .results-media,
  .gastro-media {
    min-height: clamp(360px, 58vw, 540px);
    border-radius: 28px;
  }

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

  .case-card {
    min-height: 0;
  }

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

  .gastro-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "strip";
  }

  .gastro-content {
    padding: 0;
  }

  .gastro-logo {
    width: 110px;
  }

  .shop-section {
    min-height: auto;
  }

  .shop-heading,
  .store-hero-shell,
  .store-proof {
    grid-template-columns: 1fr;
  }

  .shop-heading > p,
  .store-hero-copy > p {
    max-width: 760px;
  }

  .store-preview {
    min-height: clamp(360px, 58vw, 540px);
  }

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

  .contact-section {
    min-height: auto;
  }

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

  .contact-copy {
    position: relative;
    top: auto;
  }

  .contact-copy > p {
    max-width: 760px;
  }

  .qualification-panel {
    max-width: none;
  }

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

  .service-detail {
    padding-top: 126px;
  }

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

  .service-detail-media {
    min-height: clamp(360px, 58vw, 540px);
    border-radius: 28px;
  }

  .service-detail-body {
    grid-template-columns: 1fr;
  }

  .detail-block {
    min-height: 0;
  }

  .service-reference {
    grid-column: auto;
    display: flex;
  }

  .service-reference img {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .shade {
    background:
      linear-gradient(90deg, rgba(2, 5, 4, 0.92), rgba(2, 5, 4, 0.55), rgba(2, 5, 4, 0.55)),
      linear-gradient(0deg, rgba(2, 5, 4, 0.92), transparent 58%, rgba(2, 5, 4, 0.38));
  }

  .site-header {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .brand {
    width: min(58vw, 210px);
  }

  .hero-copy {
    width: auto;
    margin: auto var(--page-pad) 0;
    padding-top: 40px;
  }

  .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-copy p {
    max-width: 520px;
    font-size: 1.08rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    border-radius: 13px;
  }

  .hero-cards {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 26px var(--page-pad) 22px;
  }

  .card-coreq {
    padding: 18px;
  }

  .coreq-grid {
    gap: 7px;
  }

  .coreq-grid span {
    border-radius: 6px;
  }

  .coreq-section {
    min-height: auto;
    padding: 112px var(--page-pad) 78px;
  }

  .coreq-visual-option {
    width: min(108vw, 520px);
    margin-top: 34px;
    margin-left: -6vw;
  }

  .coreq-visual-option img {
    transform: perspective(900px) rotateX(1deg) rotateY(-4deg);
  }

  .coreq-intro h2 {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

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

  .dimension-card {
    min-height: 190px;
  }

  .dimension-card span {
    margin-bottom: 34px;
  }

  .detail-metrics {
    grid-template-columns: 1fr;
  }

  .detail-cta {
    width: 100%;
  }

  .services-section {
    min-height: auto;
    padding: 108px var(--page-pad) 76px;
  }

  .services-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .services-stage {
    margin-top: 42px;
  }

  .service-card {
    border-radius: 22px;
    padding: 22px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-top: 30px;
    border-radius: 17px;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .service-card ul {
    margin-top: 28px;
  }

  .service-orbit-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-orbit-panel p {
    text-align: center;
  }

  .service-radar {
    max-width: 260px;
  }

  .focus-strip {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .focus-strip a {
    min-height: 122px;
  }

  .results-section,
  .gastro-section {
    padding: 108px var(--page-pad) 76px;
  }

  .results-copy h2,
  .gastro-content h2 {
    font-size: clamp(2.55rem, 11vw, 4.8rem);
  }

  .results-media,
  .gastro-media {
    min-height: 330px;
    border-radius: 22px;
  }

  .results-media::after,
  .gastro-media::after {
    inset: 12px;
    border-radius: 17px;
  }

  .case-card {
    border-radius: 22px;
    padding: 22px;
  }

  .case-card h3 {
    margin-top: 42px;
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .case-stats,
  .gastro-facts,
  .workshop-strip {
    grid-template-columns: 1fr;
  }

  .case-stats strong {
    white-space: normal;
  }

  .gastro-actions {
    flex-direction: column;
  }

  .workshop-strip {
    border-radius: 22px;
  }

  .workshop-strip article {
    min-height: 116px;
  }

  .shop-section,
  .catalog-section {
    padding: 108px var(--page-pad) 76px;
  }

  .shop-heading h2,
  .store-hero-copy h1,
  .catalog-heading h2,
  .store-proof h2 {
    font-size: clamp(2.55rem, 11vw, 4.8rem);
  }

  .shop-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .shop-card,
  .catalog-card,
  .store-preview,
  .store-proof ul {
    border-radius: 22px;
  }

  .shop-card,
  .catalog-card {
    min-height: 300px;
    padding: 22px;
  }

  .shop-card h3,
  .catalog-card h3 {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .shop-meta,
  .catalog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-actions {
    flex-direction: column;
  }

  .store-preview {
    min-height: 360px;
    padding: 22px;
  }

  .store-preview-stack {
    width: min(56%, 220px);
    inset: 28px 28px auto auto;
  }

  .store-proof {
    padding: 76px var(--page-pad);
  }

  .contact-section {
    padding: 108px var(--page-pad) 76px;
  }

  .contact-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4.8rem);
  }

  .qualification-panel,
  .lead-form {
    border-radius: 22px;
  }

  .qualification-panel div {
    grid-template-columns: 48px 1fr;
    min-height: 84px;
  }

  .qualification-panel span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .lead-form {
    padding: 18px;
  }

  .lead-score,
  .form-grid,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 54px;
    font-size: 16px;
  }

  .form-footer .button {
    width: 100%;
  }

  .service-detail {
    padding-top: 108px;
  }

  .service-detail-hero {
    padding-bottom: 58px;
  }

  .service-detail-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .service-detail-media {
    min-height: 330px;
    border-radius: 22px;
  }

  .service-detail-media::after {
    inset: 12px;
    border-radius: 17px;
  }

  .service-detail-body {
    padding-bottom: 58px;
  }

  .detail-block,
  .service-reference,
  .service-cta {
    border-radius: 22px;
  }

  .detail-block h2,
  .service-cta h2 {
    margin-top: 32px;
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .service-reference img {
    height: 260px;
  }

  .service-cta {
    width: calc(100% - (var(--page-pad) * 2));
  }
}

@media (max-width: 430px) {
  :root {
    --page-pad: 16px;
  }

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

  .hero-copy p {
    font-size: 1rem;
  }

  .case-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  .site-header {
    padding-top: 28px;
  }

  .hero-copy {
    margin-top: 150px;
  }

  .proof-row {
    bottom: 34px;
  }

  .hero-cards {
    top: 15vh;
    gap: 14px;
  }

  .metric-card {
    min-height: 148px;
    padding: 20px;
  }

  .card-coreq {
    min-height: 254px;
  }
}

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

/* WordPress application layer */
.main-nav .mg-menu {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .mg-menu li {
  margin: 0;
}

.brand .custom-logo {
  width: 100%;
  height: auto;
}

.mg-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mg-empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.mg-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 36px;
  align-items: end;
  padding: 56px var(--page-pad);
  color: rgba(255, 255, 255, 0.64);
  background: #020504;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mg-footer img {
  width: min(250px, 70vw);
  height: auto;
}

.mg-footer p {
  margin: 14px 0 0;
}

.mg-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mg-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.mg-content-shell,
.mg-commerce-shell {
  width: min(1400px, calc(100% - (var(--page-pad) * 2)));
  min-height: 70dvh;
  margin: 0 auto;
  padding: 160px 0 96px;
}

.mg-entry,
.mg-commerce-shell {
  color: rgba(255, 255, 255, 0.84);
}

.mg-entry h1,
.mg-commerce-shell h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.98;
}

.mg-commerce {
  min-height: 100dvh;
  background: linear-gradient(180deg, #020504, #07120c 48%, #020504);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.woocommerce ul.products li.product a img {
  border-radius: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: #fff;
  font-family: var(--font-display);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--green);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071007;
  background: var(--green);
  border-radius: 12px;
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.16);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.admin-bar .site-header {
  top: 32px;
}

.case-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.case-detail,
.mg-archive {
  min-height: 100dvh;
  color: rgba(255, 255, 255, 0.82);
  background: #020504;
}

.case-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(1540px, calc(100% - (var(--page-pad) * 2)));
  min-height: 88dvh;
  margin: 0 auto;
  padding: 170px 0 90px;
}

.case-detail-copy h1,
.mg-archive-header h1 {
  max-width: 900px;
  margin: 18px 0 24px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
}

.case-detail-copy > p:last-of-type,
.mg-archive-header > p:last-child {
  max-width: 680px;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.65;
}

.case-detail-media {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.case-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.case-detail-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1280px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.mg-archive {
  padding: 170px var(--page-pad) 110px;
}

.mg-archive-header,
.mg-archive-grid,
.mg-archive .navigation {
  width: min(1480px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.mg-archive-header {
  margin-bottom: 64px;
}

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

.mg-archive-card {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}

.mg-archive-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 221, 0, 0.48);
  background: rgba(184, 221, 0, 0.07);
}

.mg-archive-card figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
}

.mg-archive-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.mg-archive-card:hover figure img {
  transform: scale(1.035);
}

.mg-archive-card > div {
  padding: 28px;
}

.mg-archive-card h2 {
  margin: 10px 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.6rem);
  line-height: 1.04;
}

.mg-archive-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
}

@media (max-width: 980px) {
  .main-nav .mg-menu {
    display: grid;
  }

  .mg-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .case-detail-hero,
  .case-detail-body,
  .mg-archive-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-hero {
    padding-top: 150px;
  }

  .case-detail-media,
  .case-detail-media img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .admin-bar .site-header {
    top: 46px;
  }
}
