:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-alt: #0f1724;
  --bg-elev: rgba(11, 18, 32, 0.74);
  --text: #f3f7ff;
  --muted: #9aa9be;
  --accent: #7df5c4;
  --accent-strong: #2ed18f;
  --line: rgba(201, 213, 229, 0.2);
  --card: rgba(13, 21, 35, 0.84);
  --glow: rgba(125, 245, 196, 0.33);
  --shadow: 0 30px 80px rgba(3, 8, 18, 0.56);
  --orb-shift-x: -18px;
  --orb-shift-y: 14px;
  --grid-line: rgba(148, 163, 184, 0.12);
  --hero-bg: linear-gradient(135deg, #070b12 0%, #0d1729 58%, #13243b 100%);
  --about-bg: linear-gradient(180deg, #121f34 0%, #0c1527 100%);
  --section-cut: rgba(201, 213, 229, 0.2);
  --surface-1: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.02);
  --band-video-dim: 0.84;
  --band-line-alpha: 0.46;
  --video-media-opacity: 0.34;
  --video-line-alpha: 0.48;
}

body.theme-light {
  color-scheme: light;
  --bg: #edf2f8;
  --bg-alt: #e5ebf5;
  --bg-elev: rgba(255, 255, 255, 0.84);
  --text: #0f1b2d;
  --muted: #4e5d74;
  --accent: #0f9c77;
  --accent-strong: #0b7a60;
  --line: rgba(31, 52, 79, 0.2);
  --card: rgba(255, 255, 255, 0.84);
  --glow: rgba(15, 156, 119, 0.24);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --ghost: #f8f8ff;
  --grid-line: rgba(15, 23, 42, 0.12);
  --hero-bg: linear-gradient(135deg, #1f2b3e 0%, #26354c 58%, #1a293e 100%);
  --about-bg: linear-gradient(180deg, #253449 0%, #1a283d 100%);
  --section-cut: rgba(130, 151, 176, 0.4);
  --surface-1: rgba(255, 255, 255, 0.68);
  --surface-2: rgba(255, 255, 255, 0.42);
  --band-video-dim: 0.72;
  --band-line-alpha: 0.38;
  --video-media-opacity: 0.28;
  --video-line-alpha: 0.42;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Mono", "JetBrains Mono", monospace;
  background: radial-gradient(1200px at 10% -15%, rgba(125, 245, 196, 0.12), transparent 62%),
    radial-gradient(900px at 90% -5%, rgba(59, 130, 246, 0.16), transparent 56%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

.shared-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  z-index: 4;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0);
  filter: drop-shadow(0 0 24px var(--glow));
}

body.theme-light .shared-orb {
  filter: drop-shadow(0 0 18px rgba(15, 156, 119, 0.28));
}

.shared-orb img {
  width: 100%;
  height: auto;
  display: block;
  animation: pulse 6s ease-in-out infinite;
}

.shared-tri {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  color: rgba(148, 163, 184, 0.5);
  transform: translate3d(-9999px, -9999px, 0);
  filter: drop-shadow(0 0 14px rgba(15, 23, 42, 0.3));
}

.shared-tri svg {
  width: 100%;
  height: auto;
  display: block;
}

.shared-western {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0.42;
  filter: drop-shadow(0 0 20px rgba(125, 245, 196, 0.24));
}

.west-media {
  animation: float 9s ease-in-out infinite;
}

.shared-western img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}

.shared-palm {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0.38;
  filter: drop-shadow(0 0 20px rgba(148, 163, 184, 0.22));
}

.palm-media {
  animation: float 10s ease-in-out infinite;
}

.shared-palm img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.shared-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 1;
}

.ring-shell {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.34);
  box-shadow: inset 0 0 14px rgba(148, 163, 184, 0.16);
}

.ring-shell.dashed {
  inset: 14%;
  border-style: dashed;
  border-color: rgba(125, 245, 196, 0.45);
  animation: spin 20s linear infinite reverse;
}

@media (max-width: 600px) {
  .shared-ring {
    width: 190px;
    height: 190px;
  }
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

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

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      90deg,
      var(--grid-line) 0,
      var(--grid-line) 1px,
      transparent 1px,
      transparent 70px
    ),
    repeating-linear-gradient(
      0deg,
      var(--grid-line) 0,
      var(--grid-line) 1px,
      transparent 1px,
      transparent 70px
    );
  opacity: 0.28;
  filter: none;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

body.theme-light .section:not(.hero)::before {
  opacity: 0.22;
}

.section:not(.hero) .container {
  position: relative;
  z-index: 1;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-divider {
  position: relative;
  height: 52px;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.divider-tri {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
}

.section-floater {
  position: relative;
  height: 72px;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.west-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
}

.services-west {
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.floater-west {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}

.projects-west {
  left: 50%;
  top: 24px;
  transform: translate(-50%, 0);
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: "Oxanium", "Orbitron", sans-serif;
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  z-index: 100;
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid var(--line);
  border-radius: 14px;
}

body.theme-light .nav {
  background: rgba(255, 255, 255, 0.82);
}

body.theme-light .hero-text h1,
body.theme-light .hero-text .lead,
body.theme-light .hero-stats .stat-value,
body.theme-light .hero-stats .stat-label {
  color: var(--ghost);
}

body.theme-light .hero-text .eyebrow {
  color: #d2fbe7;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 12px 24px;
  box-sizing: border-box;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}

.brand small {
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 0.24em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-family: "Oxanium", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  cursor: pointer;
}

.toggle-track {
  width: 32px;
  height: 16px;
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  position: relative;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s ease;
}

body.theme-light .toggle-thumb {
  transform: translateX(14px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.3s ease;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: rgba(148, 163, 184, 0.12);
  z-index: 200;
}

.scroll-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.hero {
  padding-top: 150px;
  overflow: visible;
  background: var(--hero-bg);
  min-height: 95vh;
  isolation: isolate;
  border-bottom: 1px solid rgba(201, 213, 229, var(--video-line-alpha));
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  opacity: calc(var(--video-media-opacity) - 0.02);
  filter: saturate(1.05) contrast(1.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(201, 213, 229, 0.16) 0,
      rgba(201, 213, 229, 0.16) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(201, 213, 229, 0.12) 0,
      rgba(201, 213, 229, 0.12) 1px,
      transparent 1px,
      transparent 72px
    );
  opacity: 0.52;
  animation: grid-drift 24s linear infinite;
  z-index: 1;
}

body.theme-light .hero::before {
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.62) 0,
      rgba(255, 255, 255, 0.62) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5) 0,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px,
      transparent 72px
    );
  opacity: 0.44;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(125, 245, 196, 0.22), transparent 44%),
    radial-gradient(circle at 88% 16%, rgba(59, 130, 246, 0.2), transparent 42%);
  opacity: 0.74;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 11, 18, 0.92), rgba(7, 11, 18, 0.66));
  pointer-events: none;
  z-index: 2;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: start;
}

.hero-text {
  animation: fade-up 1s ease forwards;
  opacity: 0;
  align-self: start;
  padding-top: 52px;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 2.5vw, 3.2rem);
  line-height: 1.12;
}

body.loaded .hero-text {
  opacity: 1;
}

.lead {
  font-size: 1rem;
  max-width: 520px;
  max-width: 56ch;
}

.cta {
  display: flex;
  gap: 16px;
  margin: 24px 0 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border: 1px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease,
    background-color 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #04110d;
  box-shadow: 0 12px 32px rgba(46, 209, 143, 0.35);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(46, 209, 143, 0.28);
}

.btn.ghost:hover {
  border-color: rgba(125, 245, 196, 0.6);
  background: rgba(125, 245, 196, 0.12);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats > div {
  min-width: 122px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 213, 229, 0.28);
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.stat-value {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: var(--text);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  display: flex;
  align-items: flex-start;
  z-index: 10;
  margin-top: 28vh;
  margin-bottom: -72px;
  align-self: start;
}

body.loaded .hero-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about {
  padding-top: 140px;
  position: relative;
  z-index: 1;
}

.orbital {
  position: relative;
  width: min(320px, 62vw);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform: translate(var(--orb-shift-x), var(--orb-shift-y));
}

.radar-scan {
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: inset 0 0 20px rgba(34, 197, 94, 0.15);
  display: grid;
  place-items: center;
}

.radar-scan::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.radar-scan::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(34, 197, 94, 0.35),
    rgba(34, 197, 94, 0.1) 40%,
    transparent 60%
  );
  mask: radial-gradient(circle, transparent 52%, #000 53%);
  animation: radar-sweep 3.6s linear infinite;
}
.tri-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
}

.hero-tri {
  top: 12%;
  left: -10%;
}

.orb-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 1px solid rgba(201, 213, 229, 0.3);
  border-radius: 50%;
  inset: -18%;
  animation: spin 22s linear infinite;
}

.ring-two {
  inset: -30%;
  border-style: dashed;
  border-color: rgba(125, 245, 196, 0.58);
  animation-duration: 28s;
  animation-direction: reverse;
}

.ring-three {
  inset: -42%;
  border-style: dashed;
  border-width: 2px;
  animation-duration: 36s;
}

.float-item {
  position: absolute;
  width: 90px;
  opacity: 0.58;
  filter: drop-shadow(0 0 14px rgba(125, 245, 196, 0.26));
  animation: float 10s ease-in-out infinite;
}

.item-1 {
  top: -10px;
  right: 10%;
}

.item-2 {
  bottom: 10%;
  left: 8%;
  animation-delay: 1s;
}

.item-3 {
  bottom: -20px;
  right: 20%;
  animation-delay: 2s;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 213, 229, 0.74);
  opacity: 0.28;
  animation: drift 16s linear infinite;
}

.particles span:nth-child(1) {
  top: 20%;
  left: 10%;
}

.particles span:nth-child(2) {
  top: 60%;
  left: 18%;
  animation-delay: 2s;
}

.particles span:nth-child(3) {
  top: 30%;
  right: 18%;
  animation-delay: 1s;
}

.particles span:nth-child(4) {
  top: 70%;
  right: 10%;
  animation-delay: 3s;
}

.particles span:nth-child(5) {
  top: 15%;
  right: 40%;
  animation-delay: 1.5s;
}

.particles span:nth-child(6) {
  top: 80%;
  left: 45%;
  animation-delay: 2.5s;
}

.about {
  background: var(--about-bg);
  border-top: 1px solid var(--section-cut);
}

.services,
.process,
.projects,
.testimonials {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--section-cut);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(125, 245, 196, 0.2) 0%,
    rgba(125, 245, 196, 0.05) 34%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 0;
}

body.theme-light .about::before {
  background: linear-gradient(
    180deg,
    rgba(167, 243, 208, 0.34) 0%,
    rgba(167, 243, 208, 0.08) 34%,
    transparent 58%
  );
}

.split {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.globe-shell {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: min(360px, 70vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform: translate(var(--orb-shift-x), var(--orb-shift-y));
}

.globe-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(201, 213, 229, 0.28);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}

.globe-ring.inner {
  inset: 28%;
  border-style: dashed;
  animation-direction: reverse;
}

.ring-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-ring {
  top: 34px;
  left: 18px;
}

.palm-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
}

.testimonials-palm {
  right: 8%;
  top: 20px;
}

.contact-palm {
  left: 12%;
  top: 10px;
}


body.theme-light .globe-ring {
  border-color: rgba(31, 52, 79, 0.34);
}

body.theme-light .globe-ring.inner {
  border-color: rgba(31, 52, 79, 0.46);
}

body.theme-light .ring-shell {
  border-color: rgba(31, 52, 79, 0.28);
  box-shadow: inset 0 0 16px rgba(31, 52, 79, 0.1);
}

body.theme-light .ring-shell.dashed {
  border-color: rgba(15, 156, 119, 0.45);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-tags span {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.06);
}

.mission-grid {
  margin-top: 70px;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.mission-text h3 {
  font-family: "Orbitron", "Oxanium", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 16px;
}

.mission-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(125, 245, 196, 0.45);
  color: var(--text);
}

body.theme-light .mission-text p {
  color: var(--ghost);
}

body.theme-light .about-text p {
  color: var(--ghost);
}

.mission-visual {
  display: grid;
  place-items: center;
}

.founder-card {
  position: relative;
  width: min(460px, 82vw);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(201, 213, 229, 0.24);
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.founder-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 245, 196, 0), rgba(125, 245, 196, 0.7), rgba(125, 245, 196, 0));
}

.founder-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.founder-role {
  margin-top: 8px;
  margin-bottom: 6px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-family: "JetBrains Mono", monospace;
}

.founder-name-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.founder-name-link:hover {
  color: var(--accent);
  border-color: rgba(125, 245, 196, 0.6);
}

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.founder-skills span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 213, 229, 0.24);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-head {
  max-width: 600px;
  margin-bottom: 44px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.services .container {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(201, 213, 229, 0.2);
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.process-card .step {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  border: 1px solid rgba(201, 213, 229, 0.2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(8px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(125, 245, 196, 0.12), transparent 38%);
  opacity: 0.7;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 245, 196, 0.46);
  box-shadow: 0 22px 44px rgba(46, 209, 143, 0.22);
}

.card-accent {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(8px);
}

.projects {
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(201, 213, 229, var(--video-line-alpha));
  border-bottom: 1px solid rgba(201, 213, 229, calc(var(--video-line-alpha) - 0.16));
}

.section-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--video-media-opacity);
  filter: saturate(1.05) contrast(1.08);
}

.projects-video video {
  object-position: center 50%;
  opacity: calc(var(--video-media-opacity) - 0.04);
}

.process-video video {
  object-position: center 60%;
  opacity: calc(var(--video-media-opacity) + 0.14);
  filter: saturate(0.9) contrast(1.1);
}

.projects::before {
  z-index: 0;
  opacity: 0.42;
}

.projects::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(7, 11, 18, 0.72) 0%,
      rgba(7, 11, 18, 0.8) 44%,
      rgba(7, 11, 18, 0.88) 100%
    ),
    radial-gradient(circle at 20% 16%, rgba(125, 245, 196, 0.1), transparent 44%);
}

.projects .container {
  position: relative;
  z-index: 3;
}

.projects-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.projects .section-head {
  position: relative;
  z-index: 3;
}

.project-card {
  position: relative;
  z-index: 4;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  border: 1px solid rgba(201, 213, 229, 0.22);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(8px);
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 245, 196, 0.45);
  box-shadow: 0 22px 44px rgba(46, 209, 143, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(201, 213, 229, 0.2);
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.testimonial-card p {
  color: var(--text);
  margin: 0 0 12px;
}

.client-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.client-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.client-strip span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 213, 229, 0.22);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.faq-item {
  border: 1px solid rgba(201, 213, 229, 0.2);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  padding: 18px 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::after {
  content: "+";
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

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

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

.project-more {
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.project-more summary {
  list-style: none;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.project-more summary::-webkit-details-marker {
  display: none;
}

.project-more summary::after {
  content: "+";
  font-size: 0.9rem;
}

.project-more[open] summary::after {
  content: "-";
}

.project-body {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.project-body h4 {
  margin: 16px 0 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}

.project-body ul {
  padding-left: 18px;
  margin: 0 0 12px;
}

.project-body li {
  margin-bottom: 8px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--accent);
}

.project-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.project-head h3 a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 0.28s ease, border-color 0.28s ease;
}

.project-head h3 a:hover {
  color: var(--accent);
  border-color: rgba(125, 245, 196, 0.54);
}

.badge {
  height: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(125, 245, 196, 0.15);
  color: var(--accent);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 10px;
  display: inline-flex;
  align-items: center;
}

.badge.completed {
  background: rgba(34, 197, 94, 0.26);
  color: #86efac;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: rgba(201, 213, 229, 0.2);
  stroke-width: 10;
}

.progress-bar {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 10;
  stroke-dasharray: 0 999;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.2s ease;
}

.progress-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-value {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
}

.progress-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.faq-contact-stack {
  position: relative;
  isolation: isolate;
}

.shared-section-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shared-section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: calc(var(--video-media-opacity) + 0.03);
  filter: saturate(1.07) contrast(1.08);
}

.faq-contact-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(7, 11, 18, calc(var(--band-video-dim) - 0.14)) 0%,
      rgba(7, 11, 18, calc(var(--band-video-dim) - 0.03)) 44%,
      rgba(7, 11, 18, calc(var(--band-video-dim) + 0.08)) 100%
    ),
    radial-gradient(circle at 20% 16%, rgba(125, 245, 196, 0.12), transparent 44%);
}

.faq-contact-stack .faqs,
.faq-contact-stack .contact {
  position: relative;
  z-index: 1;
  background: transparent;
  border-top: 1px solid rgba(201, 213, 229, var(--band-line-alpha));
}

.faq-contact-stack .faqs::before,
.faq-contact-stack .contact::before {
  opacity: 0.38;
}

.faq-contact-stack .faqs::after,
.faq-contact-stack .contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq-contact-stack .faqs::after {
  background: linear-gradient(
    180deg,
    rgba(7, 11, 18, 0.18) 0%,
    rgba(7, 11, 18, 0.34) 72%,
    rgba(7, 11, 18, 0.42) 100%
  );
}

.faq-contact-stack .contact {
  overflow: hidden;
  border-top: 0;
}

.faq-contact-stack .contact::after {
  background: linear-gradient(
    180deg,
    rgba(7, 11, 18, 0.26) 0%,
    rgba(7, 11, 18, 0.46) 38%,
    rgba(7, 11, 18, 0.62) 100%
  );
}

.stack-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 213, 229, 0) 0%,
    rgba(201, 213, 229, calc(var(--band-line-alpha) + 0.08)) 18%,
    rgba(201, 213, 229, calc(var(--band-line-alpha) + 0.08)) 82%,
    rgba(201, 213, 229, 0) 100%
  );
  pointer-events: none;
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
}

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

.form-status {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-status.success {
  color: #34d399;
}

.form-status.error {
  color: #f87171;
}

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

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 213, 229, 0.26);
  padding: 16px 14px;
  border-radius: 12px;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent;
  padding: 0 4px;
  text-shadow: 0 0 8px rgba(5, 8, 22, 0.6);
}

body.theme-light .contact .eyebrow {
  color: var(--accent);
}

body.theme-light .field input::placeholder,
body.theme-light .field textarea::placeholder {
  color: rgba(78, 93, 116, 0.65);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(125, 245, 196, 0.72);
  box-shadow: 0 0 0 4px rgba(125, 245, 196, 0.16);
}

.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label {
  transform: translateY(-32px) scale(0.9);
  color: var(--accent);
}

body.theme-light .field label {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface-1), var(--surface-2));
  border: 1px solid rgba(201, 213, 229, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.info-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.info-line p {
  margin: 0 0 4px;
}

.info-line strong {
  display: block;
  line-height: 1.25;
}

.info-line:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(125, 245, 196, 0.16);
  color: var(--accent);
  font-family: "Orbitron", sans-serif;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 213, 229, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.social-link.whatsapp {
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.25));
  border-color: rgba(34, 197, 94, 0.5);
}

.social-link.whatsapp svg {
  fill: #22c55e;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 245, 196, 0.68);
  box-shadow: 0 14px 28px rgba(46, 209, 143, 0.22);
}

body.theme-light .social-link {
  background: rgba(255, 255, 255, 0.6);
}

.gim-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  font-family: "JetBrains Mono", monospace;
}

.gim-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 16, 28, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(5, 8, 22, 0.5);
}

.gim-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.gim-icon svg {
  width: 20px;
  height: 20px;
  fill: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
}

.gim-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 260px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(9, 16, 28, 0.95);
  box-shadow: 0 18px 40px rgba(5, 8, 22, 0.6);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gim-assistant.open .gim-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gim-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gim-title {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.gim-close,
.gim-next {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.7rem;
}

.gim-message {
  margin: 0 0 12px;
  color: var(--muted);
}

body.theme-light .gim-trigger,
body.theme-light .gim-panel {
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  text-align: center;
  padding: 26px 0 48px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes grid-drift {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(24px) translateX(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-12px);
    opacity: 0.42;
  }
  100% {
    transform: translateY(0);
    opacity: 0.16;
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes radar-sweep {
  0% {
    transform: rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.95;
  }
}

@keyframes scan-sweep {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translateX(10px) scale(1.02);
    opacity: 0.76;
  }
}

@keyframes morph-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}


@media (max-width: 900px) {
  .section:not(.hero) {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

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

  .nav-links {
    position: fixed;
    top: 64px;
    right: 16px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    width: min(260px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-stats {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  :root {
    --orb-shift-x: -10px;
    --orb-shift-y: 8px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-bottom: 40px;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .services {
    padding-top: 28px;
  }

  .mission-grid {
    margin-top: 20px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .nav-inner {
    padding: 10px 16px;
  }

  .nav-actions {
    gap: 8px;
  }

  .theme-toggle {
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .toggle-track {
    width: 26px;
    height: 14px;
  }

  .toggle-thumb {
    width: 10px;
    height: 10px;
  }

  .menu-toggle {
    padding: 5px 7px;
  }

  .nav-links {
    top: 58px;
    right: 12px;
    padding: 16px;
  }

  .hero-visual {
    margin-top: 0;
    min-height: 280px;
  }

  .hero-text {
    padding-top: 20px;
  }

  .shared-orb {
    width: 260px;
  }

  .shared-tri {
    width: 170px;
    opacity: 0.3;
  }

  .section-floater {
    height: 60px;
  }

  .shared-western {
    width: 300px;
  }

  .shared-palm {
    width: 300px;
  }

  .info-card {
    padding: 20px;
  }

  .info-line {
    gap: 12px;
    align-items: flex-start;
  }

  .info-line strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .services-ring {
    top: 26px;
    left: 10px;
  }

  .services-west {
    left: 50%;
    top: 26%;
    transform: translate(-50%, -50%);
  }

  .floater-west {
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }

  .projects-west {
    top: 16px;
  }

  .testimonials-palm {
    right: 50%;
    top: 10px;
    transform: translateX(50%);
  }

  .contact-palm {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .progress-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .particles span {
    opacity: 0.2;
  }

  .founder-card {
    padding: 22px;
  }
}

/* ── IDE Terminal Cards ─────────────────────────────────────────────────── */

.ide-card {
  border-radius: 14px;
  overflow: hidden;
  font-family: "JetBrains Mono", "Space Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.65;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ide-hero {
  background: linear-gradient(165deg, #07111f 0%, #0b1a2e 60%, #0d2040 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 0 80px rgba(14, 165, 233, 0.1),
    inset 0 1px 0 rgba(56, 189, 248, 0.08);
  min-height: 520px;
  height: 100%;
}

.ide-about {
  background: linear-gradient(165deg, #06120a 0%, #0a1f0f 60%, #0d2611 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(34, 197, 94, 0.07),
    0 0 60px rgba(34, 197, 94, 0.09),
    inset 0 1px 0 rgba(34, 197, 94, 0.06);
  min-height: 360px;
}

.ide-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.ide-hero .ide-titlebar {
  background: rgba(5, 14, 28, 0.88);
}

.ide-about .ide-titlebar {
  background: rgba(4, 12, 7, 0.88);
}

.ide-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ide-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.dot-red       { background: #ff5f57; }
.dot-yellow    { background: #ffbd2e; }
.dot-green     { background: #28c840; }
.dot-green-bright { background: #22c55e; box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }

.ide-title-text {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.ide-badge {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #38bdf8;
}

.ide-badge-net {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.34);
  color: #4ade80;
}

.ide-body {
  padding: 16px 18px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ide-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 2;
}

.ide-hero .ide-body::after {
  background: linear-gradient(transparent, #07111f);
}

.ide-about .ide-body::after {
  background: linear-gradient(transparent, #06120a);
}

.ide-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ide-prompt {
  color: #38bdf8;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.8rem;
}

.ide-prompt-green {
  color: #4ade80;
  font-size: 0.8rem;
}

.ide-typed {
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-all;
}

.ide-cursor {
  display: inline-block;
  width: 7px;
  height: 0.85em;
  background: #38bdf8;
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: ide-blink 1s step-end infinite;
  flex-shrink: 0;
}

.ide-cursor-green {
  background: #4ade80;
}

@keyframes ide-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.ide-output-stream {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ide-out-line {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: ide-fadein 0.22s ease forwards;
  opacity: 0;
}

@keyframes ide-fadein {
  to { opacity: 1; }
}

.ide-tag {
  font-size: 0.58rem;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-weight: 600;
}

.tag-ok   { background: rgba(34, 197, 94, 0.16);  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.28); }
.tag-run  { background: rgba(56, 189, 248, 0.14);  color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.26); }
.tag-warn { background: rgba(251, 191, 36, 0.13);  color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.26); }
.tag-info { background: rgba(168, 85, 247, 0.13);  color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.26); }
.tag-net  { background: rgba(34, 197, 94, 0.11);   color: #86efac; border: 1px solid rgba(34, 197, 94, 0.22); }

.ide-out-text {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.68rem;
  flex: 1;
}

.ide-progress-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.ide-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  flex: 1;
  overflow: hidden;
  min-width: 60px;
}

.ide-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 0.35s ease;
}

.ide-hero  .ide-bar-fill { background: linear-gradient(90deg, #0ea5e9, #38bdf8); box-shadow: 0 0 8px rgba(56, 189, 248, 0.4); }
.ide-about .ide-bar-fill { background: linear-gradient(90deg, #16a34a, #4ade80); box-shadow: 0 0 8px rgba(74, 222, 128, 0.4); }

.ide-bar-pct {
  font-size: 0.58rem;
  color: rgba(226, 232, 240, 0.45);
  min-width: 30px;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .ide-hero {
    min-height: 380px;
  }

  .ide-about {
    min-height: 280px;
  }
}

/* ── End IDE Terminal Cards ─────────────────────────────────────────────── */

/* ── IDE Two-Panel: Code + Terminal ───────────────────────────────────────── */
.ide-code-panel {
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  min-height: 190px;
  max-height: 230px;
  overflow: hidden;
  position: relative;
}

.ide-code-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, #07111f);
  pointer-events: none;
}

.ide-code-lines {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: "JetBrains Mono", "Space Mono", monospace;
  font-size: 0.69rem;
  line-height: 1.7;
}

.ide-cl {
  display: flex;
  gap: 0;
  animation: ide-fadein 0.18s ease forwards;
  opacity: 0;
  white-space: pre;
}

.cl-ln {
  color: rgba(148, 163, 184, 0.28);
  min-width: 28px;
  user-select: none;
  font-size: 0.6rem;
  padding-right: 12px;
  text-align: right;
  flex-shrink: 0;
}

.cl-comment { color: rgba(125, 245, 196, 0.55); font-style: italic; }
.cl-keyword { color: #818cf8; }
.cl-string  { color: #fbbf24; }
.cl-fn      { color: #38bdf8; }
.cl-num     { color: #f472b6; }
.cl-plain   { color: rgba(226, 232, 240, 0.82); }

.ide-panel-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(14, 165, 233, 0.04);
  flex-shrink: 0;
}

.ide-panel-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(56, 189, 248, 0.55);
}

.ide-panel-divider::before,
.ide-panel-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(56, 189, 248, 0.12);
}

/* ── Process Timeline ──────────────────────────────────────────────────────── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 12px;
}

.pt-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pt-marker {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}

.pt-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(125, 245, 196, 0.08);
  border: 1px solid rgba(125, 245, 196, 0.28);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.pt-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 245, 196, 0.45), rgba(125, 245, 196, 0.08));
  margin-left: 0;
}

.pt-last .pt-marker {
  width: 42px;
}

.pt-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.pt-content p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  padding-right: 20px;
}

@media (max-width: 760px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pt-marker {
    margin-bottom: 14px;
  }

  .pt-connector {
    display: none;
  }

  .pt-content p {
    padding-right: 0;
  }
}

/* ── Project Showcase ─────────────────────────────────────────────────────── */
.project-showcase {
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  gap: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(201, 213, 229, 0.16);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.pshow-left {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(201, 213, 229, 0.1);
  background: linear-gradient(160deg, rgba(125, 245, 196, 0.04), transparent);
}

.pshow-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(125, 245, 196, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(125, 245, 196, 0.7); }
  50%       { box-shadow: 0 0 16px rgba(125, 245, 196, 1); }
}

.pshow-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.pshow-name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text);
}

.pshow-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pshow-name a:hover {
  color: var(--accent);
}

.pshow-type {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.pshow-completion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pshow-bar-labels {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.pshow-pct {
  color: var(--accent);
}

.pshow-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.pshow-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(125, 245, 196, 0.5);
}

.pshow-cta {
  margin-top: auto;
  width: fit-content;
}

.pshow-divider {
  width: 1px;
  background: rgba(201, 213, 229, 0.1);
}

.pshow-right {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pshow-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.pshow-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pshow-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.6;
}

.pf-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.pshow-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.pshow-stack span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 213, 229, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) {
  .project-showcase {
    grid-template-columns: 1fr;
  }

  .pshow-divider {
    width: 100%;
    height: 1px;
  }

  .pshow-left {
    border-right: none;
    border-bottom: 1px solid rgba(201, 213, 229, 0.1);
    padding: 28px 24px;
  }

  .pshow-right {
    padding: 28px 24px;
  }

  .pshow-name {
    font-size: 2rem;
  }

  .pshow-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ── Capability Block (replaces founder card) ──────────────────────────────── */
.capability-block {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(201, 213, 229, 0.18);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.capability-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 245, 196, 0.6), transparent);
}

.cap-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 213, 229, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.cap-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  background: rgba(7, 11, 18, 0.6);
}

.cap-val {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
}

.cap-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.cap-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 213, 229, 0.18), transparent);
  margin-bottom: 20px;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.cap-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 213, 229, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.cap-ceo-link {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 213, 229, 0.12);
}

.cap-ceo-link a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.cap-ceo-link a:hover {
  opacity: 0.78;
}

.cap-ceo-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.cap-ceo-name {
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

/* ── Testimonials Marquee ──────────────────────────────────────────────────── */
.marquee-outer {
  overflow: hidden;
  padding: 16px 0 24px;
  position: relative;
}

.marquee-outer::before,
.marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-alt), transparent);
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-alt), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.tcard {
  flex-shrink: 0;
  width: 320px;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid rgba(201, 213, 229, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease;
}

.tcard:hover {
  border-color: rgba(125, 245, 196, 0.35);
}

.tcard-quote {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.82);
  margin: 0;
  font-style: italic;
}

.tcard-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

/* ── Client Logos Strip ────────────────────────────────────────────────────── */
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(201, 213, 229, 0.1);
}

.client-logos span {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 213, 229, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.client-logos span:hover {
  border-color: rgba(125, 245, 196, 0.4);
  color: var(--text);
}

/* ── AnyService Slide-In Ad ────────────────────────────────────────────────── */
.as-ad {
  position: fixed;
  top: 140px;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
  --as-panel-w: 260px;
  transform: translateX(var(--as-panel-w));
  transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.as-ad.is-open {
  transform: translateX(0);
}

.as-tab {
  pointer-events: all;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: linear-gradient(180deg, #0f2a20, #091a12);
  border: 1px solid rgba(125, 245, 196, 0.35);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.as-tab:hover {
  background: linear-gradient(180deg, #163a2c, #0f2219);
  border-color: rgba(125, 245, 196, 0.6);
}

.as-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(125, 245, 196, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.as-tab-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.as-panel {
  pointer-events: all;
  width: var(--as-panel-w);
  background: linear-gradient(160deg, #06141f, #040e17);
  border: 1px solid rgba(125, 245, 196, 0.25);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -8px 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.as-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 245, 196, 0.5), transparent);
}

.as-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(226, 232, 240, 0.4);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.as-close:hover {
  color: var(--accent);
}

.as-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0;
}

.as-msgs {
  position: relative;
  height: 42px;
  overflow: hidden;
}

.as-msg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.as-msg.is-active {
  opacity: 1;
  transform: translateY(0);
}

.as-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.as-btn {
  padding: 10px 16px;
  font-size: 0.65rem;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 560px) {
  .as-ad {
    --as-panel-w: 220px;
  }

  .as-msg {
    font-size: 0.88rem;
  }
}

/* ── End AnyService Ad ─────────────────────────────────────────────────────── */

/* ── End Section Refinements ───────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .shared-section-video,
  .hero-video,
  .section-video {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }
}
