:root {
  --black: #0a0a0a;
  --black-deep: #050505;
  --black-soft: #151515;
  --white: #f7f7f5;
  --white-dim: #c7c7c4;
  --gray: #1a1a1a;
  --gray-mid: #232323;
  --gray-border: #333333;
  --gray-border-soft: rgba(255,255,255,0.08);
  --gray-light: #8a8a8a;
  --glow: rgba(255,255,255,0.10);
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  position: relative;
  width: 100%;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.08), transparent 45%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.06), transparent 48%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.05), transparent 55%),
    var(--black);
  background-attachment: fixed;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* film-grain texture layer for tactile depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

header, section, footer { position: relative; z-index: 1; }

h1, h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

/* highlighter-style emphasis instead of a brand color */
.accent {
  position: relative;
  color: var(--white);
  z-index: 1;
}
.accent::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 32%;
  background: rgba(255,255,255,0.14);
  border-radius: 3px;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
}
.eyebrow.center { display: flex; justify-content: center; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, filter 0.35s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(180deg, #ffffff, #e4e4e2);
  color: var(--black-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 10px 24px rgba(0,0,0,0.55);
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 0 1px rgba(255,255,255,0.4),
    0 16px 36px rgba(0,0,0,0.6),
    0 0 30px rgba(255,255,255,0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.25),
    0 16px 36px rgba(0,0,0,0.5);
}

.glow-btn {
  animation: glowPulse 2.6s ease-in-out infinite;
}
.glow-btn:hover {
  animation-play-state: paused;
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.6) inset,
      0 10px 24px rgba(0,0,0,0.55),
      0 0 16px rgba(255,255,255,0.15);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 10px 28px rgba(0,0,0,0.55),
      0 0 38px rgba(255,255,255,0.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .glow-btn { animation: none; }
}

.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
  background: linear-gradient(180deg, #ffffff, #e4e4e2);
  color: var(--black-deep);
}

.btn-nav-secondary {
  padding: 10px 22px;
  font-size: 14px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-nav-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
}

@media (max-width: 600px) {
  .btn-nav,
  .btn-nav-secondary {
    padding: 6px 10px;
    font-size: 10px;
    white-space: nowrap;
  }
}

.btn-full { width: 100%; text-align: center; }

/* NAV */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 100;
  border-radius: 20px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.nav-scrolled {
  background: rgba(247,247,245,0.6);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.35s ease;
}
.nav.nav-scrolled .logo-name {
  color: var(--black);
}
.logo-icon-nav {
  height: 38px;
  width: auto;
  display: block;
  transition: filter 0.35s ease;
}
.nav.nav-scrolled .logo-icon-nav {
  filter: invert(1);
}
.nav.nav-scrolled .btn-nav {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links a {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--white);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav-links a:hover {
  opacity: 0.7;
}
.nav.nav-scrolled .nav-links a {
  color: var(--black-deep);
}
.nav-links a {
  position: relative;
}
.nav-links a.active {
  opacity: 1;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 860px) {
  .nav-links { gap: 6px; }
  .nav-links a { padding: 7px 12px; font-size: 12px; }
  .nav-inner { padding: 10px 16px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 16px;
  border-top: 0px solid rgba(255,255,255,0.07);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 0.9, 0.3, 1), opacity 0.3s ease, padding 0.3s ease, border-top-width 0s;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding: 12px 16px 16px;
  border-top-width: 1px;
}
.mobile-link {
  color: var(--white-dim);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--white); }
.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* NAV — mobile adjustments */
@media (max-width: 600px) {
  .nav-clipper-btn { display: none; }
  .nav-inner {
    padding: 5px 12px;
    align-items: center;
  }
  .logo-icon-nav { height: 26px; }
  .logo-name { font-size: 15px; }
  .btn-nav, .btn-nav-secondary {
    padding: 5px 12px;
    font-size: 11px;
  }
  .hamburger {
    display: flex;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    gap: 4px;
  }
  .hamburger span {
    width: 100%;
    background: #f7f7f5;
  }
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px 80px;
  scroll-margin-top: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: grayscale(1) contrast(1.1); }
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(45deg, var(--gray) 0, var(--gray) 10px, var(--black-deep) 10px, var(--black-deep) 20px);
  opacity: 0.55;
}
.hero-video-placeholder span {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
}
.hero-video-placeholder p {
  font-size: 12px;
  color: var(--gray-light);
  max-width: 300px;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(ellipse 85% 80% at 50% 42%,
      transparent 20%,
      rgba(5,5,5,0.18) 38%,
      rgba(5,5,5,0.4) 55%,
      rgba(5,5,5,0.68) 72%,
      rgba(5,5,5,0.9) 88%,
      var(--black) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0.95) 100%);
}
.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--black) 85%);
  pointer-events: none;
}

/* SPINNING WIREFRAME GLOBE */
.hero-globe-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  perspective: 1000px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 35%, transparent 78%);
}
.hero-globe-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,0.32) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1.4px);
  background-size: 180px 180px, 260px 260px, 340px 340px;
  background-position: 30px 40px, 140px 200px, 220px 60px;
  opacity: 0.5;
}
.hero-globe {
  position: relative;
  width: min(62vw, 520px);
  height: min(62vw, 520px);
  transform-style: preserve-3d;
  animation: globeSpin 60s linear infinite;
  opacity: 0.55;
}
.hero-globe::before {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  z-index: -1;
}
.globe-ring,
.globe-equator {
  position: absolute;
  inset: 0;
  border: 0.6px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: rotateY(var(--rot, 0deg));
}
.globe-equator {
  border-color: rgba(255,255,255,0.24);
  transform: rotateX(90deg);
}
.globe-lat {
  position: absolute;
  left: 9%;
  right: 9%;
  height: 32%;
  border: 0.6px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.globe-lat--upper { top: 7%; }
.globe-lat--lower { bottom: 7%; }
.globe-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(48px, 16vw, 140px);
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.3), 0 0 18px rgba(255,255,255,0.15);
  transform: translateZ(1px);
}

@keyframes globeSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-globe { animation: none; }
}
@media (max-width: 600px) {
  .hero-globe { width: 78vw; height: 78vw; opacity: 0.35; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 60px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero .subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}
/* PAGE LOAD ANIMATIONS */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: rgba(255,255,255,0.85);
  z-index: 99999;
  pointer-events: none;
  animation: progressBar 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             progressFade 0.4s 1.1s ease forwards;
}
@keyframes progressBar {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes progressFade {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.nav {
  animation: navEnter 1s cubic-bezier(0.16, 0.9, 0.3, 1) both;
}
@keyframes navEnter {
  from { opacity: 0; transform: translateX(-50%) translateY(-18px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-enter {
  animation: heroEnter 1.1s 0.4s cubic-bezier(0.16, 0.9, 0.3, 1) both;
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-enter { animation: none; }
  .nav { animation: none; }
  .page-progress { display: none; }
}

/* SECTION SHARED */
section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  scroll-margin-top: 110px;
}
section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.section-label {
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin-bottom: 48px;
}
/* FAQS */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-border-soft);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.faq-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 20px 36px rgba(0,0,0,0.5), 0 0 24px rgba(255,255,255,0.06);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--white);
}
.faq-q h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.faq-x {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 0.9, 0.3, 1);
}
.faq-x::before,
.faq-x::after {
  content: "";
  position: absolute;
  background: var(--gray-light);
  top: 50%;
  left: 50%;
  transition: background 0.2s ease;
}
.faq-x::before {
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
}
.faq-x::after {
  width: 2px;
  height: 14px;
  margin: -7px 0 0 -1px;
}
.faq-card.open .faq-x {
  transform: rotate(135deg);
}
.faq-card.open .faq-x::before,
.faq-card.open .faq-x::after {
  background: var(--white);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 0.9, 0.3, 1);
}
.faq-a > p {
  min-height: 0;
  overflow: hidden;
}
.faq-card.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-card p {
  margin-top: 12px;
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .faq-card { padding: 22px 20px; }
}

.placeholder-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 24px;
  font-style: italic;
}

/* RESULTS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 36px 20px;
  border: 1px solid var(--gray-border-soft);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.stat:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 22px 40px rgba(0,0,0,0.55), 0 0 30px rgba(255,255,255,0.08);
}
.stat-number {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 24px rgba(255,255,255,0.25);
}
.stat-label {
  font-size: 14px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.handles-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  font-size: 14px;
  color: var(--gray-light);
}
.handles-row span {
  padding: 8px 16px;
  border: 1px solid var(--gray-border-soft);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.handles-row span:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.clip-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray);
  border: 1px solid var(--gray-border-soft);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.clip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 22px 44px rgba(0,0,0,0.6), 0 0 28px rgba(255,255,255,0.08);
}
.clip-thumb {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, #262626 0, #262626 12px, #1a1a1a 12px, #1a1a1a 24px);
  position: relative;
}
.clip-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--black-deep);
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.clip-views {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(5,5,5,0.8);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid var(--gray-border-soft);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  border: 1px solid var(--gray-border-soft);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 22px 40px rgba(0,0,0,0.55), 0 0 30px rgba(255,255,255,0.08);
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3a3a3a;
  border: 2px solid rgba(255,255,255,0.5);
}
.quote-mark {
  font-size: 40px;
  color: var(--white-dim);
  line-height: 0.5;
  font-family: Georgia, serif;
}
.quote { font-size: 15px; color: #d8d8d8; margin-top: -8px; }
.t-name { font-weight: 700; font-size: 14px; }
.t-handle { font-size: 13px; color: var(--gray-light); margin-top: -10px; }
.video-testimonial-slot {
  margin-top: 40px;
  border: 1px dashed var(--gray-border-soft);
  border-radius: 14px;
  padding: 48px;
  text-align: center;
  color: var(--white-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.02);
}

/* ABOUT / CO-FOUNDERS */
.about-intro {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
  color: var(--white-dim);
  font-size: 16px;
}
.founders-flow {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  align-items: center;
  gap: 32px 28px;
}
.founder-text {
  min-width: 0;
}
.founder-text--celsio { text-align: right; }
.founder-text--ashraf { text-align: left; }
.founder-name {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  margin-bottom: 6px;
}
.founder-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.founder-bio {
  color: var(--white-dim);
  font-size: 15px;
}
.founder-text--celsio .founder-bio { margin-left: auto; }
.founder-text--ashraf .founder-bio { margin-right: auto; }
.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-border-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 20px 40px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.founder-photo--celsio img {
  object-position: 78% center;
}
.founder-photo-portrait {
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .founders-flow {
    max-width: 360px;
    grid-template-columns: 1fr;
    gap: 16px 0;
    text-align: center;
  }
  .founder-text--celsio,
  .founder-text--ashraf { text-align: center; }
  .founder-text--celsio .founder-bio,
  .founder-text--ashraf .founder-bio { margin: 0 auto; max-width: 320px; }
  .founder-photo, .founder-photo-portrait { width: 200px; margin: 0 auto 24px; }
}

/* PROCESS */
#process {
  overflow: hidden;
  max-width: none;
  width: 100%;
  margin: 0;
}
#process > .eyebrow,
#process > .section-label,
#process > .process-intro,
#process > .process-proof,
#process > .process-grid {
  position: relative;
  z-index: 2;
}
#process > .eyebrow.center {
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 20px;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.5);
}
#process > .section-label {
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 28px 14px;
  border-radius: 14px;
  width: fit-content;
  margin: 0 auto 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.5);
}

/* background marquee of real clip results, scrolling behind the content */
.proof-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.proof-row {
  display: flex;
  width: max-content;
  opacity: 0.55;
}
.proof-row--right {
  margin-top: 60px;
  animation: marqueeRight 48s linear infinite;
}
.proof-row--left {
  margin-top: 26px;
  animation: marqueeLeft 42s linear infinite;
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(-25%); }
}
@keyframes marqueeLeft {
  from { transform: translateX(0%); }
  to { transform: translateX(-25%); }
}
.clip-cell {
  flex-shrink: 0;
  margin: 0 7px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-color: var(--gray);
  filter: grayscale(1) contrast(1.05) brightness(0.8);
  box-shadow: 0 10px 22px rgba(0,0,0,0.55);
}
.proof-marquee-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--black) 0%,
      rgba(0,0,0,0.85) 3%,
      rgba(0,0,0,0.5) 7%,
      rgba(0,0,0,0.15) 11%,
      transparent 16%,
      transparent 84%,
      rgba(0,0,0,0.15) 89%,
      rgba(0,0,0,0.5) 93%,
      rgba(0,0,0,0.85) 97%,
      var(--black) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .proof-row { animation: none; }
}
@media (max-width: 768px) {
  .proof-marquee-fade {
    background:
      linear-gradient(to right,
        var(--black) 0%,
        rgba(0,0,0,0.6) 4%,
        transparent 10%,
        transparent 90%,
        rgba(0,0,0,0.6) 96%,
        var(--black) 100%);
  }
}

.process-intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--white-dim);
  font-size: 16px;
  line-height: 1.65;
  background: rgba(0, 0, 0, 0.4);
  padding: 22px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.process-proof {
  position: relative;
  height: 215px;
  max-width: 400px;
  margin: 0 auto 64px;
}
.process-proof-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 176px;
  border-radius: 14px;
  border: 2px solid var(--gray-border-soft);
  background: var(--gray);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 18px 36px rgba(0,0,0,0.55);
  transition: transform 0.35s cubic-bezier(0.16, 0.9, 0.3, 1), box-shadow 0.35s ease;
}
.process-proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
  display: block;
}
.process-proof-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 6px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.92) 35%, transparent);
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.process-proof-name small {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gray-light);
}
.process-proof-photo:hover {
  z-index: 10;
}
.process-proof-photo:hover .process-proof-name {
  opacity: 1;
}
.process-proof-photo--neon {
  transform: translate(-130%, -55%) rotate(-11deg);
  z-index: 2;
}
.process-proof-photo--ken {
  transform: translate(-50%, -42%) rotate(2deg);
  z-index: 3;
}
.process-proof-photo--brez {
  transform: translate(30%, -45%) rotate(11deg);
  z-index: 1;
}
.process-proof:hover .process-proof-photo--neon {
  transform: translate(-138%, -58%) rotate(-15deg) scale(1.05);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 24px 44px rgba(0,0,0,0.6), 0 0 26px rgba(255,255,255,0.1);
}
.process-proof:hover .process-proof-photo--ken {
  transform: translate(-50%, -46%) rotate(2deg) scale(1.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 28px 50px rgba(0,0,0,0.65), 0 0 30px rgba(255,255,255,0.14);
}
.process-proof:hover .process-proof-photo--brez {
  transform: translate(35%, -43%) rotate(15deg) scale(1.05);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 24px 44px rgba(0,0,0,0.6), 0 0 26px rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
  .process-proof { height: 180px; max-width: 280px; }
  .process-proof-photo { width: 110px; height: 140px; }
  .process-proof-photo--neon { transform: translate(-110%, -55%) rotate(-10deg); }
  .process-proof-photo--ken { transform: translate(-50%, -42%) rotate(2deg); }
  .process-proof-photo--brez { transform: translate(10%, -45%) rotate(10deg); }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-border-soft);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.process-step:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 22px 40px rgba(0,0,0,0.55), 0 0 30px rgba(255,255,255,0.08);
}
.process-num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--white-dim);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* WHY US */
.why-intro {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--white);
  max-width: 760px;
  margin: 0 0 64px;
  line-height: 1.35;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.why-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-border-soft);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 22px 40px rgba(0,0,0,0.55), 0 0 30px rgba(255,255,255,0.08);
}
.why-card h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.why-divider {
  width: 100%;
  height: 1px;
  background: var(--gray-border-soft);
  margin-bottom: 16px;
}
.why-card p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* CONTACT / CTA */
.contact-cta { text-align: center; }
.cta-headline {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}
.cta-sub {
  color: var(--white-dim);
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.calendly-slot {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  border: 1px solid var(--gray-border-soft);
  border-radius: 14px;
  overflow: hidden;
  min-height: 640px;
}
.calendly-slot .calendly-inline-widget {
  min-height: 640px;
}

.contact-form {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 60%), var(--gray);
  border: 1px solid var(--gray-border-soft);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 14px 30px rgba(0,0,0,0.45);
}
.contact-form label {
  font-size: 13px;
  color: var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form input {
  background: var(--black-deep);
  border: 1px solid var(--gray-border-soft);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  color: var(--gray-light);
  border-top: 1px solid var(--gray-border-soft);
}
.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* TABLET (769px–1024px) */
@media (max-width: 1024px) {
  section { padding: 80px 24px; }
  .founders-flow { max-width: 600px; gap: 28px 24px; }
  .contact-grid { gap: 24px; }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 20px; }
  .hero { min-height: 80vh; padding: 120px 20px 60px; }
  .nav { width: calc(100% - 24px); border-radius: 16px; }
}

/* INTERACTIVE UI */
.reveal {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.85s ease, filter 0.85s ease;
}
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; filter: none; }
}

.magnetic { will-change: transform; }

.tilt {
  will-change: transform;
  transform-style: preserve-3d;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin-left: -210px;
  margin-top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 860px), (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* SMALL PHONE (≤420px) */
@media (max-width: 420px) {
  .nav-inner { padding: 8px 14px; }
  .logo-icon-nav { height: 30px; }
  .btn-nav { padding: 8px 16px; font-size: 13px; }
  .hero { padding: 110px 16px 48px; }
  .hero .subhead { max-width: none; }
  section { padding: 48px 16px; }
  .btn-primary, .btn-full { padding: 14px 24px; font-size: 15px; }
  .founders-flow { max-width: 280px; }
  .founder-photo, .founder-photo-portrait { width: 160px; }
  .contact-form { padding: 24px; }
  .calendly-slot, .calendly-slot .calendly-inline-widget { min-height: 560px; }
  .stat { padding: 28px 16px; }
  .testimonial-card { padding: 20px; }
}
