:root {
  --bg: #ffffff;
  --font-main: "Inter", sans-serif;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #0d1110;
  --surface-soft: rgba(6, 20, 15, 0.05);
  --surface-dark: #0f1412;
  --surface-dark-raised: #151c19;
  --surface-dark-soft: rgba(255, 255, 255, 0.055);
  --text: #0c1110;
  --text-muted: rgba(12, 17, 16, 0.64);
  --text-dark: #0c1110;
  --text-muted-dark: rgba(12, 17, 16, 0.64);
  --text-on-dark: rgba(255, 255, 255, 0.96);
  --text-on-dark-muted: rgba(255, 255, 255, 0.76);
  --line: rgba(12, 17, 16, 0.08);
  --line-dark: rgba(12, 12, 12, 0.1);
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --accent-rgb: 0, 214, 114;
  --accent: rgb(var(--accent-rgb));
  --accent-deep: #00bd65;
  --white: #ffffff;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shadow: 0 30px 90px rgba(7, 14, 11, 0.15);
  --shadow-soft: 0 18px 45px rgba(7, 14, 11, 0.08);
  --container: min(1180px, calc(100vw - 32px));
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dark);
  font-family: var(--font-main);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-is-open {
  overflow: hidden;
}

@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select,
  html.has-custom-cursor summary,
  html.has-custom-cursor label {
    cursor: none !important;
  }
}

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

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

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

.page-noise {
  display: none;
}

.cursor-dot {
  --cursor-x: -100px;
  --cursor-y: -100px;
  --cursor-scale: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.96);
  box-shadow:
    0 0 0 8px rgba(var(--accent-rgb), 0.08),
    0 0 28px rgba(var(--accent-rgb), 0.35);
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%)
    scale(var(--cursor-scale));
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: opacity 180ms ease, box-shadow 180ms ease;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-pressed {
  --cursor-scale: 0.82;
  box-shadow:
    0 0 0 10px rgba(var(--accent-rgb), 0.1),
    0 0 34px rgba(var(--accent-rgb), 0.4);
}

.panel-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--accent-rgb), 0.1) 0%, transparent 22%),
    linear-gradient(180deg, #111714 0%, #0b0f0d 100%);
  color: var(--white);
}

.panel-shell--maintenance {
  display: grid;
  place-items: center;
  padding: 24px;
}

.maintenance-screen,
.panel-page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.maintenance-card,
.panel-card {
  width: min(760px, 100%);
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)),
    rgba(11, 15, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.panel-card--wide {
  width: min(880px, 100%);
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-header h1,
.maintenance-card h1 {
  margin: 16px 0 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.panel-header p,
.maintenance-card p {
  margin: 18px 0 0;
  max-width: 48ch;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
}

.panel-block {
  margin-top: 28px;
}

.panel-form {
  display: grid;
  gap: 18px;
}

.panel-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}

.panel-form input,
.panel-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  outline: none;
}

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

.panel-form input:focus,
.panel-form textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.5);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.panel-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 26px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill--live {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.24);
  color: var(--accent);
}

.status-pill--off {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.panel-meta,
.panel-feedback,
.panel-note {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.panel-feedback,
.panel-note {
  margin: 0;
}

.toggle-field {
  display: flex !important;
  align-items: center;
  gap: 14px;
}

.toggle-field input {
  width: 20px;
  height: 20px;
  margin: 0;
}

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

.status-item,
.status-preview {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-item strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--white);
}

.status-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.status-preview {
  margin-top: 16px;
}

.status-preview h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.status-preview p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.is-hidden {
  display: none !important;
}

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

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

.section--light {
  background: #ffffff;
  color: var(--text-dark);
}

.section-glow {
  display: none;
}

.section-glow--hero {
  display: none;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1180px, calc(100vw - 24px));
  margin: 16px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 17, 16, 0.06);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(7, 14, 11, 0.06);
  overflow: visible;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

body.nav-is-open .site-header {
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 18px 40px rgba(7, 14, 11, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: -0.03em;
  min-width: 0;
}

.brand-text {
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav a {
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-dark);
  background: rgba(12, 17, 16, 0.05);
}

.site-nav a.is-current {
  color: var(--text-dark);
  background: rgba(12, 17, 16, 0.06);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(12, 17, 16, 0.1);
  background: rgba(12, 17, 16, 0.03);
  color: var(--text-dark);
  place-items: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(12, 17, 16, 0.06);
  border-color: rgba(12, 17, 16, 0.16);
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle__icon span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    width 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle__icon span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.nav-toggle__icon span:nth-child(2) {
  width: 15px;
  transform: translate(-50%, 0);
}

.nav-toggle__icon span:nth-child(3) {
  width: 18px;
  transform: translate(-50%, 7px);
}

.nav-toggle.is-open {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.24);
}

.nav-toggle.is-open .nav-toggle__icon {
  transform: rotate(-90deg);
}

.nav-toggle.is-open .nav-toggle__icon span:first-child {
  width: 19px;
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0.4);
}

.nav-toggle.is-open .nav-toggle__icon span:last-child {
  width: 19px;
  transform: translate(-50%, 0) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15;
  border: 0;
  padding: 0;
  background: rgba(7, 14, 11, 0.34);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #0b0b0b;
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.22);
}

.button--secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid rgba(12, 17, 16, 0.1);
}

.button--ghost {
  min-height: 44px;
  padding: 0 18px;
  background: #f6f7f7;
  color: var(--text-dark);
  border: 1px solid rgba(12, 17, 16, 0.08);
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
}

.hero {
  padding-top: 86px;
  background: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(12, 17, 16, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 17, 16, 0.032) 1px, transparent 1px),
    repeating-linear-gradient(
      135deg,
      transparent 0 58px,
      rgba(var(--accent-rgb), 0.08) 58px 60px,
      transparent 60px 148px
    );
  background-size: 120px 120px, 120px 120px, auto;
  opacity: 0.78;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background:
    radial-gradient(circle at 18% 76%, transparent 0 158px, rgba(12, 17, 16, 0.08) 158px 160px, transparent 160px 100%),
    radial-gradient(circle at 82% 28%, transparent 0 214px, rgba(var(--accent-rgb), 0.14) 214px 216px, transparent 216px 100%),
    linear-gradient(115deg, transparent 0 39%, rgba(12, 17, 16, 0.05) 39.3% 39.6%, transparent 39.9%),
    linear-gradient(115deg, transparent 0 68%, rgba(var(--accent-rgb), 0.12) 68.3% 68.7%, transparent 69%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #1a1a1a;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  max-width: 11ch;
}

.hero-copy h1 span {
  color: var(--accent);
}

.section-heading h2 span {
  color: var(--accent);
}

.lead,
.section-heading p,
.focus-card p,
.faq-item p,
.contact-copy p,
.step-card p,
.pillar-card p {
  line-height: 1.7;
}

.lead {
  max-width: 54ch;
  margin: 24px 0 0;
  color: var(--text-muted-dark);
  font-size: 1.04rem;
}

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

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  perspective: 1800px;
}

.hero-device-stack {
  --surface-rotate-x: 0deg;
  --surface-rotate-y: 0deg;
  --surface-scroll-rotate-x: 0deg;
  --surface-scroll-rotate-y: 0deg;
  position: relative;
  width: min(100%, 620px);
  min-height: 700px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--surface-scroll-rotate-x) + var(--surface-rotate-x)))
    rotateY(calc(var(--surface-scroll-rotate-y) + var(--surface-rotate-y)));
  transition: transform 280ms ease;
  will-change: transform;
}

.hero-device-stack::before {
  content: "";
  position: absolute;
  bottom: 56px;
  width: min(78%, 420px);
  height: 62px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 17, 16, 0.24) 0 24%, rgba(12, 17, 16, 0.12) 24% 44%, transparent 72%);
  filter: blur(20px);
  opacity: 0.46;
  transform: translateY(0) scaleX(0.86);
  transition: transform 280ms ease, opacity 280ms ease;
  z-index: 0;
}

.hero-device-stack::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 500px;
  left: 78px;
  top: 74px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.22) 0%,
    rgba(var(--accent-rgb), 0.08) 46%,
    rgba(var(--accent-rgb), 0) 100%
  );
  filter: blur(10px);
  opacity: 0.48;
  transform: rotate(-18deg) translateZ(-40px);
  z-index: 0;
}

.hero-phone {
  --phone-rotate-x-offset: 0deg;
  --phone-rotate-y-offset: 0deg;
  --phone-shift-x: 0px;
  --phone-shift-y: 0px;
  --phone-scroll-rotate-x-offset: 0deg;
  --phone-scroll-rotate-y-offset: 0deg;
  --phone-scroll-rotate-z-offset: 0deg;
  --phone-scroll-shift-x: 0px;
  --phone-scroll-shift-y: 0px;
  position: relative;
  width: min(100%, 360px);
  height: 690px;
  border-radius: 54px;
  background: linear-gradient(180deg, #181d1b, #050606);
  border: 1px solid rgba(12, 17, 16, 0.12);
  box-shadow: 0 30px 80px rgba(7, 14, 11, 0.18);
  padding: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    translate3d(
      calc(var(--phone-shift-x) + var(--phone-scroll-shift-x)),
      calc(var(--phone-shift-y) + var(--phone-scroll-shift-y)),
      28px
    )
    rotateX(calc(8deg + var(--phone-scroll-rotate-x-offset) + var(--phone-rotate-x-offset)))
    rotateY(calc(18deg + var(--phone-scroll-rotate-y-offset) + var(--phone-rotate-y-offset)))
    rotateZ(calc(11deg + var(--phone-scroll-rotate-z-offset)));
  transition: transform 280ms ease, box-shadow 280ms ease;
  will-change: transform;
}

.hero-phone--front {
  z-index: 2;
}

.hero-phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  height: 30px;
  border-radius: 20px;
  background: #040505;
  z-index: 3;
}

.hero-phone__screen {
  height: 100%;
  border-radius: 42px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.hero-phone__screen--image {
  background: #0a0d0b;
}

.hero-phone__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-phone__screen--image::after {
  content: "";
  position: absolute;
  top: -6%;
  left: -22%;
  width: 42%;
  height: 120%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.08) 38%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(-18deg) translateZ(32px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.45;
}

.hero-phone__cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0c1110;
  border: 1px solid rgba(12, 17, 16, 0.08);
  box-shadow: 0 12px 24px rgba(7, 14, 11, 0.1);
  font-size: 0.92rem;
  font-weight: 800;
}

.ticker {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(12, 17, 16, 0.08);
  border-bottom: 1px solid rgba(12, 17, 16, 0.08);
  background: #ffffff;
}

.ticker__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(12, 17, 16, 0.08);
  white-space: nowrap;
  font-weight: 700;
  box-shadow: none;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 840px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.section-heading p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
  max-width: 70ch;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pillar-card,
.step-card,
.focus-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: none;
}

.pillar-card__index,
.step-card span,
.focus-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.14);
  color: #006f3b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-card h3,
.step-card h3,
.focus-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-main);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pillar-card p,
.step-card p,
.focus-card p {
  margin: 0;
  color: var(--text-muted-dark);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 32px;
  align-items: start;
}

.services-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
}

.services,
.focus,
.contact {
  background-color: #0b0f0d;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(var(--accent-rgb), 0.07) 0%, transparent 30%),
    linear-gradient(180deg, #111714 0%, #0b0f0d 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  background-position: center center, center center, center center, center center;
  color: var(--white);
}

.services .section-heading p,
.focus .section-heading p,
.contact .contact-copy p,
.contact .form-feedback,
.service-card p,
.focus-card p:last-child,
.contact-chip span {
  color: var(--text-on-dark-muted);
}

.services .section-heading h2,
.focus .section-heading h2,
.contact .contact-copy h2,
.services .service-card,
.services .service-card strong,
.focus .focus-card,
.focus .focus-card h3,
.focus .focus-card p,
.contact .contact-form,
.contact .contact-form label,
.contact .contact-chip strong {
  color: var(--white);
}

.services-heading {
  position: sticky;
  top: 120px;
}

.services-heading .button {
  margin-top: 22px;
}

.services-overview-card {
  padding: 32px;
  border-radius: 32px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  color: var(--text-on-dark);
}

.services-overview-card h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.services-overview-card__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.services-overview-card__list li {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface-dark-soft);
  border: 1px solid var(--line-on-dark);
  color: var(--text-on-dark-muted);
  line-height: 1.68;
}

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

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

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

.service-card {
  display: grid;
  align-content: start;
  width: 100%;
  padding: 26px;
  border-radius: 30px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  text-align: left;
  color: var(--text-on-dark);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

button.service-card {
  cursor: pointer;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.service-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-main);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--text-on-dark-muted);
  line-height: 1.72;
}

.service-card--detailed {
  gap: 0;
}

.service-card__points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card__points li {
  position: relative;
  padding-left: 16px;
  color: var(--text-on-dark-muted);
  line-height: 1.62;
}

.service-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

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

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.focus-card {
  padding: 30px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.focus-card h3,
.focus-card p {
  color: var(--text-on-dark);
}

.focus-card p:last-child {
  color: var(--text-on-dark-muted);
  line-height: 1.74;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

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

.faq-item {
  padding: 4px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 800;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 24px;
  color: var(--text-muted-dark);
}

.contact {
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.contact-copy {
  display: block;
}

.contact-copy__body p {
  margin: 18px 0 0;
  max-width: 46ch;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 26px;
  margin-top: 28px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  text-decoration: none;
  color: inherit;
  opacity: 0.88;
  transition: transform 180ms ease, opacity 180ms ease;
}

.contact-chip:hover {
  transform: translateY(-1px) scale(1.06);
  opacity: 1;
}

.contact-chip__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
}

.contact-chip__label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.contact-chip__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contact-chip--facebook .contact-chip__icon {
  color: #1877f2;
}

.contact-chip--gmail .contact-chip__icon,
.contact-chip--whatsapp .contact-chip__icon {
  color: var(--white);
}

.contact-chip--instagram .contact-chip__icon {
  color: var(--white);
}

.contact-chip--whatsapp .contact-chip__icon {
  color: #25d366;
}

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

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 34px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 17px 18px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(var(--accent-rgb), 0.65);
  background: rgba(255, 255, 255, 0.07);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  line-height: 1.5;
}

.site-footer {
  padding: 28px 0 46px;
  background: #0b0f0d;
}

.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  text-align: center;
}

.page-hero {
  padding-top: 74px;
  background: #ffffff;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: center;
}

.page-hero__copy h1 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero__copy p {
  margin: 0;
}

.page-hero__lead {
  max-width: 60ch;
  margin-top: 22px;
  color: var(--text-muted-dark);
  font-size: 1.06rem;
  line-height: 1.75;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero__card {
  padding: 32px;
  border-radius: 32px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  color: var(--white);
}

.page-hero__card p,
.page-hero__card li {
  color: var(--text-on-dark-muted);
}

.page-hero__card h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-hero__card p {
  margin: 18px 0 0;
  line-height: 1.76;
}

.page-hero__card > p:first-child {
  margin-top: 0;
}

.page-hero__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.page-hero__list li {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface-dark-soft);
  border: 1px solid var(--line-on-dark);
  line-height: 1.68;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

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

.page-hero__stat {
  padding: 20px;
  border-radius: 22px;
  background: var(--surface-dark-soft);
  border: 1px solid var(--line-on-dark);
}

.page-hero__stat strong {
  display: block;
  font-family: var(--font-main);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.page-hero__stat span {
  display: block;
  margin-top: 10px;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

.clients-showcase {
  display: grid;
  gap: 28px;
}

.clients-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.clients-showcase__intro h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.clients-showcase__intro p:last-child {
  margin: 18px 0 0;
  color: var(--text-muted-dark);
  line-height: 1.75;
  max-width: 64ch;
}

.clients-showcase__note {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  color: var(--white);
}

.clients-showcase__note strong {
  display: block;
  font-family: var(--font-main);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.clients-showcase__note p {
  margin: 16px 0 0;
  color: var(--text-on-dark-muted);
  line-height: 1.76;
}

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

.client-card {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(12, 17, 16, 0.08);
  color: #111614;
}

.client-card__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.client-card h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 1.45rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.client-card__meta,
.client-card__services {
  margin: 0;
  line-height: 1.65;
}

.client-card__meta {
  color: rgba(12, 17, 16, 0.68);
  font-weight: 700;
}

.client-card__services {
  color: rgba(12, 17, 16, 0.6);
}

.services .section-heading,
.focus .section-heading,
.contact .contact-copy,
.service-card,
.focus-card,
.contact-chip,
.contact-form {
  color: var(--text-on-dark);
}

.services .section-heading p,
.focus .section-heading p,
.contact .contact-copy p,
.contact .contact-chip span,
.service-card p,
.focus-card p,
.contact-chip strong {
  color: var(--text-on-dark-muted);
}

.services .section-heading h2,
.focus .section-heading h2,
.contact .contact-copy h2,
.service-card strong,
.focus-card h3 {
  color: var(--white);
}

.focus-card__tag,
.service-card span {
  color: var(--accent);
}

.section--dark {
  background-color: #0b0f0d;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(var(--accent-rgb), 0.07) 0%, transparent 28%),
    linear-gradient(180deg, #111714 0%, #0b0f0d 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  background-position: center center, center center, center center, center center;
  color: var(--white);
}

.section--dark .section-heading p,
.section--dark .pillar-card p,
.section--dark .step-card p {
  color: var(--text-on-dark-muted);
}

.section--dark .pillar-card,
.section--dark .step-card {
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  color: var(--white);
}

.section--dark .pillar-card__index,
.section--dark .step-card span {
  background: rgba(var(--accent-rgb), 0.14);
  color: #00d672;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: var(--surface-dark-raised);
  border: 1px solid var(--line-on-dark);
  color: var(--white);
}

.cta-strip h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.cta-strip p {
  margin: 12px 0 0;
  color: var(--text-on-dark-muted);
  line-height: 1.78;
  max-width: 58ch;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero__grid,
  .services-page-intro,
  .clients-showcase__top,
  .contact-layout,
  .faq-layout,
  .services-layout {
    grid-template-columns: 1fr;
  }

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

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

  .services-heading {
    position: relative;
    top: 0;
  }

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

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

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

  .pillars-grid,
  .focus-grid,
  .clients-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero__stats,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    display: block;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 12px;
    width: calc(100vw - 20px);
    margin-top: 12px;
    border-radius: 28px;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 14px;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    border: 1px solid rgba(12, 17, 16, 0.08);
    box-shadow: 0 28px 56px rgba(7, 14, 11, 0.16);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.97);
    transform-origin: top right;
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 220ms ease;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 18px;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.34);
  }

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

  .site-nav a {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px 14px 18px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      background 180ms ease,
      color 180ms ease;
  }

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

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 30ms;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 60ms;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 90ms;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 120ms;
  }

  .site-nav.is-open a:nth-child(5) {
    transition-delay: 150ms;
  }

  .site-nav a.is-current {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--text-dark);
  }

  .site-nav .button--ghost {
    min-height: 52px;
    justify-content: flex-start;
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.2);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .hero-grid,
  .page-hero__grid,
  .contact-layout,
  .services-layout,
  .faq-layout {
    gap: 24px;
  }

  .hero {
    padding-top: 60px;
  }

  .page-hero {
    padding-top: 58px;
  }

  .hero-metrics,
  .services-grid,
  .focus-grid,
  .pillars-grid,
  .steps-grid,
  .page-hero__stats,
  .clients-logo-wall {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 76px 0;
  }

  .panel-card,
  .maintenance-card {
    padding: 30px 22px;
    border-radius: 28px;
  }

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

  .panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    width: calc(100vw - 18px);
    padding: 10px 10px 10px 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .lead,
  .page-hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .page-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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

  .hero-device-stack {
    min-height: 560px;
  }

  .hero-phone {
    width: min(100%, 320px);
    height: 610px;
  }

  .contact-form,
  .page-hero__card,
  .services-overview-card,
  .service-card,
  .client-card,
  .focus-card,
  .pillar-card,
  .step-card {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-device-stack {
    min-height: 520px;
  }

  .hero-phone {
    width: min(100%, 300px);
    height: 575px;
    border-radius: 44px;
    padding: 12px;
    transform:
      translate3d(
        calc(var(--phone-shift-x) + var(--phone-scroll-shift-x)),
        calc(var(--phone-shift-y) + var(--phone-scroll-shift-y)),
        18px
      )
      rotateX(calc(6deg + var(--phone-scroll-rotate-x-offset) + var(--phone-rotate-x-offset)))
      rotateY(calc(12deg + var(--phone-scroll-rotate-y-offset) + var(--phone-rotate-y-offset)))
      rotateZ(calc(8deg + var(--phone-scroll-rotate-z-offset)));
  }

  .hero-phone__screen {
    border-radius: 34px;
    padding: 18px 14px 14px;
  }

  .hero-device-stack::after {
    width: 130px;
    height: 360px;
    left: 44px;
    top: 88px;
    opacity: 0.32;
  }

  .faq-item {
    padding: 4px 18px;
  }

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

  .contact-chip {
    width: 100%;
  }

  .site-footer__inner {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .brand-text {
    display: none;
  }

  .site-header {
    width: calc(100vw - 16px);
    margin-top: 12px;
    padding: 9px 9px 9px 12px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .nav-toggle__icon {
    width: 20px;
  }

  .nav-toggle__icon span {
    width: 20px;
  }

  .nav-toggle__icon span:nth-child(2) {
    width: 14px;
  }

  .nav-toggle__icon span:nth-child(3) {
    width: 17px;
  }

  .hero {
    padding-top: 44px;
  }

  .page-hero {
    padding-top: 42px;
  }

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

  .hero-phone {
    width: min(100%, 286px);
    height: 548px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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