*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --lime: #dcf44d;
  --graphite: #1e1e1e;
  --offwhite: #f5f7f2;
  --fg: #f5f7f2;
  --fg-muted: rgba(245, 247, 242, 0.55);
  --fg-dim: rgba(245, 247, 242, 0.28);
  --border: rgba(245, 247, 242, 0.08);
  --surface: #242424;
}
html {
  background: var(--graphite);
}
body {
  font-family: "Sora", sans-serif;
  background: var(--graphite);
  color: var(--fg);
  overflow-x: hidden;
}
::selection {
  background: var(--lime);
  color: var(--graphite);
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--graphite);
}
::-webkit-scrollbar-thumb {
  background: rgba(220, 244, 77, 0.35);
  border-radius: 2px;
}
#cursor,
#cursor-follower {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  html {
    cursor: none;
  }
  #cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
      width 0.28s cubic-bezier(0.23, 1, 0.32, 1),
      height 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    mix-blend-mode: difference;
  }
  #cursor.hover {
    width: 56px;
    height: 56px;
  }
  #cursor.clicking {
    width: 6px;
    height: 6px;
  }
  #cursor-follower {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(220, 244, 77, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: opacity 0.3s;
  }
}
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 52px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}
#nav.scrolled {
  background: var(--graphite);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-logo {
  height: 25px;
  display: block;
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--fg);
}
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s;
}
.nav-burger:hover {
  border-color: rgba(245, 247, 242, 0.25);
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--graphite);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 32px;
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mm-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 420px;
}
.mm-link {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.25s;
  cursor: pointer;
}
.mm-link:active {
  color: var(--lime);
}
#mobile-menu.open .mm-link {
  animation: mmIn 0.5s ease both;
}
#mobile-menu.open .mm-link:nth-child(1) {
  animation-delay: 0.08s;
}
#mobile-menu.open .mm-link:nth-child(2) {
  animation-delay: 0.14s;
}
#mobile-menu.open .mm-link:nth-child(3) {
  animation-delay: 0.2s;
}
#mobile-menu.open .mm-link:nth-child(4) {
  animation-delay: 0.26s;
}
#mobile-menu.open #mm-cta {
  animation: mmIn 0.5s ease both;
  animation-delay: 0.32s;
}
@keyframes mmIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
#mm-cta {
  margin-top: 24px;
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--graphite);
  border: none;
  border-radius: 6px;
  padding: 0 22px;
  height: 42px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.15s;
  white-space: nowrap;
}
.magnetic {
  will-change: transform;
}
.btn:hover {
  background: #c8e030;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(245, 247, 242, 0.15);
}
.btn-ghost:hover {
  border-color: rgba(245, 247, 242, 0.3);
  background: transparent;
}
.btn-dark {
  background: var(--graphite);
  color: var(--lime);
}
.btn-dark:hover {
  background: #2a2a2a;
}
.btn-lg {
  height: 56px;
  padding: 0 36px;
  font-size: 15px;
  border-radius: 8px;
}
.btn-xl {
  height: 64px;
  padding: 0 48px;
  font-size: 16px;
  border-radius: 8px;
}
#hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 132px 52px 96px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--graphite);
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 60% 40%,
    rgba(220, 244, 77, 0.04),
    rgba(108, 59, 255, 0.06),
    rgba(31, 92, 255, 0.05),
    rgba(220, 244, 77, 0.03),
    rgba(30, 30, 30, 0) 60%
  );
  animation: heroRot 28s linear infinite;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 70% 30%,
      rgba(220, 244, 77, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 20% 70%,
      rgba(108, 59, 255, 0.04) 0%,
      transparent 60%
    );
}
@keyframes heroRot {
  to {
    transform: rotate(360deg);
  }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 100% 80% at 50% 100%,
    rgba(20, 20, 20, 0) 0%,
    rgba(20, 20, 20, 0.5) 50%,
    rgba(20, 20, 20, 0.98) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(220, 244, 77, 0.07);
  border: 1px solid rgba(220, 244, 77, 0.16);
  border-radius: 4px;
  padding: 7px 13px;
  margin-bottom: 36px;
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-eyebrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-hl {
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--offwhite);
}
.hero-hl .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.08em 0.04em 0.14em;
  margin: -0.08em -0.04em -0.14em;
  line-height: 1;
}
.hero-hl .wi {
  display: inline-block;
  transform: translateY(125%);
}
.hero-hl .lime {
  color: var(--lime);
}
.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 500px;
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
  flex-shrink: 0;
}
.stat-val {
  font-size: 40px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 5px;
  line-height: 1.4;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
#marquee {
  background: var(--lime);
  padding: 13px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 30s linear infinite;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--graphite);
}
.mq-sep {
  opacity: 0.3;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
}
.s-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
#svc-section {
  padding: 120px 0;
  background: var(--graphite);
}
.svc-header {
  margin-bottom: 48px;
}
.svc-scroll-wrap {
  position: relative;
}
.svc-scroll-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(to left, var(--graphite), transparent);
  pointer-events: none;
  z-index: 2;
}
#svc-track {
  display: flex;
  gap: 20px;
  padding-top: 0;
  padding-right: 52px;
  padding-bottom: 8px;
  padding-left: 0;
  margin-left: max(96px, calc((100vw - 1320px) / 2 + 96px));
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
@media (min-width: 1101px) {
  .svc-header,
  .svc-controls {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(96px, calc((100vw - 1320px) / 2 + 96px));
    padding-right: max(52px, calc((100vw - 1320px) / 2 + 52px));
  }
}
#svc-track:active {
  cursor: grabbing;
}
#svc-track::-webkit-scrollbar {
  display: none;
}
.svc-card {
  flex-shrink: 0;
  width: 400px;
  min-height: 500px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.svc-card:hover {
  border-color: rgba(245, 247, 242, 0.18);
  transform: translateY(-4px);
}
.svc-bg-num {
  position: absolute;
  top: -16px;
  right: -8px;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(245, 247, 242, 0.04);
  pointer-events: none;
  user-select: none;
}
.svc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.svc-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.svc-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
  flex: 1;
}
.svc-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.svc-link {
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.svc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.svc-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  font-size: 18px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.svc-arrow:hover {
  border-color: var(--lime);
  background: rgba(220, 244, 77, 0.08);
  color: var(--lime);
}
.svc-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.svc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.svc-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(245, 247, 242, 0.2);
  transition:
    background 0.3s,
    width 0.3s;
  cursor: pointer;
}
.svc-dot.active {
  background: var(--lime);
  width: 20px;
}
#about {
  padding: 160px 0;
  background: var(--graphite);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
}
.about-img-badge .badge-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-img-badge .badge-lbl {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.about-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-headline .lime {
  color: var(--lime);
}
.about-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.about-pillar:last-child {
  border-bottom: 1px solid var(--border);
}
.about-pillar-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  min-width: 24px;
  margin-top: 2px;
}
.about-pillar-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.about-pillar-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
#method {
  padding: 160px 0;
  background: #111;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin: -60px 0;
}
.mth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.mth-hl {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.mth-step {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.mth-step:last-child {
  border-bottom: none;
}
.mth-n {
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  min-width: 28px;
  margin-top: 3px;
}
.mth-ttl {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.mth-dsc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}
#results {
  padding: 140px 0;
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}
#results::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(220, 244, 77, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.results-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.results-hl {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.result-cell {
  background: var(--surface);
  padding: 40px 32px;
}
.result-cell:hover {
  background: #2a2a2a;
}
.result-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.result-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-weight: 500;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #333;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
}
.testimonial-role {
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 2px;
}
#work {
  padding: 140px 0;
  background: #111;
  position: relative;
  z-index: 3;
}
.work-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.work-hl {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.wi1 {
  grid-column: span 7;
}
.wi2 {
  grid-column: span 5;
}
.wi3 {
  grid-column: span 5;
}
.wi4 {
  grid-column: span 7;
}
.work-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  min-height: 300px;
}
.work-item:hover img {
  transform: scale(1.05);
}
.work-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.1) 50%,
    transparent 100%
  );
  opacity: 1;
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.work-item:hover .work-ov {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(10, 10, 10, 0.3) 55%,
    transparent 100%
  );
}
.work-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-ttl {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
#process {
  padding: 160px 0;
  background: var(--graphite);
}
.process-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.process-hl {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.process-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: attr(data-n);
  position: absolute;
  top: -10px;
  right: -4px;
  font-size: 96px;
  font-weight: 800;
  color: rgba(245, 247, 242, 0.04);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
}
.process-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.process-card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.process-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
#cta {
  background: var(--lime);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 3;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.cta-pat {
  position: absolute;
  inset: 0;
  background-size: 90px;
  opacity: 0.18;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-hl {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--graphite);
}
footer {
  background: #0a0a0a;
  padding: 88px 0 40px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.ft-logo {
  height: 24px;
  width: auto;
  display: block;
}
.ft-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 20px;
}
.ft-col-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 247, 242, 0.22);
  margin-bottom: 16px;
}
.ft-link {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.15s;
  margin-bottom: 10px;
  text-decoration: none;
}
.ft-link:hover {
  color: var(--fg);
}
.ft-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.ft-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}
.ft-social-icon:hover {
  border-color: rgba(220, 244, 77, 0.4);
  background: rgba(220, 244, 77, 0.06);
}
.ft-social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--fg-muted);
  transition: fill 0.2s;
}
.ft-social-icon:hover svg {
  fill: var(--lime);
}
.ft-bot {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-copy {
  font-size: 12px;
  color: rgba(245, 247, 242, 0.2);
}
#contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#contact-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.co-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 20px;
  cursor: pointer;
  color: var(--fg-muted);
  background: none;
  border: none;
  font-family: "Sora", sans-serif;
  transition: color 0.15s;
  line-height: 1;
}
.co-close:hover {
  color: var(--fg);
}
.co-box {
  max-width: 580px;
  width: 100%;
  padding: 0 24px;
}
.co-input {
  width: 100%;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.co-input::placeholder {
  color: rgba(245, 247, 242, 0.18);
}
.co-input:focus {
  border-color: rgba(220, 244, 77, 0.4);
  box-shadow: 0 0 0 3px rgba(220, 244, 77, 0.05);
}
.co-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 247, 242, 0.3);
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 1100px) {
  #nav {
    padding: 0 32px;
  }
  .nav-links {
    gap: 24px;
  }
  .container {
    padding: 0 32px;
  }
  #hero {
    padding: 124px 32px 80px;
  }
  #svc-track {
    padding: 0 32px 8px 0;
    margin-left: 32px;
  }
  .about-grid {
    gap: 60px;
  }
  .mth-grid {
    gap: 60px;
  }
  .ft-grid {
    gap: 36px;
  }
  .results-results-top,
  .work-hdr {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  #nav {
    padding: 0 20px;
    height: 64px;
  }
  .nav-links .nav-link {
    display: none;
  }
  .nav-links {
    gap: 10px;
  }
  #nav-cta {
    display: none;
  }
  .nav-burger {
    display: inline-flex;
  }
  #hero {
    padding: 104px 20px 72px;
    min-height: auto;
  }
  .scroll-hint {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    gap: 20px 28px;
  }
  .hero-hl {
    font-size: clamp(48px, 9vw, 80px);
  }
  .stat-val {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 15px;
    margin-top: 20px;
  }
  .hero-ctas {
    flex-wrap: wrap;
  }
  .container {
    padding: 0 20px;
  }
  #svc-section {
    padding: 80px 0;
  }
  .svc-header {
    padding: 0 20px;
  }
  #svc-track {
    padding: 0 20px 8px 0;
    margin-left: 20px;
    gap: 14px;
  }
  .svc-scroll-wrap::after {
    width: 60px;
  }
  .svc-card {
    width: min(340px, 82vw);
    min-height: auto;
    padding: 28px 24px;
  }
  .svc-controls {
    padding: 0 20px;
  }
  #about {
    padding: 80px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img {
    aspect-ratio: 16/10;
    max-height: 360px;
  }
  #method {
    padding: 110px 0 90px;
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin: -40px 0;
  }
  .mth-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #results {
    padding: 80px 0;
  }
  .results-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .results-top p {
    text-align: left !important;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .result-cell {
    padding: 28px 20px;
  }
  .testimonial-row {
    grid-template-columns: 1fr;
  }
  #work {
    padding: 80px 0;
  }
  .work-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .wi1,
  .wi2,
  .wi3 {
    grid-column: span 6;
  }
  .wi4 {
    grid-column: span 12;
  }
  .work-item img {
    min-height: 240px;
  }
  #process {
    padding: 80px 0;
  }
  .process-header {
    max-width: 100%;
    text-align: left;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  #cta {
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    padding: 100px 0 72px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ft-desc {
    max-width: 100%;
  }
  #contact-overlay .co-box {
    padding: 0 16px;
  }
  .co-close {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .wi1,
  .wi2,
  .wi3,
  .wi4 {
    grid-column: span 12;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    padding: 24px;
  }
  .svc-card {
    width: min(320px, 86vw);
    padding: 24px 22px;
  }
  .svc-title {
    font-size: 24px;
  }
  #method {
    padding: 88px 0 72px;
  }
  #about {
    padding: 64px 0;
  }
  #results {
    padding: 64px 0;
  }
  #work {
    padding: 64px 0;
  }
  #process {
    padding: 64px 0;
  }
  .ft-grid {
    gap: 28px;
  }
  .btn-lg {
    height: 52px;
    padding: 0 28px;
    font-size: 14px;
  }
  .btn-xl {
    height: 56px;
    padding: 0 32px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  #hero {
    padding: 96px 20px 56px;
  }
  .hero-stats {
    gap: 14px 24px;
  }
  .stat-val {
    font-size: 22px;
  }
  .stat-lbl {
    font-size: 10px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .ft-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    width: 90vw;
  }
  #svc-track {
    padding: 0 16px 8px 0;
    margin-left: 16px;
  }
  .svc-scroll-wrap::after {
    display: none;
  }
  .hero-ctas {
    width: 100%;
  }
  .hero-ctas .btn {
    flex: 1;
  }
  .hero-eyebrow {
    margin-bottom: 24px;
  }
  .hero-eyebrow span {
    font-size: 9px;
  }
  #cta {
    padding: 80px 0 56px;
  }
  .cta-inner .btn {
    width: 100%;
  }
}
@media (hover: none) {
  .magnetic {
    transform: none !important;
  }
  .svc-card:hover {
    transform: none;
  }
  .work-item:hover img {
    transform: none;
  }
}

/* ===========================
   Service detail page
   =========================== */
:root { --svc-accent: var(--lime); }
body[data-page="service"] { background: var(--graphite); }
body[data-page="service"]:not(.sd-ready) main { opacity: 0; }
body[data-page="service"] main { transition: opacity .35s ease; }

.sd-hero {
  position: relative;
  padding: 152px 0 96px;
  overflow: hidden;
  background: var(--graphite);
}
.sd-hero::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, color-mix(in srgb, var(--svc-accent) 14%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.sd-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--svc-accent);
  margin-bottom: 32px;
}
.sd-hero-eyebrow .sd-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--svc-accent);
  letter-spacing: 0.1em;
}
.sd-hero-eyebrow .sd-sep {
  opacity: 0.4;
}
.sd-hero-title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--offwhite);
  max-width: 14ch;
  margin-bottom: 28px;
}
.sd-hero-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 56ch;
  letter-spacing: -0.01em;
}
.sd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.sd-hero-meta-item .sd-meta-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 6px;
}
.sd-hero-meta-item .sd-meta-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.sd-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s, gap 0.2s;
}
.sd-hero-back:hover {
  color: var(--fg);
  gap: 12px;
}

.sd-section {
  padding: 96px 0;
  background: var(--graphite);
}
.sd-section.alt {
  background: #161616;
}
.sd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--svc-accent);
  margin-bottom: 14px;
}
.sd-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 56px;
  color: var(--fg);
}

.sd-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.sd-intro-p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sd-intro-p:last-child { margin-bottom: 0; }

.sd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sd-pillar {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
}
.sd-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--svc-accent);
}
.sd-pillar-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--fg);
}
.sd-pillar-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.sd-deliv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border);
}
.sd-deliv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.sd-deliv-item:nth-child(odd) {
  padding-right: 24px;
}
.sd-deliv-item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.sd-deliv-bullet {
  width: 8px;
  height: 8px;
  background: var(--svc-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.sd-process-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
}
.sd-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.sd-step:last-child { border-bottom: none; }
.sd-step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--svc-accent);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.sd-step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--fg);
}
.sd-step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.sd-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sd-other {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  --card-accent: var(--lime);
}
.sd-other:hover {
  border-color: color-mix(in srgb, var(--card-accent) 50%, transparent);
  transform: translateY(-3px);
}
.sd-other-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--card-accent);
  letter-spacing: 0.08em;
}
.sd-other-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.sd-other-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: auto;
}
.sd-other-arrow {
  font-size: 18px;
  color: var(--card-accent);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .sd-hero { padding: 132px 0 80px; }
  .sd-section { padding: 80px 0; }
  .sd-intro { grid-template-columns: 1fr; gap: 24px; }
  .sd-pillars-grid { grid-template-columns: 1fr 1fr; }
  .sd-other-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .sd-hero { padding: 112px 0 64px; }
  .sd-pillars-grid { grid-template-columns: 1fr; }
  .sd-deliv-list { grid-template-columns: 1fr; }
  .sd-deliv-item:nth-child(odd) { padding-right: 0; }
  .sd-deliv-item:nth-child(even) { padding-left: 0; border-left: none; }
  .sd-other-grid { grid-template-columns: 1fr 1fr; }
  .sd-section-title { margin-bottom: 36px; }
  .sd-step { grid-template-columns: 60px 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .sd-hero { padding: 96px 0 56px; }
  .sd-section { padding: 64px 0; }
  .sd-other-grid { grid-template-columns: 1fr; }
  .sd-hero-meta { gap: 24px; }
}

/* ===========================
   About page (Sobre)
   =========================== */
body[data-page="about"]:not(.ab-ready) main { opacity: 0; }
body[data-page="about"] main { transition: opacity 0.4s ease; }

.ab-hero {
  position: relative;
  padding: 168px 0 120px;
  background: var(--graphite);
  overflow: hidden;
}
.ab-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}
.ab-hero-orb-a {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(220, 244, 77, 0.25) 0%, transparent 70%);
}
.ab-hero-orb-b {
  width: 480px;
  height: 480px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(108, 59, 255, 0.22) 0%, transparent 70%);
}
.ab-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  padding: 6px 12px;
  background: rgba(220, 244, 77, 0.08);
  border: 1px solid rgba(220, 244, 77, 0.18);
  border-radius: 4px;
}
.ab-hero-title {
  font-size: clamp(48px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--offwhite);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.ab-hero-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  max-width: 60ch;
  position: relative;
  z-index: 2;
}
.ab-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.ab-stat-val {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
}
.ab-stat-lbl {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.ab-section {
  padding: 96px 0;
  background: var(--graphite);
}
.ab-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.ab-section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--fg);
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ab-value {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
}
.ab-value-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.ab-value-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--fg);
}
.ab-value-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.ab-manifesto {
  padding: 120px 0;
  background: #111;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin: -60px 0;
}
.ab-manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.ab-manifesto-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--offwhite);
  margin-bottom: 56px;
  max-width: 18ch;
}
.ab-manifesto-lines {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 760px;
}
.ab-manifesto-line {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--fg);
  padding: 22px 0 22px 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
  letter-spacing: -0.01em;
}
.ab-manifesto-line:first-child { border-top: 1px solid var(--border); }
.ab-manifesto-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--lime);
}

.ab-team-section {
  padding: 120px 0 96px;
  background: var(--graphite);
}
.ab-team-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.ab-team-blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 44ch;
  letter-spacing: -0.01em;
}
.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ab-member {
  --g1: var(--lime);
  --g2: var(--lime);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-member:hover {
  border-color: rgba(245, 247, 242, 0.18);
  transform: translateY(-4px);
}
.ab-member::after {
  content: "";
  position: absolute;
  inset: auto -1px -1px -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  opacity: 0;
  transition: opacity 0.35s;
}
.ab-member:hover::after { opacity: 1; }
.ab-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.ab-avatar-shape {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 140deg at 50% 50%, var(--g1), var(--g2), var(--g1));
  z-index: 1;
  transition: transform 0.6s ease;
}
.ab-member:hover .ab-avatar-shape {
  transform: rotate(140deg);
}
.ab-avatar::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--surface);
  z-index: 2;
}
.ab-avatar-initials {
  position: relative;
  z-index: 3;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ab-member-loc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.ab-member-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
}
.ab-member-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.ab-member-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
}

.ab-locations-section {
  padding: 96px 0 120px;
  background: var(--graphite);
}
.ab-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.ab-location {
  --loc-accent: var(--lime);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.ab-location:hover {
  border-color: color-mix(in srgb, var(--loc-accent) 35%, transparent);
  transform: translateY(-3px);
}
.ab-location-accent {
  position: absolute;
  top: 0;
  left: 32px;
  width: 36px;
  height: 4px;
  background: var(--loc-accent);
  border-radius: 0 0 4px 4px;
}
.ab-location-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--loc-accent);
  margin-bottom: 16px;
}
.ab-location-city {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 6px;
}
.ab-location-country {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.ab-location-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .ab-team-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-locations-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-team-header { gap: 48px; }
}
@media (max-width: 900px) {
  .ab-hero { padding: 132px 0 88px; }
  .ab-section { padding: 72px 0; }
  .ab-manifesto { padding: 88px 0; clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%); margin: -40px 0; }
  .ab-team-section { padding: 80px 0 64px; }
  .ab-team-header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-locations-grid { grid-template-columns: 1fr; }
  .ab-locations-section { padding: 64px 0 88px; }
  .ab-hero-stats { gap: 32px; }
}
@media (max-width: 480px) {
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-hero { padding: 112px 0 64px; }
  .ab-manifesto-line { padding-left: 28px; }
  .ab-avatar { width: 64px; height: 64px; }
  .ab-avatar-initials { font-size: 18px; }
}
