
:root {
  --bg:           #F5F4F0;
  --bg-dark:      #0C0C0B;
  --bg-dark-2:    #111110;
  --text:         #111111;
  --text-muted:   #6B6B6B;
  --text-light:   #F5F4F0;
  --text-light-muted: rgba(245,244,240,0.55);
  --border:       rgba(0,0,0,0.09);
  --border-light: rgba(255,255,255,0.1);
  --accent:       #111111;

  --font:         'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-pill:  999px;

  --nav-h:        64px;
  --max-w:        1120px;
  --section-gap:  120px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { cursor: pointer; font-family: var(--font); border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-gap) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.section-eyebrow--light { color: var(--text-light-muted); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.section-heading--light { color: var(--text-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, transform 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--text);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}

.btn--white {
  background: #fff;
  color: var(--text);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover { border-color: #fff; opacity: 1; }

.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 244, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav__mobile-cta { margin-top: 20px; width: fit-content; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  animation: heroFadeIn 1s var(--ease-out) both;
}

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

.hero__heading {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  margin-top: 0;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeIn 1.2s var(--ease-out) 0.2s both;
}

.dot-orb {
  width: 420px;
  height: 420px;
  position: relative;
  flex-shrink: 0;
}

.dot-orb--sm {
  width: 300px;
  height: 300px;
}

.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  background: var(--bg);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 80s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker__item {
  display: inline-block;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 14px 32px;
}

.ticker__sep {
  color: var(--border);
  font-size: 20px;
  padding: 0 4px;
}

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

.services__list {
  border-top: 1px solid var(--border);
}

.services__item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.services__item-header {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  transition: color 0.2s;
}

.services__item:hover .services__item-header { color: var(--text); }

.services__num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.services__name {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services__arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.2s;
  flex-shrink: 0;
}

.services__item.open .services__arrow {
  transform: rotate(90deg);
  color: var(--text);
}

.services__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s;
  opacity: 0;
  padding-left: 72px;
}

.services__item.open .services__item-body {
  max-height: 300px;
  opacity: 1;
}

.services__item-body p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.7;
}

.services__item-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  padding-bottom: 28px;
}

.services__item-body li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.services__item-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-size: 11px;
}

.problem {
  background: var(--bg-dark);
  color: var(--text-light);
}

.problem__quote {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin-bottom: 48px;
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 32px;
  max-width: 820px;
}

.problem__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 820px;
}

.problem__body p {
  font-size: 16px;
  color: var(--text-light-muted);
  line-height: 1.75;
}

.problem__body strong {
  color: var(--text-light);
  font-weight: 600;
}

.process {
  background: var(--bg-dark-2);
  color: var(--text-light);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process__steps {
  border-top: 1px solid var(--border-light);
}

.process__step {
  border-bottom: 1px solid var(--border-light);
}

.process__step-header {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  width: 100%;
  text-align: left;
  color: var(--text-light);
  transition: opacity 0.2s;
}

.process__step-header:hover { opacity: 0.8; }

.process__step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  font-style: italic;
}

.process__step-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.process__step-desc {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0;
}

.process__step[data-open] .process__step-desc {
  max-height: 80px;
  opacity: 1;
}

.process__step-toggle {
  font-size: 20px;
  color: var(--text-light-muted);
  font-weight: 300;
  transition: transform 0.3s, color 0.2s;
}

.process__step[data-open] .process__step-toggle {
  color: var(--text-light);
}

.terminal {
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 13px;
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #141413;
}

.terminal__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.terminal__dot--red    { background: #FF5F57; }
.terminal__dot--yellow { background: #FEBC2E; }
.terminal__dot--green  { background: #28C840; }

.terminal__file {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.terminal__body { padding: 20px 20px 16px; }

.terminal__line {
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.t-dim    { color: rgba(255,255,255,0.2); user-select: none; margin-right: 16px; }
.t-purple { color: #c792ea; }
.t-green  { color: #c3e88d; }
.t-blue   { color: #82aaff; }
.t-cyan   { color: #89ddff; }
.t-orange { color: #f78c6c; }
.t-white  { color: rgba(255,255,255,0.85); }

.terminal__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.terminal__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  flex-shrink: 0;
  box-shadow: 0 0 6px #28C840;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.about__stat {
  border-bottom: 1px solid var(--border);
  padding-bottom: 36px;
}

.about__stat:last-child { border-bottom: none; }

.about__stat-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline;
}

.about__stat-num--sm {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about__stat-suffix {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-muted);
}

.about__stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.about__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about__copy p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 560px;
}

.about__copy .btn { margin-top: 8px; }

.clients .section-heading { margin-bottom: 56px; }

.logo-ticker {
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.logo-ticker + .logo-ticker { margin-top: 16px; }

.logo-ticker__track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  padding-right: 32px;
  will-change: transform;
}

.logo-ticker__track--fwd {
  animation: logoFwd 88.8s linear infinite;
}

.logo-ticker__track--rev {
  animation: logoRev 88.8s linear infinite;
}

.logo-ticker__track--slow {
  animation-duration: 120s;
}

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

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

.clients {
  background: #111110;
  color: var(--text-light);
  padding-bottom: 0;
}

.client-logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 140px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.client-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.client-logo-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0) brightness(0.85) contrast(1) opacity(0.75);
  transition: all 0.3s ease;
}

.client-logo-wrapper:hover .client-logo-img {
  filter: grayscale(0) brightness(1.05) contrast(1) opacity(1);
}

.clients__and-more {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 48px;
}

.clients__and-more p {
  font-size: 13px;
  color: var(--text-light-muted);
  letter-spacing: 0.06em;
  font-style: italic;
}

.testimonials__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}

.testimonials__counter {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.testimonials__slider {
  position: relative;
  min-height: 280px;
  margin: 32px 0 40px;
}

.testimonials__slide {
  display: none;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  align-items: start;
  animation: slideIn 0.5s var(--ease-out) both;
}

.testimonials__slide.active { display: grid; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonials__quote {
  grid-column: 1;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--text);
}

.testimonials__author {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonials__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.testimonials__author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonials__result {
  grid-column: 2;
  grid-row: 1 / 3;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  min-width: 200px;
  align-self: center;
}

.testimonials__result-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonials__result-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.testimonials__nav {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
}

.testimonials__dot.active {
  background: var(--text);
  width: 44px;
}

.contact { background: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

.contact__email {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}

.contact__email:hover { opacity: 0.6; }

.contact__calendly {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.contact__calendly:hover { opacity: 0.6; }

.contact__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
  user-select: none;
}

.contact__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
  opacity: 0.4;
  transition: all 0.2s ease;
}

.contact__badge:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text);
}

.contact__badge:hover::before {
  background-color: var(--text);
  opacity: 0.85;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: rgba(0,0,0,0.03);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text);
  background: #fff;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.cta-banner {
  background: var(--bg-dark);
  overflow: hidden;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cta-banner__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-banner__sub {
  font-size: 17px;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.footer__socials a:hover { color: var(--text-light); }

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

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 14px;
  color: var(--text-light-muted);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--text-light); }

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-light-muted);
}

.dot-orb canvas {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  :root {
    --section-gap: 80px;
  }

  
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero__sub { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  
  .services__item-header {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
  }

  .services__item-body { padding-left: 56px; }

  .services__item-body ul { grid-template-columns: 1fr; }

  
  .problem__body { grid-template-columns: 1fr; gap: 20px; }

  
  .process__grid { grid-template-columns: 1fr; gap: 48px; }

  
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .about__stat { border-bottom: none; border-right: 1px solid var(--border); padding: 0 24px 0 0; padding-bottom: 0; }
  .about__stat:last-child { border-right: none; }

  
  .testimonials__slide { grid-template-columns: 1fr; }
  .testimonials__result { grid-column: 1; grid-row: auto; }

  
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__visual { display: none; }

  
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }

  /* Slow all carousels down — on a narrow viewport the same px/s feels much faster */
  .ticker__track {
    animation-duration: 120s;
  }

  .logo-ticker__track--fwd,
  .logo-ticker__track--rev {
    animation-duration: 130s;
  }

  .logo-ticker__track--slow {
    animation-duration: 160s;
  }
}

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

::selection {
  background: rgba(17,17,17,0.12);
}

@media (max-width: 600px) {
  :root {
    --section-gap: 64px;
  }

  .hero__heading { font-size: clamp(2.2rem, 9vw, 3rem); }

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

  .services__item-header {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    padding: 20px 0;
  }

  .services__item-body { padding-left: 48px; }

  .about__stats { flex-direction: column; }
  .about__stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .about__stat:last-child { border-bottom: none; }

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

  .cta-banner__actions { flex-direction: column; }

  .testimonials__result { display: none; }
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
  opacity: 0.8;
}

.portfolio-showcase {
  background: #111110;
  color: var(--text-light);
}

.portfolio-ticker {
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.portfolio-ticker__track {
  display: inline-flex;
  gap: 30px;
  animation: portfolioScroll 246.3s linear infinite;
  white-space: nowrap;
  padding-right: 30px;
  will-change: transform;
}

.portfolio-ticker__track:hover {
  animation-play-state: paused;
}

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

.portfolio-card {
  width: 480px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  background: var(--bg-dark-2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.25);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

@media (max-width: 900px) {
  .portfolio-card {
    width: 340px;
    height: 210px;
  }
  .portfolio-ticker__track {
    animation-duration: 240s;
  }
}

@media (max-width: 600px) {
  .ticker__track {
    animation-duration: 160s;
  }

  .logo-ticker__track--fwd,
  .logo-ticker__track--rev,
  .logo-ticker__track--slow {
    animation-duration: 200s;
  }

  .portfolio-ticker__track {
    animation-duration: 300s;
  }
}
