:root {
  --ink: #15120e;
  --ink-soft: #40372d;
  --paper: #f5f0e6;
  --paper-deep: #e2d7c3;
  --line: rgba(21, 18, 14, 0.16);
  --accent: #b83220;
  --accent-dark: #7d2116;
  --signal: #0c6f5b;
  --signal-soft: #d7eadf;
  --steel: #202833;
  --white: #fffaf0;
  --shadow: 0 26px 70px rgba(35, 25, 13, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(var(--paper), #eee2cf 42%, #f8f2e8);
  font-family: "Archivo", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: radial-gradient(rgba(21, 18, 14, 0.2) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
  z-index: 10;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 230, 0.86);
  backdrop-filter: blur(16px);
}

.service-dock {
  position: fixed;
  left: 50%;
  top: 14px;
  z-index: 50;
  display: flex;
  max-width: calc(100vw - 24px);
  gap: 8px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(157, 224, 196, 0.2);
  border-radius: 999px;
  background: rgba(8, 21, 34, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.service-dock a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 6px 11px 6px 6px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.88);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-dock b {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #06111c;
  background: #9de0c4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--accent);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.nav-cta,
.button,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  color: var(--ink-soft);
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: var(--signal-soft);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 0;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 32%, rgba(40, 180, 210, 0.16), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0b1a2b 46%, #07111f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(157, 224, 196, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(157, 224, 196, 0.055) 1px, transparent 1px) 0 0 / 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, black 0 58%, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(245, 240, 230, 0.95));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  color: #9de0c4;
}

.hero h1 {
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero .button {
  border-radius: 999px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  max-inline-size: 14ch;
}

.hero-lead {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: #06111c;
  background: #9de0c4;
  box-shadow: 0 18px 42px rgba(157, 224, 196, 0.22);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: auto;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  isolation: isolate;
}

.profile-world {
  display: grid;
  place-items: center;
  border: 0;
  min-height: auto;
}

.service-world {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 28, 0.98), rgba(6, 17, 28, 0.38) 26%, rgba(6, 17, 28, 0.22) 50%, rgba(6, 17, 28, 0.38) 74%, rgba(6, 17, 28, 0.98)),
    url("marcelus-it-logo.png") center / cover no-repeat,
    #06111c;
  box-shadow: none;
}

.brand-hero-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100vh, 900px);
  height: min(100vh, 900px);
  max-width: 100vw;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42));
}

.visual-brand {
  position: absolute;
  left: 50%;
  top: 5.4%;
  z-index: 4;
  display: grid;
  gap: 6px;
  width: min(460px, 76%);
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}

.visual-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5.2vw, 3.65rem);
  line-height: 0.96;
  letter-spacing: 0.16em;
}

.visual-brand span {
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(0.62rem, 1.5vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.visual-brand small {
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(0.56rem, 1.15vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.visual-footer {
  position: absolute;
  left: 50%;
  bottom: 6.6%;
  z-index: 4;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
  color: #2aa8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-footer span + span::before {
  content: "•";
  margin-right: 14px;
  color: rgba(157, 224, 196, 0.9);
}

.service-world::before,
.service-world::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: block;
}

.service-world::before {
  inset: -22px;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 52%, transparent 0 28%, rgba(6, 17, 28, 0.08) 44%, rgba(6, 17, 28, 0.76) 74%, #06111c 100%),
    url("marcelus-it-logo.png") center / cover no-repeat;
  filter: blur(20px) saturate(1.05);
  opacity: 0.74;
  transform: scale(1.04);
}

.service-world::after {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, #06111c 0%, transparent 17%, transparent 83%, #06111c 100%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.08) 0%, transparent 45%, rgba(6, 17, 28, 0.34) 100%);
}

.service-world::before {
  inset: 13%;
  top: 19.4%;
  bottom: 14.2%;
  border: 1px dashed rgba(89, 205, 229, 0.22);
  box-shadow:
    inset 0 0 38px rgba(89, 205, 229, 0.08),
    0 0 52px rgba(89, 205, 229, 0.1);
}

.service-world::after {
  inset: 24%;
  top: 29.4%;
  bottom: 23.2%;
  border: 1px solid rgba(89, 205, 229, 0.18);
  box-shadow: inset 0 0 42px rgba(89, 205, 229, 0.1);
}

.profile-world::before {
  content: "";
  position: absolute;
  width: min(780px, calc(100vw - 32px));
  aspect-ratio: 1;
  border: 1px solid rgba(157, 224, 196, 0.14);
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

.profile-core {
  position: absolute;
  left: 50%;
  top: 52.4%;
  z-index: 4;
  display: grid;
  width: 31.6%;
  min-width: 0;
  transform: translate(-50%, -50%);
  place-items: center;
  padding: 8px;
  border: 6px solid rgba(255, 250, 240, 0.96);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.96);
  box-shadow:
    0 0 0 1px rgba(157, 224, 196, 0.38),
    0 0 0 10px rgba(89, 205, 229, 0.08),
    0 0 54px rgba(89, 205, 229, 0.34),
    0 24px 58px rgba(0, 0, 0, 0.35);
}

.profile-core img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 17%;
  border-radius: 50%;
  border: 1px solid rgba(21, 18, 14, 0.12);
  background: #fff;
}

.service-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 96px;
  height: auto;
  padding: 0;
  border: 0;
  color: rgba(255, 250, 240, 0.9);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: clamp(0.48rem, 1.15vw, 0.74rem);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.service-chip span {
  display: block;
  max-width: 100%;
}

.service-chip b {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #c4f7ff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(15, 98, 169, 0.96), rgba(8, 47, 93, 0.96));
  border: 1px solid rgba(136, 221, 255, 0.58);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1;
  text-shadow: 0 0 24px rgba(196, 247, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -18px 32px rgba(0, 0, 0, 0.18),
    0 0 0 7px rgba(33, 160, 226, 0.1),
    0 0 34px rgba(33, 160, 226, 0.42);
}

.service-chip b::before {
  display: block;
}

.icon-globe::before {
  content: "◎";
}

.icon-bot::before {
  content: "⚙";
}

.icon-cart::before {
  content: "▱";
}

.icon-bars::before {
  content: "▥";
}

.icon-cap::before {
  content: "▰";
}

.icon-car::before {
  content: "◇";
}

.icon-wifi::before {
  content: "≋";
}

.icon-camera::before {
  content: "▣";
}

.icon-search::before {
  content: "⌕";
}

.icon-clipboard::before {
  content: "☷";
}

.icon-play::before {
  content: "▶";
}

.chip-web {
  left: 20.5%;
  top: 28.5%;
}

.chip-ai {
  left: 15.2%;
  top: 41%;
}

.chip-shop {
  left: 13%;
  top: 53.5%;
}

.chip-dash {
  left: 20.5%;
  top: 67.5%;
}

.chip-seo {
  left: 84.4%;
  top: 41%;
}

.chip-cam {
  left: 87%;
  top: 54.5%;
}

.chip-wifi {
  left: 79.5%;
  top: 67.5%;
}

.chip-auto {
  left: 50%;
  top: 84%;
}

.chip-course-left {
  left: 31.5%;
  top: 80.7%;
}

.chip-course-right {
  left: 68.5%;
  top: 80.7%;
}

.chip-media {
  left: 50%;
  top: 24.5%;
}

.chip-demo {
  left: 79.5%;
  top: 28.5%;
}

.signal-grid {
  position: absolute;
  inset: 8% 3% 12% 4%;
  border: 1px solid rgba(21, 18, 14, 0.22);
  background:
    linear-gradient(90deg, rgba(12, 111, 91, 0.18) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(12, 111, 91, 0.18) 1px, transparent 1px) 0 0 / 38px 38px,
    radial-gradient(circle at 65% 35%, rgba(184, 50, 32, 0.35), transparent 28%),
    var(--signal-soft);
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.terminal-window {
  position: absolute;
  right: 2%;
  bottom: 8%;
  width: min(360px, 78%);
  padding: 42px 24px 24px;
  color: #f3f6ec;
  background: var(--steel);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--accent);
  font-family: "Space Grotesk", monospace;
  font-weight: 600;
}

.terminal-window p {
  margin: 8px 0;
}

.dot {
  position: absolute;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  left: 18px;
  background: #ef5b48;
}

.dot.yellow {
  left: 36px;
  background: #e6b94d;
}

.dot.green {
  left: 54px;
  background: #4fb17c;
}

.orbit-card {
  position: absolute;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  box-shadow: 6px 6px 0 rgba(21, 18, 14, 0.2);
  animation: float 6s ease-in-out infinite;
}

.card-a {
  top: 7%;
  right: 13%;
}

.card-b {
  top: 34%;
  left: 1%;
  animation-delay: -2s;
}

.card-c {
  right: 35%;
  bottom: 2%;
  animation-delay: -4s;
}


.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 20px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.skills-layout h2,
.process h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
}

.section-heading p,
.skills-layout p,
.process p,
.contact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.trust-panel {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.82), rgba(215, 234, 223, 0.72)),
    linear-gradient(135deg, rgba(21, 18, 14, 0.05) 25%, transparent 25% 50%, rgba(21, 18, 14, 0.05) 50% 75%, transparent 75%) 0 0 / 28px 28px;
}

.trust-panel > .section-kicker,
.trust-panel > .section-heading,
.trust-panel > .trust-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.08);
}

.trust-grid span {
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.trust-grid h3 {
  margin: 20px 0 12px;
  font-size: 1.45rem;
}

.trust-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.whatsapp-business {
  max-width: none;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, #10261f, #17352d 45%, #121a21);
}

.whatsapp-business > .section-kicker,
.whatsapp-business > .section-heading,
.whatsapp-business > .whatsapp-grid,
.whatsapp-business > .whatsapp-script {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-business .section-kicker {
  color: #9de0c4;
}

.whatsapp-business .section-heading p {
  color: rgba(255, 250, 240, 0.76);
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.whatsapp-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
}

.whatsapp-card.primary-offer {
  background: var(--white);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
}

.whatsapp-card span {
  color: #9de0c4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-card.primary-offer span {
  color: var(--accent-dark);
}

.whatsapp-card h3 {
  margin: 16px 0 10px;
  font-size: 1.34rem;
}

.whatsapp-card p {
  margin: 0 0 18px;
  color: rgba(255, 250, 240, 0.78);
}

.whatsapp-card.primary-offer p {
  color: var(--ink-soft);
}

.whatsapp-card strong {
  margin-top: auto;
  color: #f3d173;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.whatsapp-card.primary-offer strong {
  color: var(--accent);
}

.whatsapp-card a {
  margin-top: 14px;
  padding: 11px 13px;
  color: var(--ink);
  background: #9de0c4;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.whatsapp-card.primary-offer a {
  color: var(--white);
  background: var(--ink);
}

.whatsapp-script {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.whatsapp-script strong {
  display: block;
  margin-bottom: 8px;
  color: #9de0c4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.whatsapp-script p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-weight: 700;
}

.prospect-demos {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, #fffaf0, #e8f2ec);
}

.prospect-demos > .section-kicker,
.prospect-demos > .section-heading,
.prospect-demos > .prospect-grid,
.prospect-demos > .prospect-note {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.prospect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.prospect-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.08);
}

.prospect-card.featured {
  color: var(--white);
  background: var(--steel);
  box-shadow: 8px 8px 0 var(--signal);
}

.prospect-card span {
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prospect-card.featured span {
  color: #9de0c4;
}

.prospect-card h3 {
  margin: 16px 0 10px;
  font-size: 1.34rem;
}

.prospect-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.prospect-card.featured p {
  color: rgba(255, 250, 240, 0.78);
}

.prospect-card strong {
  margin-top: auto;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
}

.prospect-card.featured strong {
  color: #f3d173;
}

.prospect-card a {
  margin-top: 14px;
  padding: 11px 13px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.prospect-card.featured a {
  color: var(--ink);
  background: #9de0c4;
}

.prospect-note {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.8);
}

.prospect-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.prospect-note p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.local-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.local-app-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.08);
}

.local-app-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(21, 18, 14, 0.14);
}

.local-app-card span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.local-app-card h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

.local-app-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.local-app-card a {
  margin-top: auto;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  padding: 11px 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.local-app-note {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--signal-soft);
}

.local-app-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.local-app-note p {
  margin: 0;
  color: var(--ink-soft);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.demo-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(7, 8, 9, 0.86), rgba(7, 8, 9, 0.18) 58%, rgba(7, 8, 9, 0.36)),
    var(--demo-art);
  background-size: cover;
  background-position: center;
  transition: transform 360ms ease;
}

.demo-card:hover::before,
.demo-card:focus-visible::before {
  transform: scale(1.05);
}

.demo-card span,
.demo-card h3,
.demo-card p {
  position: relative;
  z-index: 1;
}

.demo-card span {
  color: #f3d173;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.demo-card h3 {
  margin: 10px 0 8px;
  font-size: 1.65rem;
}

.demo-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
}

.demo-card.photo {
  --demo-art: radial-gradient(circle at 68% 22%, rgba(255, 250, 240, 0.95) 0 5%, transparent 6%),
    linear-gradient(135deg, #101010, #463a31 42%, #111 43% 46%, #c7aa70 47% 52%, #1a1a1a 53%);
}

.demo-card.campus {
  --demo-art: linear-gradient(135deg, rgba(22, 78, 94, 0.92), rgba(8, 20, 34, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(255, 255, 255, 0.24) 31px 32px);
}

.demo-card.church {
  --demo-art: radial-gradient(circle at 50% 18%, rgba(255, 229, 162, 0.95), transparent 18%),
    linear-gradient(135deg, #2f241b, #7b5531 48%, #241812);
}

.demo-card.safari {
  --demo-art: radial-gradient(circle at 78% 18%, #f4c35d 0 10%, transparent 11%),
    linear-gradient(160deg, #433620 0 38%, #96612e 39% 62%, #233f30 63%);
}

.demo-card.chef {
  --demo-art: radial-gradient(circle at 24% 24%, #f7efe1 0 7%, transparent 8%),
    linear-gradient(145deg, #20130f, #7d2116 45%, #d58d42 46% 52%, #1b1511 53%);
}

.demo-card.hotel {
  --demo-art: linear-gradient(120deg, #173044, #d1b273 44%, #f3ebdb 45% 50%, #253746 51%);
}

.demo-card.parts {
  --demo-art: radial-gradient(circle at 72% 24%, rgba(205, 215, 219, 0.95) 0 8%, transparent 9%),
    linear-gradient(135deg, #1a2228, #4e5960 36%, #b83220 37% 44%, #101418 45%);
}

.case-page {
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--case-bg, var(--paper));
}

.case-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: rgba(21, 18, 14, 0.9);
  backdrop-filter: blur(14px);
}

.case-nav a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.case-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 70px);
}

.case-hero h1 {
  max-inline-size: 10ch;
}

.case-visual {
  min-height: min(66vh, 680px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--case-shadow, var(--accent));
  background: var(--case-art);
  background-size: cover;
  background-position: center;
}

.lens-art {
  --case-art:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255, 250, 240, 0.9) 19% 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, #111 0 36%, #d2b16e 37% 39%, #111 40% 46%, transparent 47%),
    linear-gradient(135deg, #191817, #53483a);
}

.campus-art {
  --case-art:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 70% 30%, #6abec5, transparent 24%),
    linear-gradient(135deg, #10243a, #0c6f5b);
}

.church-art {
  --case-art:
    linear-gradient(90deg, transparent 45%, rgba(255, 250, 240, 0.88) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 38%, rgba(255, 250, 240, 0.88) 38% 48%, transparent 48%),
    radial-gradient(circle at 50% 28%, #f3d173, transparent 26%),
    linear-gradient(145deg, #3a281d, #8b6438);
}

.safari-art {
  --case-art:
    radial-gradient(circle at 76% 18%, #f0bd4a 0 12%, transparent 13%),
    linear-gradient(12deg, transparent 0 48%, rgba(35, 63, 48, 0.95) 49% 54%, transparent 55%),
    linear-gradient(160deg, #8a5b2c 0 46%, #d29b52 47% 68%, #263d2d 69%);
}

.chef-art {
  --case-art:
    radial-gradient(circle at 35% 30%, #fff2d8 0 9%, transparent 10%),
    linear-gradient(24deg, transparent 0 46%, rgba(255, 250, 240, 0.88) 47% 49%, transparent 50%),
    linear-gradient(145deg, #1b1210, #8a281a 48%, #d8943f);
}

.hotel-art {
  --case-art:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.8) 0 22px, transparent 23px 66px),
    linear-gradient(145deg, #14283a, #d1b273 52%, #f5f0e6);
}

.parts-art {
  --case-art:
    radial-gradient(circle at 50% 48%, transparent 0 18%, #d0d8dc 19% 26%, transparent 27%),
    radial-gradient(circle at 50% 48%, #151a1e 0 34%, transparent 35%),
    linear-gradient(135deg, #11181d, #59646b 50%, #b83220);
}

.case-section,
.case-contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 20px;
}

.case-section h2,
.case-contact h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.7);
}

.case-grid span {
  color: var(--accent-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.case-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.5rem;
}

.case-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.case-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 3px solid var(--ink);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-card h3,
.project-timeline h3 {
  margin: 20px 0 12px;
  font-size: 1.55rem;
}

.service-card p,
.project-timeline p {
  margin: 0;
  color: var(--ink-soft);
}

.service-number {
  display: inline-flex;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.skills-band {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.skills-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.skills-layout p {
  color: rgba(255, 250, 240, 0.78);
  margin-top: 20px;
}

.skill-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-wall span {
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 250, 240, 0.08);
  font-weight: 800;
}

.project-timeline {
  display: grid;
  gap: 16px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.course-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.64);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.08);
}

.course-card span {
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.course-card h3 {
  margin: 18px 0 12px;
  font-size: 1.35rem;
}

.course-card p {
  margin: 0;
  color: var(--ink-soft);
}

.course-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.course-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.course-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.featured-course {
  color: var(--white);
  background: var(--ink);
}

.featured-course p {
  color: rgba(255, 250, 240, 0.78);
}

.featured-course li {
  color: rgba(255, 250, 240, 0.82);
}

.featured-course span {
  color: #f3d173;
}

.featured-course li::before {
  background: #f3d173;
}

.course-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.course-benefits div {
  padding: 22px;
  background: rgba(255, 250, 240, 0.74);
}

.course-benefits strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.course-benefits p {
  margin: 0;
  color: var(--ink-soft);
}

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

.price-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.08);
}

.price-panel.highlighted {
  color: var(--white);
  background: var(--steel);
  box-shadow: 8px 8px 0 var(--accent);
}

.price-panel h3 {
  margin: 0 0 20px;
  font-size: 1.65rem;
}

.price-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.price-panel.highlighted li {
  border-top-color: rgba(255, 250, 240, 0.18);
}

.price-panel li span {
  color: var(--ink-soft);
}

.price-panel.highlighted li span {
  color: rgba(255, 250, 240, 0.74);
}

.price-panel strong {
  font-family: "Space Grotesk", sans-serif;
  white-space: nowrap;
}

.pricing-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.project-timeline article {
  display: grid;
  grid-template-columns: 180px minmax(180px, 0.6fr) 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.project-timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.project-timeline span {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.project-timeline h3 {
  margin: 0;
}

.process {
  padding-top: 30px;
}

.process h2 {
  max-width: 720px;
  margin-bottom: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid div {
  padding: 26px;
  background: rgba(255, 250, 240, 0.62);
}

.process-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 8px 8px 0 rgba(21, 18, 14, 0.06);
}

.faq-grid summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto clamp(44px, 8vw, 90px);
  padding: clamp(34px, 6vw, 62px) 20px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-details a {
  color: var(--accent-dark);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.legal-section {
  max-width: var(--max);
  margin: 0 auto clamp(42px, 7vw, 80px);
  padding: clamp(58px, 8vw, 100px) 20px;
  border-top: 3px solid var(--ink);
}

.legal-section h2 {
  max-width: 820px;
  margin: 0 0 32px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.legal-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
}

.legal-grid h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.legal-grid p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.legal-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.legal-grid a {
  color: var(--accent-dark);
  font-weight: 800;
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.contact-form button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 28px clamp(20px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.site-footer a {
  color: var(--white);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer div {
  flex-direction: column;
}

.site-footer nav {
  justify-content: flex-end;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .skills-layout,
  .contact,
  .case-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 96px;
  }

  h1 {
    max-inline-size: 13ch;
  }

  .hero-visual {
    min-height: auto;
    order: -1;
  }

  .profile-world {
    min-height: auto;
  }

  .service-world {
    display: block;
    width: min(860px, calc(100vw - 28px), calc(100vh - 28px));
    aspect-ratio: 1;
    gap: 0;
    padding: 0;
    border-radius: 8px;
  }

  .service-world::before,
  .service-world::after {
    display: block;
  }

  .profile-core {
    top: 52%;
    width: 30.2%;
    min-width: 0;
    transform: translate(-50%, -50%);
  }

  .service-chip,
  .chip-web,
  .chip-ai,
  .chip-shop,
  .chip-dash,
  .chip-seo,
  .chip-cam,
  .chip-wifi,
  .chip-auto,
  .chip-course-left,
  .chip-course-right,
  .chip-media,
  .chip-demo {
    position: absolute;
    width: 13.4%;
    height: 13.4%;
    justify-content: center;
  }

  .service-grid,
  .trust-grid,
  .demo-grid,
  .course-grid,
  .course-benefits,
  .pricing-grid,
  .process-grid,
  .whatsapp-grid,
  .prospect-grid,
  .local-app-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(3n),
  .service-card:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .project-timeline article,
  .case-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-visual {
    min-height: 380px;
    order: -1;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 13px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .service-world {
    grid-template-columns: none;
    padding-top: 0;
  }

  .profile-core {
    top: 52%;
    width: 30.2%;
  }

  .terminal-window {
    width: 88%;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .orbit-card {
    width: 62px;
    height: 62px;
  }

  .section {
    padding-inline: 16px;
  }

  .service-card,
  .process-grid div {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }
}

