:root {
  --bg: #000;
  --white: #fff;
  --blue: #2563eb;
  --blue-2: #60a5fa;
  --text: #0a0a0a;
  --muted: #71717a;
  --line: rgba(255,255,255,.08);
  --line-light: #e4e4e7;
  --card: rgba(255,255,255,.06);
  --radius: 28px;
  --container: 1280px;
  --shadow-blue: 0 24px 60px rgba(37, 99, 235, .24);
  --shadow-card: 0 30px 80px rgba(0,0,0,.15);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
.site-shell { background: #000; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; position: relative; z-index: 2; }
.section-spacing { padding: 8rem 0; }
.section-dark { background: #000; }
.section-light { background: #f4f4f5; color: #18181b; }
.section-white { background: #fff; color: #18181b; }
.progress-bar {
  position: fixed; inset: 0 auto auto 0; height: 4px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0); background: var(--blue); z-index: 1200;
}
.custom-cursor {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px; margin-left: -16px; margin-top: -16px;
  border: 2px solid var(--blue); border-radius: 50%; pointer-events: none; z-index: 1300;
  mix-blend-mode: difference; transform: translate3d(-100px,-100px,0); transition: transform .08s ease-out;
}
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg, .parallax-bg {
  position: absolute; inset: -8% 0; background-size: cover; background-position: center; transform: translate3d(0,0,0) scale(1.06);
  will-change: transform;
}
.hero-bg { background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&q=80&w=2070'); filter: brightness(.34); }
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,.28), rgba(0,0,0,0)); z-index: 1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 4rem; align-items: center; min-height: 100vh; padding: 6rem 0;
}
.logo { height: 50px; width: auto; }
.hero-copy h1, .section-header h2, .split-section h2, .services-head h2, .confidence-content h2 {
  margin: 0; font-weight: 900; letter-spacing: -.06em; line-height: .92;
}
.hero-copy h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 3rem; }
.hero-copy h1 span,
.split-section h2 span,
.section-header h2 span,
.confidence-content h2 span { color: var(--blue); }
.logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 3rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  padding: 1.1rem 2rem; border: 0; border-radius: 16px; font-weight: 900; transition: .25s ease;
}
.btn svg, .carousel-btn svg, .scroll-indicator svg, .icon-box svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: #3b82f6; transform: translateY(-1px); }
.btn-full { width: 100%; }
.hero-form-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(22px);
  padding: 2rem; border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.hero-form-card h3 { margin: 0 0 1.5rem; font-size: 1.6rem; }
.lead-form, .form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lead-form input, .lead-form textarea {
  width: 100%; background: rgba(255,255,255,.055); color: #fff; border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: .95rem 1rem; outline: none; transition: border-color .2s ease, background .2s ease;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #71717a; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--blue); background: rgba(255,255,255,.08); }
.lead-form textarea { resize: vertical; min-height: 110px; }
.scroll-indicator {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.scroll-indicator span { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: #a1a1aa; font-weight: 700; }
.scroll-indicator svg { color: var(--blue); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.floating-part {
  position: absolute; border-radius: 999px; object-fit: cover; pointer-events: none; z-index: 0; opacity: .2; will-change: transform;
}
.fp-1 { width: 260px; height: 260px; top: 10%; left: 5%; filter: blur(2px); opacity: .2; }
.fp-2 { width: 380px; height: 380px; right: 5%; bottom: 10%; filter: blur(10px); opacity: .1; }
.fp-3 { width: 190px; height: 190px; right: 15%; top: 40%; filter: blur(1px); opacity: .3; }
.split-section {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 5rem; align-items: center;
}
.split-section h2, .section-header h2, .services-head h2, .confidence-content h2 { font-size: clamp(2.7rem, 6vw, 5rem); }
.section-lead, .section-header p { font-size: 1.2rem; line-height: 1.8; color: #52525b; }
.section-header.center { text-align: center; margin: 0 auto 5rem; max-width: 980px; }
.section-header.narrow { max-width: 880px; }
.info-stack { display: grid; gap: 2rem; margin-top: 3rem; }
.info-item { display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem; }
.info-item h4 { margin: 0 0 .5rem; font-size: 1.28rem; color: #18181b; }
.info-item p { margin: 0; color: #52525b; line-height: 1.75; }
.icon-box {
  width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.1); color: var(--blue); flex-shrink: 0;
}
.icon-box.blue-light { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.4rem; }
.visual-card { position: relative; }
.visual-card > img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 28px; border: 1px solid #e4e4e7; box-shadow: var(--shadow-card); position: relative; z-index: 2;
}
.glow { position: absolute; width: 260px; height: 260px; border-radius: 999px; filter: blur(100px); z-index: 1; }
.glow-right { top: -40px; right: -40px; background: rgba(37,99,235,.14); }
.glow-left { bottom: -40px; left: -40px; background: rgba(59,130,246,.08); }
.card-grid.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.feature-card {
  background: #f4f4f5; border: 1px solid #e4e4e7; border-radius: 26px; padding: 2rem; box-shadow: 0 8px 22px rgba(0,0,0,.04);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.feature-card:hover { background: #fff; transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,.08); }
.feature-card h3 { margin: 0 0 1rem; font-size: 1.6rem; color: #18181b; }
.feature-card p { margin: 0; color: #52525b; line-height: 1.75; }
.tech-section { position: relative; overflow: hidden; }
.tech-lines span {
  position: absolute; width: 1px; background: linear-gradient(to bottom, transparent, rgba(37,99,235,.4), transparent); opacity: .45;
}
.tech-lines span:nth-child(1) { left: 25%; top: 18%; height: 16rem; }
.tech-lines span:nth-child(2) { right: 33%; top: 44%; height: 24rem; }
.tech-lines span:nth-child(3) { left: 50%; bottom: 18%; height: 12rem; }
.services-head {
  display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 4rem;
}
.eyebrow { margin: 0 0 1rem; color: var(--blue); letter-spacing: .4em; text-transform: uppercase; font-size: 1rem; }
.carousel-controls { display: flex; gap: 1rem; }
.carousel-btn {
  width: 56px; height: 56px; border-radius: 50%; border: 0; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue); transition: .25s ease;
}
.carousel-btn:hover { background: #3b82f6; }
.services-carousel { overflow: hidden; }
.services-track { display: flex; gap: 2rem; transition: transform .5s ease; will-change: transform; }
.service-card {
  flex: 0 0 calc((100% - 4rem) / 3); min-width: calc((100% - 4rem) / 3); background: #fff; border: 1px solid #f0f0f0; border-radius: 32px; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.service-media { aspect-ratio: 1/1; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-media img { transform: scale(1.08); }
.service-body { padding: 2rem; }
.service-body h3 {
  margin: 0 0 1rem; font-size: 1.55rem; color: #18181b; line-height: 1.18; min-height: 3.7rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.service-body p { margin: 0; color: #71717a; line-height: 1.75; }
.parallax-section {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 8rem 0;
}
.confidence-bg { background-image: url("../903.jpg"); filter: brightness(.28); background-size: cover;}
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.46); z-index: 1; }
.confidence-content { max-width: 980px; }
.confidence-list { display: grid; gap: 3rem; }
.confidence-item { display: grid; grid-template-columns: 82px 1fr; gap: 2rem; align-items: start; }
.confidence-number {
  width: 64px; height: 64px; border-radius: 20px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; font-weight: 900;
  box-shadow: var(--shadow-blue);
}
.confidence-item h3 { margin: 0 0 .8rem; font-size: 1.8rem; }
.confidence-item p { margin: 0; color: #a1a1aa; line-height: 1.75; font-size: 1.05rem; }
.site-footer {
  padding: 5rem 0; background: #000; border-top: 1px solid rgba(255,255,255,.05);
}
.footer-content {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.footer-logo { height: 48px; width: auto; }
.footer-copy { text-align: right; }
.footer-copy p { margin: 0 0 .5rem; color: #a1a1aa; font-weight: 500; }
.footer-copy small { color: #71717a; }
.reveal {
  opacity: 0; transform: translateY(46px); transition: opacity .85s cubic-bezier(.21,.47,.32,.98), transform .85s cubic-bezier(.21,.47,.32,.98);
}
.reveal-right { transform: translateX(46px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }
.reveal.visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal-child {
  opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible .reveal-child:nth-child(2) { transition-delay: .1s; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: .2s; }
@media (max-width: 1100px) {
  .hero-grid, .split-section, .card-grid.three { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 7rem; padding-bottom: 8rem; }
  .services-head { align-items: start; flex-direction: column; }
  .service-card { flex-basis: calc((100% - 2rem) / 2); min-width: calc((100% - 2rem) / 2); }
}
@media (max-width: 767px) {
  .custom-cursor { display: none; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section-spacing, .parallax-section { padding: 5rem 0; }
  .hero-grid { gap: 2rem; }
  .logo { height: 60px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .services-track { gap: 1rem; }
  .service-card { flex-basis: 100%; min-width: 100%; }
  .confidence-item { grid-template-columns: 1fr; gap: 1rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  .fp-1 { width: 170px; height: 170px; }
  .fp-2 { width: 220px; height: 220px; }
  .fp-3 { width: 120px; height: 120px; }
}
