*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:        rgb(0, 255, 65);
  --green-dim:    rgba(0, 255, 65, 0.12);
  --green-glow:   rgba(0, 255, 65, 0.35);
  --black:        #080808;
  --dark:         #0f0f0f;
  --card:         #141414;
  --border:       #1f1f1f;
  --white:        #ffffff;
  --muted:        #888888;
  --font:         Arial, Helvetica, sans-serif;
  --glass-bg:     rgba(20, 20, 20, 0.55);
  --glass-border: rgba(255, 255, 255, 0.07);
}
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
}
p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #cccccc;
  line-height: 1.8;
}
.green { color: var(--green); }
.muted { color: var(--muted); font-size: 0.85rem; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 120px 0; }
@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes trainBorder {
  to { --angle: 360deg; }
}
@keyframes heroVideoFadeIn {
  to { opacity: 0.35; }
}
.train-border {
  position: relative;
  border-radius: 16px;
}
.train-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 70%,
    var(--green) 80%,
    rgba(0,255,65,0.8) 85%,
    var(--green) 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: rgba(0, 255, 65, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,65,0.06);
}
.glow-section {
  position: relative;
  overflow: hidden;
}
.glow-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(0,255,65,0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: breatheGlow 6s ease-in-out infinite;
}
@keyframes breatheGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}
nav.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 65, 0.18);
  border-radius: 14px;
  width: fit-content;
  min-width: fit-content;
  white-space: nowrap;
  transition: border-radius 0.4s ease;
}
nav.site-header.expanded {
  left: 0;
  width: 100%;
  transform: none;
  border-radius: 0 0 14px 14px;
  top: 0;
  border-top: none;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  flex-shrink: 0;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 28px;
}
.nav-cta:hover {
  background: white;
  color: var(--black);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.btn-primary {
  display: inline-block;
  background: transparent;
  border-radius: 50px;
  color: var(--green);
  padding: 16px 36px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--green);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); 
background-color: var(--green);
color: var(--black)}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: gap 0.2s;
  letter-spacing: 0.03em;
}
.btn-ghost:hover { gap: 14px; }
#particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
#hero .hero-label,
#hero .hero-headline,
#hero .hero-sub,
#hero .hero-cta-group,
#hero .scroll-hint {
  position: relative;
  z-index: 2;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: heroVideoFadeIn 2.5s ease 0.3s forwards;
  pointer-events: none;
}
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%; right: 10%;
  height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(0, 255, 64, 0.377), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,255,157,0.04) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(0,150,255,0.04) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}
.hero-label { margin-bottom: 28px; opacity: 0.7; }
.hero-headline {
  max-width: 900px;
  margin-bottom: 28px;
}
.hero-headline .rotating-word {
  color: var(--green);
  display: inline-block;
  min-width: 180px;
  text-align: left;
  position: relative;
}
@keyframes wordSlide {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.rotating-word.enter {
  animation: wordSlide 0.35s ease forwards;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #aaaaaa;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.scroll-hint {
  position: absolute;
  bottom: -10px; left: 2%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-stars {
  z-index: 0;
  position: absolute;
  bottom: 0; width: 100%;
}
#proof-bar {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 26px 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#mission {
    position: relative;
    text-align: center;
    padding: 140px 32px;
    min-height: 500px;
    overflow: hidden;
}
#mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/image.jpg") center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
    transform: scaleX(-1);
}
.mission-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}
.mission-line {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mission-line.dim    { color: #2a2a2a; }
.mission-line.bright { color: var(--white); }
.mission-line.accent { color: var(--green); }
.mission-gap { height: 28px; }
.mission-body {
  max-width: 520px;
  margin: 0 auto;
  color: #888888;
  font-size: 1rem;
  line-height: 1.8;
}
#problem {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}
.problem-top {
  margin-bottom: 40px;
}
.problem-top h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.problem-top h2 em {
  font-style: normal;
  color: var(--green);
}
.problem-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 10px;
  height: 600px; 
}
.masonry-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.masonry-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.card-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}
.card-2 {
  grid-column: 2;
  grid-row: 1;
}
.card-3 {
  grid-column: 2;
  grid-row: 2;
}
.card-4 {
  grid-column: 1 / 3;
  grid-row: 3;
  padding: 12px;
  background: #fff; 
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.masonry-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s;
  min-height: 160px;
}
.card-4 {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.masonry-card:hover {
  border-color: rgba(0,255,65,0.3);
  transform: scale(1.01);
  z-index: 2;
}
.masonry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0,255,65,0);
  transition: box-shadow 0.3s;
  pointer-events: none;
  z-index: 1;
}
.masonry-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(0,255,65,0.2);
}
.masonry-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}
.problem-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  height: 100%;
}
.problem-bottom p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.8;
  margin: 0;
}
.problem-closer {
  color: var(--white) !important;
  font-weight: 500;
}
@media (max-width: 768px) {
  .problem-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    aspect-ratio: unset;
  }
  .card-1 {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }
  .card-2 {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1 / 1;
  }
  .card-3 {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1 / 1;
  }
  .problem-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
#services {
  padding: 120px 0 0;
  position: relative;
  z-index: 2;
}
#services .section-header {
  margin-bottom: 56px;
}
.service-tabs-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  padding-top: 8px;
}
.tab-spacer-left  { display: none; }
.tab-spacer-right { display: none; }
.service-tab {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  outline: none;
  z-index: 1;
}
.service-tab:first-child .tab-curve-right { display: none; }
.service-tab:last-child  .tab-curve-left  { display: none; }
.tab-inner {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: #181818;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #181818;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  min-width: 160px;
  justify-content: center;
}
.service-tab:hover:not(.active) .tab-inner {
  color: #cccccc;
  background: #1e1e1e;
}
.service-tab.active .tab-inner {
  color: var(--white);
  background: var(--card);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid var(--card);
}
.service-tab.active .tab-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,255,65,0.3);
  border-radius: 2px 2px 0 0;
  z-index: 2;
}
.tab-curve-left,
.tab-curve-right {
  width: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  bottom: 0;
  height: 100%;
}
.tab-curve-left::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 6px 6px 0 6px #181818;
  transition: box-shadow 0.2s;
}
.service-tab.active .tab-curve-left::before {
  box-shadow: 6px 6px 0 6px var(--card);
}
.service-tab:hover:not(.active) .tab-curve-left::before {
  box-shadow: 6px 6px 0 6px #1e1e1e;
}
.tab-curve-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 14px; height: 14px;
  background: #2a2a2a;
}
.tab-curve-right::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  box-shadow: -6px 6px 0 6px #181818;
  transition: box-shadow 0.2s;
}
.service-tab.active .tab-curve-right::before {
  box-shadow: -6px 6px 0 6px var(--card);
}
.service-tab:hover:not(.active) .tab-curve-right::before {
  box-shadow: -6px 6px 0 6px #1e1e1e;
}
.tab-curve-right::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 14px; height: 14px;
  background: #2a2a2a;
}
.tab-favicon { font-size: 0.85rem; line-height: 1; }
.tab-close-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: transparent;
  margin-left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  position: relative;
}
.tab-close-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #333;
  transition: background 0.2s, box-shadow 0.2s;
}
.service-tab.active .tab-close-dot::before {
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}
.service-tab:hover:not(.active) .tab-close-dot::before {
  background: #555;
}
.service-browser-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.browser-chrome {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-bottom: none;
  border-top: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.browser-traffic-lights {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.tl {
  width: 13px; height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: filter 0.15s;
  flex-shrink: 0;
}
.tl:hover { filter: brightness(1.2); }
.tl svg { opacity: 0; transition: opacity 0.15s; }
.tl:hover svg { opacity: 1; }
.tl-red    { background: #ff5f57; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.3); }
.tl-yellow { background: #ffbd2e; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.3); }
.tl-green  { background: #28c840; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.3); }
.browser-address-bar {
  flex: 1;
  max-width: 420px;
  margin: 0 auto;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.browser-lock { display: flex; align-items: center; flex-shrink: 0; }
.browser-url-text {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.browser-actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-action-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #333;
}
.service-panels {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-top: 1px solid #2a2a2a;
}
.service-panel {
  display: none;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  min-height: 540px;
}
.service-panel.active { display: grid; }
.panel-content {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #2a2a2a;
}
.panel-number {
  font-size: 4rem;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1;
  margin-bottom: 16px;
}
.panel-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.15;
}
.panel-title em { font-style: normal; color: var(--green); }
.panel-content p { margin-bottom: 14px; color: #aaaaaa; font-size: 0.95rem; }
.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover {
  border-color: rgba(0,255,65,0.3);
  color: var(--white);
}
.panel-visual {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.panel-visual::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,255,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.panel-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,65,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.panel-visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image-automation {
  width: 100%;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  height: auto;
  filter:
    brightness(1.1)
    drop-shadow(0 0 20px rgba(0,255,65,0.15))
    drop-shadow(0 0 40px rgba(0,255,65,0.08));
  transition: filter 0.4s ease, transform 0.4s ease;
}
.panel-visual:hover .service-image-automation {
  filter:
    brightness(1.2)
    drop-shadow(0 0 28px rgba(0,255,65,0.25))
    drop-shadow(0 0 56px rgba(0,255,65,0.12));
  transform: scale(1.02);
}
.panel-visual-screenshot {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(0,255,65,0.05);
}
.service-image-web {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.panel-visual:hover .service-image-web {
  transform: scale(1.02) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0,255,65,0.1),
    0 28px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0,255,65,0.08);
}
@media (max-width: 768px) {
  .service-tabs-wrap,
  .service-browser-wrap { padding: 0 24px; }
  .service-tabs { overflow-x: auto; gap: 0; }
  .tab-inner { min-width: 120px; padding: 10px 14px; font-size: 0.78rem; }
  .service-panel { grid-template-columns: 1fr; }
  .panel-visual { display: none; }
  .panel-content { padding: 36px 24px; }
  .browser-chrome { padding: 8px 12px; }
  .browser-address-bar { max-width: 180px; }
}
.browser-mockup {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,65,0.05);
}
.browser-bar {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.browser-dot.red    { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green  { background: #28c840; }
.browser-url {
  flex: 1;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-url-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
  flex-shrink: 0;
}
.browser-screen {
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
}
.mock-site {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a1a;
}
.mock-nav-logo {
  width: 50px; height: 8px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.8;
}
.mock-nav-links {
  display: flex;
  gap: 10px;
}
.mock-nav-link {
  width: 28px; height: 6px;
  background: #222;
  border-radius: 2px;
}
.mock-hero-area {
  padding: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-headline {
  height: 14px;
  background: linear-gradient(90deg, #fff 0%, #555 100%);
  border-radius: 2px;
  width: 85%;
  opacity: 0.15;
}
.mock-headline.short { width: 60%; opacity: 0.1; }
.mock-subline {
  height: 7px;
  background: #222;
  border-radius: 2px;
  width: 70%;
}
.mock-subline.sm { width: 50%; }
.mock-cta-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.mock-cta {
  height: 22px;
  width: 80px;
  background: var(--green);
  border-radius: 3px;
  opacity: 0.85;
}
.mock-cta.outline {
  background: transparent;
  border: 1px solid #333;
  opacity: 0.5;
}
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.mock-metric {
  background: #111;
  border: 1px solid #1a1a1a;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-metric-num {
  height: 12px;
  background: var(--green);
  border-radius: 2px;
  width: 55%;
  opacity: 0.7;
}
.mock-metric-label {
  height: 6px;
  background: #222;
  border-radius: 2px;
  width: 80%;
}
.mock-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--green);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  box-shadow: 0 0 6px var(--green);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.flow-mockup {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,255,65,0.05);
}
.flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.flow-title {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.flow-status-badge {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,255,65,0.08);
  border: 1px solid rgba(0,255,65,0.25);
  color: var(--green);
  letter-spacing: 0.05em;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0d0d0d;
  transition: border-color 0.3s, background 0.3s;
}
.flow-node.active {
  border-color: rgba(0,255,65,0.35);
  background: rgba(0,255,65,0.03);
}
.flow-node-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.flow-node.active .flow-node-icon {
  background: rgba(0,255,65,0.12);
}
.flow-node-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.flow-node-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
}
.flow-node-sub {
  font-size: 0.68rem;
  color: var(--muted);
}
.flow-node-status {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.flow-node.active .flow-node-status {
  border-color: rgba(0,255,65,0.3);
  color: var(--green);
  background: rgba(0,255,65,0.06);
}
.flow-connector {
  height: 22px;
  padding-left: 28px;
  position: relative;
}
.flow-connector::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), rgba(0,255,65,0.2), var(--border));
}
.flow-connector-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 25.5px;
  animation: flowPulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px var(--green);
}
@keyframes flowPulse {
  0%   { top: 2px;  opacity: 1; }
  100% { top: 16px; opacity: 0; }
}
#standard {
  background: var(--dark);
  text-align: center;
  padding: 140px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#standard::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,255,65,0.04) 0%, transparent 70%);
  animation: breatheGlow 5s ease-in-out infinite;
  pointer-events: none;
}
.standard-text {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.standard-text em { font-style: normal; color: var(--green); }
#process {
  position: relative;
  z-index: 1;
  padding:0;
}
.process-slide {
  position: sticky;
  top: 0;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Each successive slide sits higher in z-index
   so it covers the one before — but the one before
   never disappears, it just gets covered */
#process-slide-1 {
  z-index: 1;
  background: #0f0f0f;
}
#process-slide-2 {
  z-index: 2;
  background: #111111;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.6);
}
#process-slide-3 {
  z-index: 3;
  background: #131313;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.6);
}
.process-slide-content {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.process-slide-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-slide-left .label {
  opacity: 0.55;
}
.process-slide-left h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.process-slide-left h2 em {
  font-style: normal;
  color: var(--green);
}
.process-step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.process-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,255,65,0.2) 50%,
    transparent
  );
}
.process-step-card:hover {
  border-color: rgba(0,255,65,0.15);
}
.process-step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.process-step-num {
  font-size: 3rem;
  font-weight: 500;
  color: var(--green);
  opacity: 0.12;
  line-height: 1;
  transition: opacity 0.3s;
}
.process-step-card:hover .process-step-num {
  opacity: 0.22;
}
.process-step-label {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(0,255,65,0.2);
  border-radius: 20px;
}
.process-step-body-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.process-step-text {
  display: flex;
  flex-direction: column;
}
.process-step-title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.2;
}
.process-step-body {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.process-step-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--green);
  opacity: 0.6;
}
.process-step-note::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.process-step-progress {
  margin-top: 20px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.process-step-progress-fill {
  height: 100%;
  background: linear-gradient(to right, rgba(0,255,65,0.3), var(--green));
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0,255,65,0.3);
}
.process-step-img-wrap {
  position: relative;
  border-radius: 12px;
  min-height: 280px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
  border: 1px solid var(--border);
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,255,65,0.05);
}
.process-step-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
  border-radius: 10px;
}
.process-step-img.img-visible {
  opacity: 1;
}
.process-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
}
.process-img-placeholder span {
  font-size: 0.7rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
}
@media (max-width: 1020px) {
  .process-step-body-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-step-img-wrap { aspect-ratio: 16/9; min-height: 200px; }
}
#proof {
  background-color: #0b0b0b;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#proof::after {
  content: '';
  position: absolute;
  width: 900px; height: 850px;
  top: -40%; right: -20%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.15) 0%, rgba(0,255,65,0.06) 40%, transparent 70%);
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift2 8s ease-in-out infinite;
}
.proof-orb-2 {
  position: absolute;
  width: 850px; height: 800px;
  bottom: -45%; left: -18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.15) 0%, transparent 65%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift3 9s ease-in-out infinite;
}
.proof-edge-bottom {
  position: absolute;
  bottom: 0; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,255,65,0.3) 30%, rgba(0,255,65,0.55) 50%, rgba(0,255,65,0.3) 70%, transparent);
  pointer-events: none;
  z-index: 3;
  animation: edgePulse 9s ease-in-out infinite;
}
#proof .container { position: relative; z-index: 3; }
#proof .section-header { margin-bottom: 40px; }
.portfolio-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.portfolio-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 0.82rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.portfolio-filter:hover {
  border-color: rgba(0,255,65,0.3);
  color: var(--white);
}
.portfolio-filter.active {
  background: rgba(0,255,65,0.08);
  border-color: rgba(0,255,65,0.4);
  color: var(--green);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.portfolio-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,65,0.2);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.2) inset,
    0 -1px 0 0 rgba(0,0,0,0.5) inset,
    0 24px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(0,255,65,0.06);
}
.portfolio-card-train {
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(0,255,65,0.4) 75%,
    var(--green) 82%,
    rgba(0,255,65,0.4) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 8s linear infinite;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-card-train { opacity: 1; }
.portfolio-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #111;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img {
  transform: scale(1.04) translateY(-2%);
}
.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d0d0d;
}
.portfolio-img-placeholder span {
  font-size: 0.72rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
}
.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-img-overlay { opacity: 1; }
.portfolio-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font);
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s;
}
.portfolio-view-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.portfolio-card-body {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 3;
}
.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.portfolio-tag {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(0,255,65,0.2);
  border-radius: 20px;
  background: rgba(0,255,65,0.04);
}
.portfolio-client {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.portfolio-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.portfolio-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.7;
  margin-bottom: 18px;
}
.portfolio-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.portfolio-skills span {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}
.portfolio-card:hover .portfolio-skills span {
  border-color: rgba(0,255,65,0.15);
  color: #aaaaaa;
}
.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  flex-wrap: wrap;
}
.portfolio-cta-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.portfolio-card.hidden {
  display: none;
}
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-img-wrap { height: 200px; }
}
#faq { position: relative; z-index: 2; }
#faq .section-header { margin-bottom: 64px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  border-color: var(--green);
  color: var(--green);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }
#final-cta {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px;
  position: relative;
  transition: border-color 0.3s;
}
.process-step-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,255,65,0.06) 0%, transparent 65%);
  animation: breatheGlow 5s ease-in-out infinite;
  pointer-events: none;
}
.final-cta-inner { max-width: 640px; position: relative; z-index: 1; }
.final-cta-inner h2 { margin-bottom: 24px; }
.final-cta-inner h2 em { font-style: normal; color: var(--green); }
.final-cta-inner p {
  color: #888888;
  margin-bottom: 44px;
  font-size: 1rem;
}
.cta-glass-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 56px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
}
.cta-glass-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 70%,
    var(--green) 80%,
    rgba(0,255,65,0.8) 85%,
    var(--green) 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 9s linear infinite;
  pointer-events: none;
}
footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: #444444; }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  color: #444;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--muted); }
.section-header { max-width: 560px; }
.section-header .label  { margin-bottom: 16px; }
.section-header h2      { margin-bottom: 16px; }
.section-header h2 em   { font-style: normal; color: var(--green); }
.section-header p       { color: var(--muted); }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  nav.site-header {
    top: 12px;
    padding: 14px 20px;
    width: calc(100% - 32px) !important;
    left: 16px !important;
    transform: none !important;
    border-radius: 12px !important;
  }
  nav.site-header.expanded {
    border-radius: 12px !important;
    top: 12px !important;
    border-top: 1px solid rgba(0,255,65,0.18) !important;
  }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-tabs { padding: 0 16px; overflow-x: auto; }
  .service-panel { grid-template-columns: 1fr; }
  .panel-visual  { display: none; }
  .panel-content { padding: 40px 28px; }
  .steps-overlap { padding: 0 16px; }
  .step-card { padding: 36px 28px; }
  .step-card-inner { grid-template-columns: 1fr; gap: 16px; }
  .step-number-large { font-size: 3rem; }
  .step-card:nth-child(1),
  .step-card:nth-child(2),
  .step-card:nth-child(3) { top: auto; position: relative; }
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  #hero { padding: 120px 24px 80px; }
  #mission, #standard, #final-cta { padding: 80px 24px; }
  .cta-glass-wrap { padding: 32px 24px; }
}
#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.3s ease;
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.507);
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.12), inset 0 0 8px rgba(0, 255, 65, 0.04);
  background: rgba(0, 128, 0, 0.151);
  transition:
    width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s ease,
    border-color 0.3s ease,
    border-radius 0.35s ease,
    opacity 0.3s ease;
  will-change: transform;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cursor-ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 60%,
    rgba(0, 255, 65, 0.7) 75%,
    rgba(0, 255, 65, 1) 85%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  animation: cursorSpin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@keyframes cursorSpin {
  to { --angle: 360deg; }
}
#cursor-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  pointer-events: none;
  font-family: var(--font);
}
#cursor-ring.state-nav {
  width: 20px;
  height: 20px;
  border-color: rgba(0, 255, 65, 0.6);
  background: rgba(0, 255, 65, 0.06);
}
#cursor-ring.state-nav::before { opacity: 1; }
#cursor-ring.state-cta {
  width: 88px;
  height: 88px;
  border-color: rgba(0, 255, 65, 0.35);
  background: rgba(0, 255, 65, 0.06);
  border-radius: 50%;
}
#cursor-ring.state-cta::before { opacity: 1; }
#cursor-ring.state-cta #cursor-label { opacity: 1; }
#cursor-ring.state-card {
  width: 110px;
  height: 110px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
#cursor-ring.state-card::before { opacity: 1; }
#cursor-ring.state-card #cursor-label { opacity: 1; }
#cursor-ring.state-click {
  animation: clickBurst 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes clickBurst {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
  50%  { transform: translate(-50%, -50%) scale(1.8); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}
#cursor-dot.state-text {
  width: 2px;
  height: 18px;
  border-radius: 1px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: textBlink 1s step-end infinite;
}
@keyframes textBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
#cursor-ring.state-text {
  opacity: 0;
}
#cursor-ring.state-idle {
  animation: idleBreathe 2.2s ease-in-out infinite;
}
@keyframes idleBreathe {
  0%, 100% { box-shadow: 0 0 0px rgba(0, 255, 65, 0); }
  50%       { box-shadow: 0 0 12px rgba(0, 255, 65, 0.2); }
}
#cursor-ring.state-scroll {
  width: 48px;
  height: 20px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.15);
}
.cursor-ripple {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 65, 0.5);
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%) scale(1);
  animation: rippleOut 0.6s ease-out forwards;
}
@keyframes rippleOut {
  0%   { transform: translate(-50%, -50%) scale(1);  opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(8);  opacity: 0;   }
}
#bgStars1 {
  position: absolute;
  top: 4vh;
  left: 2vw;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
#bgStars2 {
  position: absolute;
  bottom: 6vh;
  right: 2vw;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
@keyframes orbDrift1 {
  0%   { transform: translate(0%, 0%)    scale(1);    }
  25%  { transform: translate(8%, -12%)  scale(1.08); }
  50%  { transform: translate(15%, 5%)   scale(0.95); }
  75%  { transform: translate(-5%, 10%)  scale(1.05); }
  100% { transform: translate(0%, 0%)    scale(1);    }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0%, 0%)    scale(1);    }
  25%  { transform: translate(-10%, 8%)  scale(1.1);  }
  50%  { transform: translate(-18%, -6%) scale(0.92); }
  75%  { transform: translate(6%, -10%)  scale(1.06); }
  100% { transform: translate(0%, 0%)    scale(1);    }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0%, 0%)    scale(1);    }
  33%  { transform: translate(12%, 10%)  scale(1.12); }
  66%  { transform: translate(-8%, 15%)  scale(0.9);  }
  100% { transform: translate(0%, 0%)    scale(1);    }
}
@keyframes orbDrift4 {
  0%   { transform: translate(0%, 0%)    scale(1);    }
  33%  { transform: translate(-14%, -8%) scale(1.08); }
  66%  { transform: translate(10%, -12%) scale(0.94); }
  100% { transform: translate(0%, 0%)    scale(1);    }
}
@keyframes edgePulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}
@keyframes grainShift {
  0%   { background-position: 0% 0%;    }
  25%  { background-position: 20% 40%;  }
  50%  { background-position: 50% 100%; }
  75%  { background-position: 80% 60%;  }
  100% { background-position: 0% 0%;    }
}
#problem,
#standard,
#proof {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
}
#problem::before,
#standard::before,
#proof::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 2;          
  mix-blend-mode: overlay;
  animation: grainShift 8s steps(1) infinite;
}
#problem .container,
#problem .problem-top,
#problem .problem-masonry,
#standard .container,
#proof .container { position: relative; z-index: 3; }
#problem::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: -40%;          
  left: -15%;         
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    rgba(0, 255, 65, 0.07) 40%,
    transparent 70%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift1 9s ease-in-out infinite; 
}
.problem-orb-2 {
  position: absolute;
  width: 850px;
  height: 850px;
  bottom: -45%;       
  right: -18%;        
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    rgba(0, 255, 65, 0.06) 40%,
    transparent 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift2 7s ease-in-out infinite; 
}
.problem-edge-top {
  position: absolute;
  top: 0; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 255, 65, 0.35) 30%,
    rgba(0, 255, 65, 0.65) 50%,
    rgba(0, 255, 65, 0.35) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 3;
  animation: edgePulse 7s ease-in-out infinite; 
}
#services {
  background: #070707;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: breatheGlow 8s ease-in-out infinite; 
}
#services .container,
#services .section-header,
#services .service-tabs-wrap,
#services .service-browser-wrap { position: relative; z-index: 2; }
#standard {
  background-color: #090909;
  border-top: 1px solid rgba(0,255,65,0.07);
  border-bottom: 1px solid rgba(0,255,65,0.07);
}
#standard::after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    rgba(0, 255, 65, 0.07) 35%,
    transparent 65%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift3 10s ease-in-out infinite; 
}
.standard-orb-2 {
  position: absolute;
  width: 800px;
  height: 750px;
  bottom: -50%;
  left: -20%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    transparent 65%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift4 8s ease-in-out infinite; 
}
.standard-orb-3 {
  position: absolute;
  width: 750px;
  height: 700px;
  top: -45%;
  right: -18%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    transparent 65%
  );
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift1 9s ease-in-out infinite reverse; 
}
#standard .container { position: relative; z-index: 3; }
.standard-text        { position: relative; z-index: 3; }
#process { background: #080808; }
#process-slide-1 {
  background:
    radial-gradient(ellipse at 88% 50%, rgba(0,255,65,0.04) 0%, transparent 55%),
    #0f0f0f;
}
#process-slide-2 {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(0,255,65,0.04) 0%, transparent 55%),
    #111;
}
#process-slide-3 {
  background:
    radial-gradient(ellipse at 55% 50%, rgba(0,255,65,0.04) 0%, transparent 55%),
    #131313;
}
#proof { background-color: #0b0b0b; }
#proof::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 850px;
  top: -40%;
  right: -20%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    rgba(0, 255, 65, 0.06) 40%,
    transparent 70%
  );
  filter: blur(95px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift2 8s ease-in-out infinite; 
}
.proof-orb-2 {
  position: absolute;
  width: 850px;
  height: 800px;
  bottom: -45%;
  left: -18%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 255, 65, 0.15) 0%,
    transparent 65%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: orbDrift3 9s ease-in-out infinite; 
}
.proof-edge-bottom {
  position: absolute;
  bottom: 0; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 255, 65, 0.3) 30%,
    rgba(0, 255, 65, 0.55) 50%,
    rgba(0, 255, 65, 0.3) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 3;
  animation: edgePulse 9s ease-in-out infinite; 
}
#proof .container { position: relative; z-index: 3; }
#faq {
  background: #070707;
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: breatheGlow 9s ease-in-out infinite; 
}
#faq .container { position: relative; z-index: 2; }
.proof-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 65, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 255, 65, 0.02) 100%
  );
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(0, 255, 65, 0.09);
  box-shadow:
    0 1px 0 0 rgba(0, 255, 65, 0.18) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.5) inset,
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.25);
}
.proof-card:hover {
  border-color: rgba(0, 255, 65, 0.22);
  box-shadow:
    0 1px 0 0 rgba(0, 255, 65, 0.28) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.5) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(0, 255, 65, 0.08);
}
.process-step-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 65, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.6) inset,
    0 12px 40px rgba(0, 0, 0, 0.55);
}
.masonry-card.card-1,
.masonry-card.card-2,
.masonry-card.card-3 {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.8) brightness(1.1);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.55) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.06) inset,
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}
.masonry-card.card-1::before,
.masonry-card.card-2::before,
.masonry-card.card-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    transparent 60%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.masonry-card.card-1::after,
.masonry-card.card-2::after,
.masonry-card.card-3::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.25) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 3;
}
.masonry-card.card-1 video,
.masonry-card.card-2 video,
.masonry-card.card-3 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.masonry-card.card-1:hover,
.masonry-card.card-2:hover,
.masonry-card.card-3:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.55) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.06);
  transform: scale(1.01);
}
.masonry-card.card-4 {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.03) 100%
    );
  backdrop-filter: blur(28px) saturate(2) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(2) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.4) inset,
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}
.masonry-card.card-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.015) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.masonry-card.card-4 .problem-bottom {
  position: relative;
  z-index: 2;
}
.masonry-card.card-4 .problem-bottom p {
  color: rgba(200, 200, 200, 0.75);
}
.masonry-card.card-4 .problem-bottom .problem-closer {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
}
.proof-card {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.04) 100%
    );
  backdrop-filter: blur(28px) saturate(2) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(2) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.5) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.07) inset,
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 60%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.proof-card::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.28) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.28) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.proof-card .train-border-line {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255, 255, 255, 0.6) 75%,
    rgba(255, 255, 255, 0.9) 82%,
    rgba(255, 255, 255, 0.6) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 6s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.proof-card > *:not(.train-border-line) {
  position: relative;
  z-index: 3;
}
.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.3) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.5) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.1) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.3);
}
.process-step-card {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.035) 100%
    );
  backdrop-filter: blur(32px) saturate(2) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(2) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.55) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: border-color 0.3s;
}
.process-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 58%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.process-step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.25) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.process-step-card .train-border-line {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255, 255, 255, 0.55) 75%,
    rgba(255, 255, 255, 0.85) 82%,
    rgba(255, 255, 255, 0.55) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 7s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.process-step-card > *:not(.train-border-line) {
  position: relative;
  z-index: 3;
}
.process-step-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}
nav.site-header {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(2) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(2) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.4) inset,
    1px 0 0 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
nav.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 60%,
    rgba(255, 255, 255, 0.01) 100%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
nav.site-header::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.25) 70%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
nav.site-header .train-border-line {
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255, 255, 255, 0.55) 75%,
    rgba(255, 255, 255, 0.88) 82%,
    rgba(255, 255, 255, 0.55) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}
nav.site-header > *:not(.train-border-line) {
  position: relative;
  z-index: 2;
}
nav.site-header.expanded .train-border-line {
  border-radius: 0 0 14px 14px;
}
nav.site-header {
  position: fixed !important;
  overflow: visible !important;  
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
nav.site-header .train-border-line {
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255, 255, 255, 0.55) 75%,
    rgba(255, 255, 255, 0.88) 82%,
    rgba(255, 255, 255, 0.55) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 6s linear infinite;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;   
  border-radius: 14px;
}
nav.site-header.expanded {
  left: 0 !important;
  width: 100% !important;
  transform: none !important;
  top: 0 !important;
  border-radius: 0 0 14px 14px !important;
}
nav.site-header.expanded .train-border-line {
  border-radius: 0 0 14px 14px;
}
@media (max-width: 768px) {
  nav.site-header {
    top: 12px !important;
    left: 16px !important;
    transform: none !important;
    border-radius: 12px !important;
    width: calc(100% - 32px) !important;
    overflow: visible !important;
  }
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 8px 32px rgba(0,0,0,0.35);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.work-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255,255,255,0.45) 75%,
    rgba(255,255,255,0.75) 82%,
    rgba(255,255,255,0.45) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 7s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-card:hover::before { opacity: 1; }
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 0 rgba(0,0,0,0.5) inset,
    0 24px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(0,255,65,0.05);
}
.work-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.work-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.work-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.work-card:hover .work-card-img { transform: scale(1.04); }
.work-card-body {
  padding: 28px 28px 32px;
  position: relative;
  z-index: 3;
}
.work-card-tag {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.work-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.work-card-result {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.work-card-result strong { color: var(--green); }
.work-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--green);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.work-card:hover .work-card-cta { gap: 10px; }
.work-card.hidden { display: none; }
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
}
#founder {
  background: #080808;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.founder-orb-left {
  position: absolute;
  width: 700px; height: 700px;
  top: -20%; left: -15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.08) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift1 11s ease-in-out infinite;
}
.founder-orb-right {
  position: absolute;
  width: 600px; height: 600px;
  bottom: -25%; right: -12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.06) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift2 9s ease-in-out infinite;
}
#founder .container { position: relative; z-index: 2; }
.founder-label-top {
  margin-bottom: 32px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}
.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.founder-photo-frame {
  position: relative;
  width: 160px;
  height: 190px;
  border-radius: 20px;
  overflow: visible;
}
.founder-frame-train {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(0,255,65,0.5) 75%,
    var(--green) 82%,
    rgba(0,255,65,0.5) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 9s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transition: filter 0.4s ease;
  position: relative;
  z-index: 1;
}
.founder-photo:hover {
  filter: grayscale(80%) contrast(1.05) brightness(1);
}
.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #111;
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.founder-photo-placeholder span {
  font-size: 0.72rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
}
.founder-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}
.founder-dot-1 {
  width: 10px; height: 10px;
  background: var(--green);
  box-shadow: 0 0 14px var(--green), 0 0 28px rgba(0,255,65,0.4);
  top: -6px; right: -6px;
  animation: dotPulse 2.5s ease-in-out infinite;
}
.founder-dot-2 {
  width: 6px; height: 6px;
  background: rgba(0,255,65,0.5);
  box-shadow: 0 0 8px var(--green);
  bottom: -6px; left: -6px;
  animation: dotPulse 3.2s ease-in-out infinite 0.8s;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}
.founder-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 16px;
  background: rgba(0,255,65,0.05);
  border: 1px solid rgba(0,255,65,0.15);
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.founder-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.founder-name {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  margin-top: 4px;
}
.founder-name-dot { color: var(--green); }
.founder-title {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.founder-quote {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #cccccc;
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid rgba(0,255,65,0.3);
  padding-left: 24px;
  margin-bottom: 36px;
}
.founder-stats {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  grid-column: 1 / -1;
}
.founder-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-stat-num {
  font-size: 2rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.founder-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.founder-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}
.founder-platform {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: var(--muted);
  padding: 7px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}
.founder-platform:hover {
  border-color: rgba(0,255,65,0.2);
  color: var(--white);
}
@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 140px 1fr;
    gap: 32px;
    align-items: start;
  }
  .founder-photo-wrap { align-items: flex-start; }
  .founder-photo-frame { width: 120px; height: 150px; }
  .founder-content { align-self: center; }
  .founder-stats { gap: 24px; }
}
#reviews {
  background: #070707;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.reviews-orb {
  position: absolute;
  width: 800px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,255,65,0.05) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: breatheGlow 8s ease-in-out infinite;
}
#reviews .container { position: relative; z-index: 2; }
.reviews-outer {
  position: relative;
  overflow: hidden;
  padding: 16px 0 24px;
}
.reviews-fade-left,
.reviews-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.reviews-fade-left {
  left: 0;
  background: linear-gradient(to right, #070707 0%, transparent 100%);
}
.reviews-fade-right {
  right: 0;
  background: linear-gradient(to left, #070707 0%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 60px;
  animation: reviewsScroll 40s linear infinite;
  cursor: grab;
}
.reviews-track:active { cursor: grabbing; }
.reviews-track:hover  { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.055) 0%,
    rgba(255,255,255,0.02) 50%,
    rgba(255,255,255,0.03) 100%
  );
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 28px 28px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.14) inset,
    0 -1px 0 0 rgba(0,0,0,0.4) inset,
    0 8px 32px rgba(0,0,0,0.35);
}
.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.01) 40%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.22) 40%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.22) 60%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.review-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0,255,65,0.2);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.2) inset,
    0 -1px 0 0 rgba(0,0,0,0.5) inset,
    0 20px 50px rgba(0,0,0,0.5),
    0 0 30px rgba(0,255,65,0.06);
}
.review-card-train {
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(255,255,255,0.4) 75%,
    rgba(255,255,255,0.7) 82%,
    rgba(255,255,255,0.4) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 8s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card:hover .review-card-train { opacity: 1; }
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: avatarFloat 4s ease-in-out infinite;
}
@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
.review-avatar span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}
.review-platform {
  font-size: 0.7rem;
  color: var(--green);
  opacity: 0.75;
  letter-spacing: 0.04em;
}
.review-stars {
  font-size: 0.85rem;
  color: #ffbd2e;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  animation: starGlow 3s ease-in-out infinite;
}
@keyframes starGlow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 8px rgba(255,189,46,0.4); }
}
.review-text {
  font-size: 0.88rem;
  color: #aaaaaa;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.review-text::before {
  content: '"';
  color: var(--green);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 2px;
  opacity: 0.4;
  font-style: normal;
}
.review-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.review-tag {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 20px;
  background: rgba(0, 255, 65, 0.04);
  white-space: nowrap;
}
.review-verify {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}
.review-verify:hover {
  color: var(--green);
  gap: 7px;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #333;
  transition: background 0.3s, width 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.reviews-dot.active {
  background: var(--green);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 6px var(--green);
}
@media (max-width: 768px) {
  .review-card { width: 280px; padding: 22px 20px; }
  .reviews-track { padding: 8px 24px; }
  .reviews-fade-left,
  .reviews-fade-right { width: 60px; }
}
@media (max-width: 1024px) {
  .problem-masonry { height: auto !important; }
  .hero-headline .rotating-word { min-width: 0; }
  .scroll-hint { display: none; }
  .service-panel { min-height: auto; }
}
/* ════════════════════════════════════════════════
   MOBILE FIX — CONSOLIDATED, OVERRIDES EVERYTHING ABOVE
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 2rem; line-height: 1.15; }
  h2 { font-size: 1.6rem; line-height: 1.2; }
  nav.site-header {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    gap: 0 !important;
    justify-content: space-between !important;
  }
  nav.site-header.expanded {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 12px 12px !important;
  }
  .nav-logo { font-size: 1.05rem; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { top: 64px; padding: 20px; }
  #hero { padding: 110px 20px 60px; min-height: 100vh; }
  .hero-headline { font-size: 2rem; }
  .hero-headline .rotating-word { min-width: 0; }
  .hero-sub { font-size: 0.92rem; padding: 0 8px; }
  .scroll-hint { display: none; }
  .proof-item { padding: 0 20px; font-size: 0.78rem; }
  #mission { padding: 70px 20px; min-height: auto; }
  .mission-line { font-size: 1.6rem; line-height: 1.25; }
  .mission-gap { height: 14px; }
  #problem { padding: 60px 0; }
  .problem-top h2 { font-size: 1.7rem; }
  .problem-masonry {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto !important;
    height: auto !important;
    gap: 8px;
  }
  .card-1 {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
    aspect-ratio: 16/9;
    height: auto !important;
  }
  .card-2 {
    grid-column: 1 !important;
    grid-row: 2 !important;
    aspect-ratio: 1/1;
    height: auto !important;
  }
  .card-3 {
    grid-column: 2 !important;
    grid-row: 2 !important;
    aspect-ratio: 1/1;
    height: auto !important;
  }
  .card-4 {
    grid-column: 1 / 3 !important;
    grid-row: 3 !important;
  }
  .problem-bottom { padding: 12px; gap: 6px; }
  .problem-bottom p { font-size: 0.85rem; }
  #services { padding: 60px 0 0; }
  .service-tabs-wrap, .service-browser-wrap { padding: 0 16px; }
  .service-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-inner { min-width: 130px; padding: 9px 14px; font-size: 0.75rem; }
  .browser-chrome { padding: 8px 10px; gap: 8px; }
  .browser-address-bar { max-width: 140px; }
  .service-panel { grid-template-columns: 1fr !important; }
  .panel-visual { display: none !important; }
  .panel-content { padding: 32px 20px; border-right: none; }
  .panel-number { font-size: 2.6rem; }
  .panel-title { font-size: 1.5rem; }
  #standard { padding: 70px 20px; }
  .standard-text { font-size: 1.6rem; }
  .process-slide {
    height: 75vh;
    overflow-y: auto;
  }
  .process-slide-content {
    grid-template-columns: 1fr !important;
    gap: 18px;
    padding: 0 20px;
  }
  .process-slide-left { display: none !important; }
  .process-step-card { padding: 24px 20px; }
  .process-step-num { font-size: 2.2rem; }
  .process-step-title { font-size: 1.15rem; }
  .process-step-body-wrap {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .process-step-img-wrap {
    min-height: unset !important;
    aspect-ratio: 16/9;
    height: auto !important;
  }
  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .work-card-img { height: 180px; }
  .work-card-body { padding: 20px; }
  .work-card-title { font-size: 1.02rem; }
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
  .portfolio-img-wrap { height: 180px; }
  .portfolio-filters { gap: 8px; }
  .portfolio-filter { padding: 7px 14px; font-size: 0.76rem; }
  #founder { padding: 70px 0; }
  .founder-label-top { margin-bottom: 24px; }
  .founder-grid {
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
  }
  .founder-photo-wrap { align-items: flex-start; }
  .founder-photo-frame { width: 120px !important; height: 140px !important; }
  .founder-name { font-size: 1.6rem; margin-top: 0; }
  .founder-title { font-size: 0.78rem; margin-bottom: 0; }
  .founder-quote { font-size: 0.9rem; padding-left: 0; border-left: none; margin-top: 16px; }
  .founder-stats {
    gap: 12px;
  justify-content: center;
    padding: 14px 0;
  }
  .founder-platforms {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .founder-platform { padding: 5px 10px; font-size: 0.7rem; }
  #reviews { padding: 70px 0 50px; }
  .review-card {
    width: 260px !important;
    padding: 20px 18px !important;
  }
  .reviews-track { padding: 8px 16px !important; gap: 14px !important; }
  .reviews-fade-left, .reviews-fade-right { width: 40px !important; }
  .review-text { font-size: 0.82rem; }
  .review-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  #faq { padding: 60px 0; }
  .faq-question { font-size: 0.92rem; padding: 20px 0; }
  .faq-answer-inner { font-size: 0.88rem; }
  #final-cta { padding: 70px 20px; min-height: 60vh; }
  .final-cta-inner h2 { font-size: 1.7rem; }
  .cta-glass-wrap { padding: 28px 20px; width: 100%; }
  footer { padding: 36px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px; row-gap: 10px; }
}
@media (max-width: 480px) {
  .founder-stats { gap: 16px; }
  .founder-stat-num { font-size: 1.6rem; }
  .review-card { width: 230px !important; }
  .cs-metrics { grid-template-columns: 1fr !important; }
}
/* ════════════════════════════════════════════════════
   AUDIT MODAL
   ════════════════════════════════════════════════════ */
.audit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.audit-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.audit-modal {
  background: var(--glass-bg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s ease;
}
.audit-overlay.open .audit-modal {
  transform: scale(1) translateY(0);
}
.audit-modal-train {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    transparent 65%,
    rgba(0,255,65,0.4) 75%,
    var(--green) 82%,
    rgba(0,255,65,0.4) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trainBorder 9s linear infinite;
  pointer-events: none;
}
.audit-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #555;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s;
  z-index: 2;
  line-height: 1;
  padding: 0;
}
.audit-modal-close:hover { color: var(--white); }
.audit-modal h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.audit-modal p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.audit-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.audit-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.audit-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,255,65,0.2);
  transform: translateX(4px);
}
.audit-option-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audit-option-icon svg {
  width: 20px; height: 20px;
}
.audit-option-icon.whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.audit-option-icon.upwork   { background: rgba(106,195,55,0.15); color: #6FC03A; }
.audit-option-icon.linkedin { background: rgba(10,102,194,0.15); color: #0A66C2; }
.audit-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.audit-option-label {
  font-size: 0.9rem;
  font-weight: 500;
}
.audit-option-desc {
  font-size: 0.72rem;
  color: var(--muted);
}
@media (max-width: 480px) {
  .audit-modal { padding: 36px 24px 28px; }
  .audit-modal h3 { font-size: 1.15rem; }
  .audit-option { padding: 12px 14px; }
}
