:root {
  --bg: #050505;
  --bg-soft: #0b0d0a;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(238, 255, 178, 0.16);
  --border-strong: rgba(210, 255, 75, 0.42);
  --text: #fbfff2;
  --muted: #aab09b;
  --muted-strong: #dce6c5;
  --accent: #d9ff3f;
  --accent-two: #62ff8e;
  --accent-dark: #223408;
  --danger: #ff8b9a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius: 28px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Figtree", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 255, 63, 0.88);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #101400;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 255, 63, 0.1), transparent 20rem),
    radial-gradient(circle at 82% 26%, rgba(98, 255, 142, 0.08), transparent 27rem),
    linear-gradient(180deg, #050505 0%, #070807 52%, #020302 100%);
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(217, 255, 63, 0.8) 1px, transparent 1.4px);
  background-position: 0 0, 50px 80px;
  background-size: 170px 170px, 230px 230px;
  animation: starDrift 24s linear infinite;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.42;
  animation: ambientPulse 8s ease-in-out infinite;
}

.ambient-one {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  left: 50%;
  background: rgba(217, 255, 63, 0.16);
  transform: translateX(-50%);
}

.ambient-two {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: 34rem;
  background: rgba(98, 255, 142, 0.1);
  animation-delay: -3s;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(245, 255, 224, 0.9);
  box-shadow: 0 0 14px rgba(217, 255, 63, 0.65);
  animation: twinkle 4s ease-in-out infinite;
}

.star-a { top: 18%; left: 12%; }
.star-b { top: 12%; right: 22%; animation-delay: -1s; }
.star-c { top: 46%; left: 18%; animation-delay: -2s; }
.star-d { top: 56%; right: 12%; animation-delay: -0.7s; }
.star-e { top: 78%; left: 68%; animation-delay: -2.8s; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.nav {
  width: min(100% - 40px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 255, 63, 0.3);
  border-radius: 999px;
  background: var(--accent);
  color: #101500;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(217, 255, 63, 0.25);
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.nav-menu a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(217, 255, 63, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.55s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  left: 110%;
  opacity: 1;
}

.btn-primary {
  color: #101500;
  background: var(--accent);
  box-shadow: 0 0 34px rgba(217, 255, 63, 0.24), 0 18px 50px rgba(0, 0, 0, 0.28);
}

.btn-secondary,
.btn-whatsapp {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
}

.btn-secondary:hover,
.btn-whatsapp:hover {
  border-color: var(--border-strong);
  background: rgba(217, 255, 63, 0.09);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 146px 0 46px;
}

.hero-inner {
  width: min(100% - 40px, var(--container));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 28px 70px;
}

.hero-copy {
  max-width: 760px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 4px 13px 4px 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: 0 0 40px rgba(217, 255, 63, 0.08);
}

.hero-pill span {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #101500;
  font-size: 0.78rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(4.25rem, 8vw, 7.4rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.portrait-glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 46%, rgba(217, 255, 63, 0.5), transparent 0 22%, rgba(98, 255, 142, 0.28) 37%, transparent 63%),
    radial-gradient(circle, rgba(217, 255, 63, 0.18), transparent 66%);
  filter: blur(2px);
  box-shadow: 0 0 110px rgba(217, 255, 63, 0.18);
  animation: glowBreath 5.8s ease-in-out infinite;
  transform: translate3d(calc(var(--tilt-x, 0px) * -0.35), calc(var(--tilt-y, 0px) * -0.35), 0);
  z-index: -2;
}

.orbit {
  position: absolute;
  width: min(540px, 92vw);
  height: min(540px, 92vw);
  top: 36px;
  border-radius: 999px;
  border: 1px solid rgba(217, 255, 63, 0.15);
  mask-image: linear-gradient(140deg, black 12%, transparent 62%);
  z-index: -1;
}

.orbit-one {
  animation: slowSpin 24s linear infinite;
}

.orbit-two {
  width: min(450px, 80vw);
  height: min(450px, 80vw);
  top: 82px;
  border-color: rgba(98, 255, 142, 0.13);
  animation: slowSpin 18s linear infinite reverse;
}

.hero-visual img {
  width: min(430px, 88vw);
  height: auto;
  max-height: 660px;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 36px 44px rgba(0, 0, 0, 0.5));
  mix-blend-mode: normal;
  transform: translate3d(calc(var(--tilt-x, 0px) * 0.22), calc(18px + var(--tilt-y, 0px) * 0.22), 0);
  transition: transform 0.18s ease-out;
}

.trust-strip {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.trust-strip span {
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(217, 255, 63, 0.9);
  vertical-align: 1px;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.track-record {
  padding-top: 56px;
}

.market-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 80% 14%, rgba(217, 255, 63, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.42);
  box-shadow: var(--shadow), 0 0 80px rgba(217, 255, 63, 0.07);
  backdrop-filter: blur(18px);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(217, 255, 63, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 255, 63, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 60% 40%, black, transparent 76%);
  pointer-events: none;
}

.market-top,
.chart-panel,
.benchmark-row,
.market-note {
  position: relative;
}

.market-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.market-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.market-main {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.market-main > span {
  color: var(--accent);
  font-size: clamp(4.4rem, 9vw, 8rem);
  line-height: 0.8;
  font-weight: 900;
  text-shadow: 0 0 38px rgba(217, 255, 63, 0.25);
}

.market-main strong,
.market-main small {
  display: block;
}

.market-main strong {
  color: var(--text);
  font-size: 1.1rem;
}

.market-main small {
  color: var(--muted);
  font-weight: 800;
}

.market-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.market-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(217, 255, 63, 0.16);
  border-radius: 999px;
  background: rgba(217, 255, 63, 0.07);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.chart-panel {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background: radial-gradient(circle at 70% 32%, rgba(217, 255, 63, 0.1), transparent 42%), rgba(0, 0, 0, 0.34);
}

.track-chart {
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-area {
  fill: url("#chartFill");
  opacity: 0;
  animation: chartFade 1s ease 0.35s forwards;
}

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 12px rgba(217, 255, 63, 0.55));
  animation: drawChart 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart-point circle {
  fill: #050505;
  stroke: var(--accent);
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(217, 255, 63, 0.5));
}

.chart-point text {
  opacity: 0;
  fill: var(--text);
  font-size: 18px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.8);
  stroke-width: 5px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chart-point:hover text,
.chart-point:focus text {
  opacity: 1;
  transform: translateY(-4px);
}

.chart-axis text {
  fill: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.benchmark-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.benchmark-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.benchmark-row span,
.benchmark-row strong {
  display: block;
}

.benchmark-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.benchmark-row strong {
  margin-top: 6px;
  color: var(--text);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.benchmark-row div:first-child strong {
  color: var(--accent);
}

.market-note {
  margin: 16px 0 0;
  color: #8f9782;
  font-size: 0.86rem;
}

.method-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(217, 255, 63, 0.12);
  box-shadow: var(--shadow);
}

.method-step {
  position: relative;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)), #070807;
}

.method-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 58%;
  background: radial-gradient(circle, rgba(217, 255, 63, 0.2), transparent 64%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.method-step:hover::after {
  opacity: 1;
  transform: translateY(-10px);
}

.method-step span {
  display: block;
  margin-bottom: 48px;
  color: rgba(217, 255, 63, 0.82);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.8;
  font-weight: 850;
}

.method-step p {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}

.service-tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.service-tab {
  min-width: 116px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-tab.is-active {
  background: var(--accent);
  color: #101500;
  box-shadow: 0 0 26px rgba(217, 255, 63, 0.22);
}

.service-panel {
  animation: panelIn 0.36s ease both;
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 670px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)), rgba(0, 0, 0, 0.35);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 255, 63, 0.18), transparent 42%);
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.pricing-card:hover::before,
.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: rgba(217, 255, 63, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 44px rgba(217, 255, 63, 0.08);
}

.pricing-card h3,
.pricing-card p,
.pricing-card ul,
.pricing-card a,
.pricing-card .popular {
  position: relative;
}

.pricing-card h3 {
  max-width: 320px;
  min-height: 58px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.price {
  margin: 12px 0 16px;
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 900;
}

.pricing-card > p:not(.price) {
  min-height: 104px;
  color: var(--muted-strong);
}

.popular {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(217, 255, 63, 0.22);
  border-radius: 999px;
  background: rgba(217, 255, 63, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
}

.pricing-card li {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(217, 255, 63, 0.68);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.services-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.96rem;
  font-weight: 750;
}

.service-tile,
.about-copy,
.contact-shell,
.faq-list details {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.service-tile {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 24% 18%, rgba(217, 255, 63, 0.22), transparent 36%);
  transition: opacity 0.24s ease;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36), 0 0 28px rgba(217, 255, 63, 0.1);
}

.service-tile:hover::before {
  opacity: 1;
}

.service-tile.large {
  grid-row: span 2;
  min-height: 516px;
}

.service-tile.large h3 {
  max-width: 360px;
  margin-top: 140px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.service-tile.accent {
  border-color: rgba(217, 255, 63, 0.35);
  background:
    radial-gradient(circle at 80% 10%, rgba(217, 255, 63, 0.26), transparent 42%),
    linear-gradient(135deg, rgba(217, 255, 63, 0.13), rgba(255, 255, 255, 0.045));
}

.service-tile.accent a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 850;
}

.tile-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(217, 255, 63, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(217, 255, 63, 0.08);
  box-shadow: 0 0 24px rgba(217, 255, 63, 0.12);
}

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

.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

.about-copy {
  padding: 34px;
  border-radius: var(--radius);
}

.about-copy p {
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.about-copy li {
  color: var(--muted-strong);
  font-weight: 750;
}

.about-copy li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(217, 255, 63, 0.8);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: 20px;
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(217, 255, 63, 0.09);
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.contact {
  padding-bottom: 120px;
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: 44px;
  overflow: hidden;
  padding: 42px;
  border-radius: calc(var(--radius) + 8px);
}

.contact-shell::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  right: -9rem;
  top: -13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 255, 63, 0.24), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.contact-copy {
  position: relative;
}

.contact-copy h2 {
  max-width: 560px;
  margin-bottom: 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
}

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

label {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--text);
  padding: 14px 16px;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

select {
  min-height: 56px;
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(217, 255, 63, 0.08), transparent 60%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 18px) 50%,
    calc(100% - 22px) 50%;
  background-size: 7px 7px, 7px 7px, 30px 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}

select:hover {
  border-color: rgba(217, 255, 63, 0.34);
  background-color: rgba(0, 0, 0, 0.5);
}

select option {
  background: #080a08;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-strong);
  background-color: rgba(0, 0, 0, 0.56);
  box-shadow: 0 0 0 4px rgba(217, 255, 63, 0.08);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.privacy-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  box-shadow: none;
}

.privacy-row input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-error {
  color: var(--danger);
}

.form-note.is-success {
  color: var(--accent-two);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  background: rgba(0, 0, 0, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--text);
}

.legal {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 4px 0 0;
  color: #8f9782;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  transition: opacity 0.75s ease, filter 0.75s ease, transform 0.75s ease;
}

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

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-80px, 60px, 0); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes ambientPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.12); opacity: 0.48; }
}

@keyframes glowBreath {
  0%, 100% {
    transform: translate3d(calc(var(--tilt-x, 0px) * -0.35), calc(var(--tilt-y, 0px) * -0.35), 0) scale(0.98);
    opacity: 0.78;
  }
  50% {
    transform: translate3d(calc(var(--tilt-x, 0px) * -0.35), calc(var(--tilt-y, 0px) * -0.35), 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

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

@keyframes chartFade {
  to { opacity: 1; }
}

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

@media (max-width: 1000px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    justify-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(8, 9, 7, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

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

  .nav-menu a {
    padding: 13px 14px;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-copy {
    justify-self: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-visual img {
    width: min(390px, 88vw);
    height: auto;
  }

  .method-line,
  .services-showcase,
  .pricing-grid,
  .about-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .market-top {
    grid-template-columns: 1fr;
  }

  .market-badges {
    justify-content: flex-start;
  }

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

  .pricing-card > p:not(.price),
  .pricing-card h3 {
    min-height: 0;
  }

  .service-tile.large {
    grid-row: span 1;
    min-height: 290px;
  }

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

@media (max-width: 640px) {
  .container,
  .nav,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .brand span:last-child {
    max-width: 180px;
    line-height: 1.1;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-pill {
    margin-bottom: 22px;
    font-size: 0.82rem;
  }

  h1 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.65rem, 11vw, 3.25rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-subtitle {
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    width: min(100%, 300px);
  }

  .hero-visual {
    min-height: 470px;
    overflow: hidden;
  }

  .portrait-glow,
  .orbit {
    top: 44px;
  }

  .hero-visual img {
    width: min(330px, 88vw);
    height: auto;
    max-width: 100%;
    transform: translate3d(calc(var(--tilt-x, 0px) * 0.22), calc(12px + var(--tilt-y, 0px) * 0.22), 0);
  }

  .method-step,
  .service-tile,
  .pricing-card,
  .about-copy,
  .contact-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .market-card {
    padding: 18px;
    border-radius: 24px;
  }

  .market-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .market-main > span {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .chart-panel,
  .track-chart {
    min-height: 260px;
  }

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

  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .service-tab {
    min-width: 0;
  }

  .method-step {
    min-height: 220px;
  }

  .method-step span {
    margin-bottom: 48px;
  }

  .contact-shell {
    gap: 28px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
