:root {
  --ink: #040019;
  --panel: #0c0828;
  --lime: #ceff2d;
  --white: #f8f8fb;
  --muted: #a8a5bd;
  --line: rgba(248, 248, 251, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
.about-panel {
  scrollbar-color: rgba(92, 94, 108, .82) rgba(4, 0, 25, .55);
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
.about-panel::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
.about-panel::-webkit-scrollbar-track {
  background: rgba(4, 0, 25, .55);
}

html::-webkit-scrollbar-thumb,
.about-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(4, 0, 25, .55);
  border-radius: 999px;
  background: rgba(92, 94, 108, .82);
}

html::-webkit-scrollbar-thumb:hover,
.about-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(135, 138, 153, .9);
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: -12%;
  content: "";
  opacity: .4;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(206, 255, 45, .7) 0 1px, transparent 2px), radial-gradient(circle, rgba(206, 255, 45, .4) 0 1px, transparent 2px), linear-gradient(128deg, transparent 0 42%, rgba(206, 255, 45, .18) 46%, transparent 51%), linear-gradient(58deg, transparent 0 49%, rgba(206, 255, 45, .1) 50%, transparent 52%);
  background-size: 128px 128px, 207px 207px, 100% 100%, 100% 100%;
  background-position: 0 0, 42px 64px, 0 0, 0 0;
  animation: field-drift 16s var(--ease) infinite alternate;
}

body::after {
  position: fixed;
  z-index: -1;
  top: 8%;
  left: 2%;
  width: 20rem;
  height: 20rem;
  content: "";
  opacity: .1;
  pointer-events: none;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(130px);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), 1440px);
  margin: 16px auto;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  overflow: hidden;
  border: 1px solid rgba(248, 248, 251, .24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(21, 16, 57, .52), rgba(6, 2, 27, .62) 58%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.brand-mark i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
  transform: skew(-18deg);
}

.brand-mark i:nth-child(1) {
  height: 9px;
}

.brand-mark i:nth-child(2) {
  height: 15px;
}

.brand-mark i:nth-child(3) {
  height: 12px;
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  margin-left: auto;
  margin-right: clamp(1rem, 3vw, 3.5rem);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color .25s ease;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--lime);
}

.header-action,
.lime-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.header-action {
  padding: 13px 16px;
  border-radius: 999px;
}

.lime-button {
  width: fit-content;
  padding: 16px 18px 16px 20px;
}

.header-action span,
.lime-button span {
  font-size: 1.1rem;
}

.header-action:hover,
.lime-button:hover {
  box-shadow: 0 10px 35px rgba(206, 255, 45, .2);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: 'Sora', 'Manrope', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

h3 {
  font-family: 'Sora', 'Manrope', Arial, sans-serif;
  letter-spacing: -.04em;
}

em {
  color: var(--lime);
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 4rem;
  min-height: 700px;
  align-items: center;
  padding: 5rem 0 6rem;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow,
.section-label {
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.8rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(206, 255, 45, .1);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-lead {
  max-width: 590px;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.text-link {
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: .8rem;
  color: var(--lime);
  font-size: 1.1rem;
}

.text-link:hover {
  color: var(--lime);
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-meta span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: .55rem;
  content: "";
  border-radius: 50%;
  background: var(--lime);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.visual-grid {
  position: absolute;
  inset: 5% -20% 5% -20%;
  opacity: .2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black 25%, transparent 72%);
  animation: grid-drift 16s linear infinite;
}

.logo-stage {
  position: absolute;
  top: calc(50% - 35px);
  left: 50%;
  width: min(100%, 590px);
  transform: translate(-50%, -50%) perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  animation: logo-float 6s var(--ease) infinite;
  transition: transform .45s var(--ease);
}

.business-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(206, 255, 45, .35));
}

.logo-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(206, 255, 45, .3);
  border-radius: 50%;
  pointer-events: none;
}

.logo-orbit span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(206, 255, 45, .7);
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 112%;
  height: 64%;
  transform: translate(-50%, -50%) rotate(17deg);
  animation: orbit-spin 14s linear infinite;
}

.orbit-two {
  width: 102%;
  height: 78%;
  border-color: rgba(248, 248, 251, .18);
  transform: translate(-50%, -50%) rotate(-28deg);
  animation: orbit-spin-reverse 19s linear infinite;
}

.orbit-two span {
  width: 4px;
  height: 4px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(248, 248, 251, .5);
}

.orbit-three {
  width: 88%;
  height: 92%;
  border-style: dashed;
  border-color: rgba(206, 255, 45, .15);
  transform: translate(-50%, -50%) rotate(62deg);
  animation: orbit-spin 26s linear infinite;
}

.orbit-three span {
  top: 0;
  left: 50%;
  width: 3px;
  height: 3px;
}

.logo-scan {
  position: absolute;
  z-index: 3;
  top: 15%;
  left: 12%;
  width: 76%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  pointer-events: none;
  animation: scan 5s ease-in-out infinite;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 6%;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.manifesto,
.pillars,
.capabilities,
.audience-section,
.method,
.case-section,
.closing {
  border-top: 1px solid var(--line);
}

.manifesto {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 4rem;
  padding: 8rem 0;
}

.manifesto h2 {
  max-width: 850px;
}

.manifesto p:not(.section-label) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.manifesto-video {
  display: block;
  width: min(100%, 900px);
  max-width: 900px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(206, 255, 45, .4);
  border-radius: 24px;
  background: rgba(0, 0, 0, .28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  aspect-ratio: 16 / 9;
}

.manifesto-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pillars,
.capabilities,
.audience-section,
.method {
  padding: 8rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin: 1.3rem 0 0;
}

.section-count,
.section-note {
  color: var(--muted);
  font-size: .9rem;
}

.section-note {
  max-width: 330px;
  margin: 0;
  line-height: 1.5;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pillar-card {
  position: relative;
  min-height: 320px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}

.pillar-card:hover {
  border-color: var(--lime);
  background: rgba(206, 255, 45, .06);
  transform: translateY(-8px);
}

.pillar-featured {
  color: var(--ink);
  background: var(--lime);
}

.card-index {
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
}

.pillar-featured .card-index {
  color: var(--ink);
}

.pillar-glyph {
  margin: 5rem 0 1.5rem;
  color: var(--lime);
  font-size: 2.5rem;
}

.pillar-featured .pillar-glyph {
  color: var(--ink);
}

.pillar-card h3 {
  margin: 0 0 .5rem;
  font-size: 2rem;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.pillar-featured p {
  color: rgba(4, 0, 25, .78);
}

.card-arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  color: var(--lime);
  font-size: 1.2rem;
}

.pillar-featured .card-arrow {
  color: var(--ink);
}

.services {
  padding: 8rem 0;
}

.services-country {
  display: grid;
  gap: .5rem;
  min-width: min(230px, 100%);
}

.services-country label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.services-country select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem 1rem;
  background: rgba(12, 8, 40, .86);
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.services-country select:focus {
  border-color: var(--lime);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(206, 255, 45, .1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.plan-card:hover {
  border-color: var(--lime);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  font-size: 1.15rem;
}

.plan-card h3 {
  margin: 1.1rem 0 .7rem;
  font-size: 1.6rem;
}

.plan-subtitle {
  margin: 0 0 .8rem;
  color: var(--lime);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.plan-card p:not(.plan-subtitle):not(.plan-price) {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.plan-price {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--lime);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-diagnostic {
  position: relative;
  background: linear-gradient(160deg, rgba(206, 255, 45, .18), rgba(12, 8, 40, .92));
  border-color: rgba(206, 255, 45, .7);
  box-shadow: 0 18px 50px rgba(206, 255, 45, .18), inset 0 0 0 1px rgba(255, 255, 255, .05);
  transform: translateY(-10px) scale(1.01);
}

.plan-diagnostic::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  content: "DESTACADO";
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.plan-diagnostic:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 26px 60px rgba(206, 255, 45, .22), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.plan-diagnostic .plan-badge {
  background: rgba(206, 255, 45, .22);
  box-shadow: 0 0 18px rgba(206, 255, 45, .2);
}

.plan-diagnostic .plan-subtitle {
  color: #f7f9dc;
  font-size: 1rem;
  font-weight: 800;
}

.plan-diagnostic .plan-price {
  color: var(--lime);
  font-size: 1.05rem;
}

.plan-diagnostic .plan-duration {
  margin-top: .35rem;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-diagnostic p:not(.plan-subtitle):not(.plan-price):not(.plan-duration) {
  color: rgba(255, 255, 255, .82);
}

.plan-green {
  background: linear-gradient(160deg, rgba(206, 255, 45, .12), rgba(255, 255, 255, .03));
  border-color: rgba(206, 255, 45, .28);
}

.plan-yellow {
  background: linear-gradient(160deg, rgba(255, 214, 69, .12), rgba(255, 255, 255, .03));
  border-color: rgba(255, 214, 69, .28);
}

.plan-blue {
  background: linear-gradient(160deg, rgba(72, 155, 255, .12), rgba(255, 255, 255, .03));
  border-color: rgba(72, 155, 255, .28);
}

.plan-cyan {
  background: linear-gradient(160deg, rgba(72, 230, 255, .12), rgba(255, 255, 255, .03));
  border-color: rgba(72, 230, 255, .28);
}

.plan-purple {
  background: linear-gradient(160deg, rgba(170, 114, 255, .12), rgba(255, 255, 255, .03));
  border-color: rgba(170, 114, 255, .28);
}

.plan-orange {
  background: linear-gradient(160deg, rgba(255, 150, 64, .12), rgba(255, 255, 255, .03));
  border-color: rgba(255, 150, 64, .28);
}

.plan-slate {
  background: linear-gradient(160deg, rgba(120, 134, 160, .12), rgba(255, 255, 255, .03));
  border-color: rgba(120, 134, 160, .28);
}

.plan-dark {
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border-color: rgba(255, 255, 255, .15);
}

.plan-featured-plan {
  border-color: rgba(206, 255, 45, .7);
  box-shadow: 0 0 0 1px rgba(206, 255, 45, .2), 0 30px 60px rgba(206, 255, 45, .12);
  transform: translateY(-4px);
}

.plan-featured-plan:hover {
  box-shadow: 0 0 0 1px rgba(206, 255, 45, .3), 0 30px 70px rgba(206, 255, 45, .18);
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin-top: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(248, 248, 251, .22);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.plan-button span {
  color: var(--lime);
  font-size: 1rem;
}

.plan-button:hover {
  border-color: var(--lime);
  background: rgba(206, 255, 45, .08);
  transform: translateY(-2px);
}

.plan-button-featured {
  border-color: rgba(206, 255, 45, .55);
  background: rgba(206, 255, 45, .12);
}

.plan-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}

.capability {
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  transition: transform .35s var(--ease), border-color .35s ease;
}

.capability:hover {
  border-color: var(--lime);
  transform: translateY(-6px);
}

.capability-wide {
  grid-row: span 2;
  min-height: 532px;
  background: linear-gradient(145deg, rgba(206, 255, 45, .14), rgba(255, 255, 255, .025));
}

.capability>span {
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
}

.capability h3 {
  margin: 4rem 0 .7rem;
  font-size: 1.7rem;
}

.capability p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.mini-flow {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 5rem;
  color: var(--lime);
  font-size: .7rem;
}

.mini-flow b {
  padding: .6rem .7rem;
  border: 1px solid rgba(206, 255, 45, .4);
  font-weight: 800;
}

.mini-flow i {
  font-style: normal;
}

.bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 70px;
  margin-top: 2.5rem;
}

.bars i {
  width: 16%;
  height: 25%;
  background: var(--lime);
  animation: bars 2.2s ease-in-out infinite alternate;
}

.bars i:nth-child(2) {
  height: 50%;
  animation-delay: .2s;
}

.bars i:nth-child(3) {
  height: 38%;
  animation-delay: .4s;
}

.bars i:nth-child(4) {
  height: 72%;
  animation-delay: .6s;
}

.bars i:nth-child(5) {
  height: 100%;
  animation-delay: .8s;
}

.audience-section {
  padding: 8rem 0;
}

.audience-section>h2 {
  margin: 1.3rem 0 3.5rem;
}

.audience-panels {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
}

.audience-panel {
  min-height: 330px;
  padding: 1.8rem;
  border: 1px solid var(--line);
}

.audience-panel>span {
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.audience-panel h3 {
  margin: 5rem 0 .7rem;
  font-size: 2rem;
}

.audience-panel p {
  max-width: 390px;
  color: var(--muted);
  font-size: 1rem;
}

.audience-panel a {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.audience-panel a b {
  color: var(--lime);
}

.business-panel {
  color: var(--ink);
  background: var(--lime);
}

.business-panel p,
.business-panel a {
  color: rgba(4, 0, 25, .8);
}

.business-panel>span,
.business-panel a b {
  color: var(--ink);
}

.political-panel {
  background: radial-gradient(circle at 80% 20%, rgba(206, 255, 45, .14), transparent 40%);
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.track-line {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.method-track article {
  position: relative;
  padding-top: 2.5rem;
}

.method-track article::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: var(--panel);
}

.method-track span {
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
}

.method-track h3 {
  margin: 1rem 0 .35rem;
  font-size: 1.1rem;
}

.method-track p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.method-track article {
  cursor: default;
  transition: transform .35s var(--ease);
}

.method-track article::before {
  transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
}

.method-track article span,
.method-track article h3,
.method-track article p {
  transition: color .35s ease;
}

.method-track article:hover {
  transform: translateY(-8px);
}

.method-track article:hover::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(206, 255, 45, .12), 0 0 22px rgba(206, 255, 45, .6);
  transform: scale(1.35);
}

.method-track article:hover span,
.method-track article:hover h3 {
  color: var(--lime);
}

.method-track article:hover p {
  color: var(--white);
}

.case-section {
  position: relative;
  display: grid;
  grid-template-columns: .4fr 1fr .7fr;
  gap: 3rem;
  align-items: center;
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(206, 255, 45, .12), transparent 56%);
}

.case-index {
  display: grid;
  gap: 1rem;
  color: var(--lime);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.case-content h2 {
  margin: 1.2rem 0;
}

.case-content>p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.1rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}

.case-tags span {
  padding: .6rem .8rem;
  border: 1px solid var(--line);
  color: var(--lime);
  font-size: .7rem;
}

.case-orb {
  display: grid;
  place-items: center;
  width: min(100%, 280px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(206, 255, 45, .35);
  border-radius: 50%;
  color: var(--lime);
  animation: orb-breathe 4s ease-in-out infinite;
}

.case-orb span {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.case-orb small {
  margin-top: -5rem;
  color: var(--muted);
  font-size: .55rem;
  letter-spacing: .14em;
}

.orb-ring {
  position: absolute;
  width: 220px;
  height: 90px;
  border: 1px solid rgba(206, 255, 45, .3);
  border-radius: 50%;
  transform: rotate(-35deg);
  animation: orb-spin 9s linear infinite;
}

.closing {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  padding: 8rem 0;
}

.closing h2 {
  margin: 1.3rem 0 1.7rem;
}

.closing-copy>p:not(.section-label):not(.closing-note) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.1rem;
}

.closing-note {
  color: var(--lime);
  font-size: .85rem;
}

.contact-form {
  display: grid;
  gap: 1.3rem;
}

.field-row {
  display: grid;
  gap: .5rem;
}

.field-row label,
.newsletter-form label {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-input input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 1rem;
  padding: .65rem 0;
  transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter-input input:focus {
  border-color: var(--lime);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.newsletter-input input::placeholder {
  color: rgba(168, 165, 189, .7);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--lime);
  font-size: .85rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .6fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: .4rem;
}

.footer-brand strong {
  color: var(--white);
  font-size: 2rem;
}

.footer-brand span {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.footer-brand p,
.newsletter-form p {
  margin: 0;
  font-size: .85rem;
}

.footer-links {
  display: grid;
  gap: .7rem;
}

.footer-links a {
  font-size: .85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.newsletter-form {
  display: grid;
  gap: .8rem;
}

.newsletter-input {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.newsletter-input input {
  border: 0;
}

.newsletter-input button {
  border: 0;
  color: var(--lime);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
}

.footer-bottom b {
  color: var(--lime);
}

.contact-form select {
  border: 1px solid rgba(248, 248, 251, .24);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, .62);
  cursor: pointer;
}

.contact-form select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(206, 255, 45, .1);
}

.newsletter-captcha {
  min-height: 0;
  overflow: hidden;
}

.about-trigger {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
}

.about-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear .45s, opacity .45s ease;
}

.about-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.about-modal-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(4, 0, 25, .38);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.about-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  max-height: min(86vh, 780px);
  overflow: auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(206, 255, 45, .45);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(12, 8, 40, .76), rgba(4, 0, 25, .8));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 0 0 1px rgba(248, 248, 251, .05), 0 30px 100px rgba(0, 0, 0, .65), 0 0 80px rgba(206, 255, 45, .12);
  transform: translateY(35px) scale(.94) rotateX(8deg);
  opacity: 0;
  animation: none;
}

.about-modal.is-open .about-panel {
  animation: modal-arrival .65s var(--ease) forwards;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, .25);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.modal-close:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: rotate(90deg);
}

.about-panel>.eyebrow {
  margin-bottom: 1rem;
}

.about-panel h2 {
  max-width: 600px;
  margin: 0 0 2rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.about-content {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

.about-content p {
  max-width: 700px;
}

.about-founder {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  margin: .5rem auto 2rem;
  text-align: center;
}

.about-founder img {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(206, 255, 45, .55);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(206, 255, 45, .06), 0 18px 45px rgba(0, 0, 0, .35);
}

.about-founder-copy span {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-founder-copy h3 {
  margin: .25rem 0 0;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.about-founder-quote {
  max-width: 620px !important;
  margin: 1.8rem auto 0;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.about-founder-quote span {
  color: var(--lime);
}

.about-content strong {
  color: var(--white);
}

.about-question {
  display: grid;
  gap: .8rem;
  margin: 2.2rem 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(206, 255, 45, .25);
  border-left: 3px solid var(--lime);
  border-radius: 14px;
  background: rgba(206, 255, 45, .07);
}

.about-question span,
.about-pillars>div>span {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-question strong {
  font-family: 'Sora', 'Manrope', Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.about-question p {
  margin: 0;
  font-size: .9rem;
}

.about-motto {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 2.5rem 0;
}

.about-pillars>div {
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.about-pillars h3 {
  margin: 2.2rem 0 .45rem;
  color: var(--white);
  font-size: 1.25rem;
}

.about-pillars p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.45;
}

.about-signature {
  display: grid;
  gap: .2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-signature strong {
  font-size: 1.1rem;
}

.about-signature span {
  color: var(--lime);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-signature em {
  margin-top: .4rem;
  color: var(--muted);
  font-size: .85rem;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modal-arrival {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(.94) rotateX(8deg);
  }

  65% {
    opacity: 1;
    transform: translateY(-8px) scale(1.01) rotateX(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@media (max-width: 700px) {
  .about-modal {
    padding: .75rem;
  }

  .about-panel {
    max-height: 90vh;
    padding: 2.5rem 1.3rem 1.5rem;
  }

  .about-panel h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-pillars>div {
    min-height: auto;
  }

  .about-pillars h3 {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-modal.is-open .about-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

main .lime-button,
main .text-link,
main .pillar-card,
main .capability,
main .audience-panel,
main .case-tags span,
main .contact-form input,
main .contact-form textarea,
main .contact-form select {
  border-radius: 12px;
}

main .contact-form input,
main .contact-form textarea {
  border: 1px solid var(--line);
  padding: .75rem 1rem;
}

main .contact-form input:focus,
main .contact-form textarea:focus {
  border-color: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(206, 255, 45, 0);
  }
}

@keyframes logo-float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px) rotate(-1deg);
  }
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(377deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-388deg);
  }
}

@keyframes scan {

  0%,
  18% {
    top: 15%;
    opacity: 0;
  }

  35%,
  60% {
    opacity: .55;
  }

  80%,
  100% {
    top: 83%;
    opacity: 0;
  }
}

@keyframes rain {
  to {
    background-position: 0 230px, 50px 340px;
  }
}

@keyframes grid-drift {
  to {
    transform: translate(48px, 48px);
  }
}

@keyframes bars {
  to {
    transform: scaleY(.55);
  }
}

@keyframes orb-breathe {
  50% {
    box-shadow: 0 0 55px rgba(206, 255, 45, .14);
    transform: rotate(4deg);
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    gap: 1rem;
    margin-right: 1rem;
    font-size: .65rem;
  }

  .header-action {
    padding: 11px 12px;
    font-size: .62rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 400px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-wide {
    grid-row: auto;
    min-height: 300px;
  }

  .method-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem 1rem;
  }

  .track-line {
    display: none;
  }

  .case-section {
    grid-template-columns: .35fr 1fr;
  }

  .case-orb {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
    max-width: 420px;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 20px;
  }

  .site-header {
    height: 76px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav.is-open {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 1.4rem;
    border: 1px solid var(--line);
    background: var(--panel);
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: .7rem 1rem;
    margin-top: 3rem;
  }

  .hero-visual {
    min-height: 320px;
  }

  .logo-stage {
    top: 50%;
  }

  .signal-strip {
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .signal-strip span {
    flex: 0 0 auto;
  }

  .signal-strip i {
    flex: 0 0 auto;
  }

  .manifesto,
  .pillars,
  .capabilities,
  .audience-section,
  .method,
  .case-section,
  .closing {
    padding: 5rem 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 2.5rem;
  }

  .section-heading h2,
  .manifesto h2,
  .audience-section>h2,
  .closing h2 {
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }

  .pillar-grid,
  .capability-grid,
  .audience-panels,
  .closing,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 250px;
  }

  .pillar-glyph {
    margin-top: 3rem;
  }

  .capability-wide {
    min-height: 300px;
  }

  .method-track {
    grid-template-columns: 1fr 1fr;
  }

  .case-section {
    display: block;
  }

  .case-content {
    margin-top: 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .footer-bottom {
    grid-column: auto;
  }

  .plan-card {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

html::before {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 12px rgba(206, 255, 45, .5);
}

.capability,
.audience-panel {
  transform: perspective(900px) rotateX(var(--card-y, 0deg)) rotateY(var(--card-x, 0deg));
  transition: transform .35s var(--ease), border-color .35s ease;
}

@keyframes field-drift {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1);
    background-position: 0 0, 42px 64px, 0 0, 0 0;
  }

  100% {
    transform: translate3d(2%, 2%, 0) scale(1.06);
    background-position: 64px 96px, -48px 18px, 2% 1%, -1% 2%;
  }
}

@media (max-width: 700px) {
  body::before {
    opacity: .28;
  }

  .page-shell {
    background: rgba(9, 5, 35, .68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.4rem);
  }
}

body::before {
  opacity: .68;
}

body::after {
  opacity: .18;
}

.page-shell {
  background: linear-gradient(145deg, rgba(21, 16, 57, .3), rgba(6, 2, 27, .4) 58%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 700px) {
  body::before {
    opacity: .52;
  }

  .page-shell {
    background: rgba(9, 5, 35, .48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

.hero-lead {
  max-width: 540px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.5;
}

.section-heading h2,
.manifesto h2,
.audience-section>h2,
.closing h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.pillar-card h3 {
  font-size: 1.75rem;
}

.capability h3,
.audience-panel h3 {
  font-size: 1.5rem;
}

.section-note,
.manifesto p:not(.section-label),
.closing-copy>p:not(.section-label):not(.closing-note) {
  font-size: .98rem;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }

  .section-heading h2,
  .manifesto h2,
  .audience-section>h2,
  .closing h2 {
    font-size: clamp(2.5rem, 10.5vw, 4rem);
  }
}

.logo-stage {
  top: calc(50% - 88px);
}

@media (max-width: 700px) {
  .logo-stage {
    top: calc(50% - 34px);
  }
}

.brand {
  gap: 10px;
  color: var(--white);
  font-family: 'Sora', 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 27px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(206, 255, 45, .18));
  animation: brand-arrival .8s var(--ease) both;
  transition: filter .3s ease, transform .3s var(--ease);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 8px rgba(206, 255, 45, .55));
  transform: scale(1.06) rotate(-2deg);
}

@keyframes brand-arrival {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(.88);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.newsletter-input {
  align-items: center;
  gap: .75rem;
  border-bottom: 0;
}

.newsletter-input input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
}

.newsletter-input button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 116px;
  min-height: 44px;
  padding: .75rem 1rem;
  border: 1px solid var(--lime);
  border-radius: 10px;
  color: var(--ink);
  background: var(--lime);
  font-family: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.newsletter-input button:hover {
  box-shadow: 0 8px 24px rgba(206, 255, 45, .24);
  transform: translateY(-2px);
}

.newsletter-input button:disabled {
  cursor: wait;
  opacity: .6;
  transform: none;
}

@media (max-width: 420px) {
  .newsletter-input {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-input button {
    width: 100%;
  }
}

.logo-stage {
  transition: none;
}

body::before {
  animation-timing-function: linear;
}

@keyframes logo-float {

  0%,
  100% {
    transform: translate(-50%, -50%) perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0) rotate(0deg);
  }

  50% {
    transform: translate(-50%, -50%) perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-10px) rotate(-1deg);
  }
}

body::after {
  top: -8%;
  left: -6%;
  width: min(70vw, 58rem);
  height: min(60vw, 48rem);
  opacity: .22;
  background:
    radial-gradient(ellipse at 35% 42%, rgba(206, 255, 45, .7) 0 7%, transparent 38%),
    linear-gradient(135deg, rgba(206, 255, 45, .32), rgba(48, 255, 181, .18) 42%, transparent 72%);
  border-radius: 62% 38% 68% 32% / 42% 57% 43% 58%;
  filter: blur(42px) saturate(1.25);
  transform: rotate(-18deg) skewX(-8deg);
  animation: liquid-flow 18s ease-in-out infinite alternate;
}

@keyframes liquid-flow {
  0% {
    border-radius: 62% 38% 68% 32% / 42% 57% 43% 58%;
    transform: rotate(-18deg) skewX(-8deg) translate3d(-2%, -1%, 0) scale(.96);
  }

  100% {
    border-radius: 34% 66% 42% 58% / 61% 36% 64% 39%;
    transform: rotate(-8deg) skewX(7deg) translate3d(8%, 5%, 0) scale(1.08);
  }
}

.page-shell {
  background:
    radial-gradient(ellipse at 12% 15%, rgba(206, 255, 45, .16), transparent 31%),
    radial-gradient(ellipse at 82% 42%, rgba(48, 255, 181, .09), transparent 36%),
    linear-gradient(145deg, rgba(21, 16, 57, .26), rgba(6, 2, 27, .38) 58%);
  background-size: 135% 135%, 150% 150%, 100% 100%;
  background-position: 0% 0%, 100% 0%, 0 0;
  animation: shell-liquid 20s ease-in-out infinite alternate;
}

@keyframes shell-liquid {
  0% {
    background-position: 0% 0%, 100% 0%, 0 0;
  }

  100% {
    background-position: 24% 20%, 66% 100%, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  body::before,
  body::after,
  .page-shell,
  .logo-stage {
    animation: none !important;
  }

  body::after {
    transform: rotate(-18deg) skewX(-8deg) translate3d(-2%, -1%, 0) scale(.96);
  }

  .page-shell {
    background-position: 0% 0%, 100% 0%, 0 0;
  }

}

.logo-scan {
  display: none;
}

.logo-stage {
  animation-duration: 12s;
}

.orbit-one {
  animation-duration: 28s;
}

.orbit-two {
  animation-duration: 38s;
}

.orbit-three {
  animation-duration: 52s;
}

.logo-scan {
  animation-duration: 8s;
}

.logo-stage {
  animation: none !important;
}

/* Plan cards use a narrow, vertical proportion on larger screens. */
.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-card {
  min-height: 500px;
}

.manifesto,
.pillars,
.services,
.capabilities,
.audience-section,
.method,
.case-section,
.closing,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card {
    min-height: 400px;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero {
    gap: 2rem;
    padding-top: 3.5rem;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.6rem);
    line-height: .98;
    letter-spacing: -.07em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .hero-lead,
  .hero-lead-secondary {
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    gap: 1rem;
  }

  .hero-actions .lime-button,
  .hero-actions .text-link {
    max-width: 100%;
  }

  .hero-actions .lime-button {
    gap: 1rem;
  }
}

@media (max-width: 700px) {

  .hero,
  .hero-visual {
    min-width: 0;
    max-width: 100%;
  }

  .hero-visual {
    overflow: hidden;
  }

  .logo-stage {
    width: min(100%, 22rem);
    max-width: calc(100vw - 3rem);
  }

  .business-logo {
    max-width: 100%;
    height: auto;
  }
}

#ia>.section-note,
#ia>.hero-actions {
  display: none;
}

.hero-actions>a.text-link {
  display: none;
}

.services-country,
.services-grid .plan-card:nth-child(n + 2) {
  display: none;
}

.services-grid {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.plan-diagnostic .plan-price {
  display: none;
}

.plan-diagnostic h3 {
  font-size: 0;
}

.plan-diagnostic h3::after {
  content: "Diagnóstico Empresarial";
  font-size: 1.6rem;
}

.plan-diagnostic .plan-subtitle {
  font-size: 0;
}

.plan-diagnostic .plan-subtitle::after {
  content: "Evaluamos tu operación y definimos oportunidades de mejora";
  font-size: 1rem;
}

.closing,
.closing-copy,
.contact-form,
.field-row,
.newsletter-form,
.newsletter-input {
  min-width: 0;
}

.contact-form {
  width: 100%;
  max-width: 620px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-width: 0;
  max-width: 100%;
}

.contact-form textarea {
  min-height: 7rem;
  line-height: 1.5;
}

.contact-form .lime-button {
  width: 100%;
  justify-content: center;
}

.newsletter-input input {
  min-width: 0;
}

@media (max-width: 700px) {
  .closing {
    gap: 3rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .field-row {
    gap: .4rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: .85rem .9rem;
    font-size: 1rem;
  }

  .contact-form select {
    min-height: 3rem;
  }

  .contact-form .lime-button {
    min-height: 3.2rem;
  }
}

@media (max-width: 420px) {
  .closing {
    padding-right: .25rem;
    padding-left: .25rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
  }
}

/* ==================== FORM VALIDATION STYLES ==================== */
.field-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.field-row label {
  margin: 0;
  line-height: 1.25;
}

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.field-error:empty {
  display: none;
  min-height: 0;
  margin: 0;
}

.field-row.has-error input,
.field-row.has-error textarea,
.field-row.has-error select {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18) !important;
}

.field-row.is-valid input,
.field-row.is-valid textarea,
.field-row.is-valid select {
  border-color: var(--lime) !important;
}

.form-status {
  min-height: 0;
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  display: block;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.3);
  padding: 0.75rem 1rem;
}

.form-status.is-success {
  display: block;
  color: var(--lime);
  background: rgba(206, 255, 45, 0.12);
  border: 1px solid rgba(206, 255, 45, 0.3);
  padding: 0.75rem 1rem;
}