@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('/assets/BeVietnamPro-Variable-UNvc8WeI.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('/assets/BeVietnamPro-VariableItalic-xm2isFqh.woff2') format('woff2');
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #000;
  --surface: #1a1a1a;
  --surface-soft: #0b0b0b;
  --line: #1f1f1f;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.38);
  --accent: #008CFF;
  --max: 1352px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

button,
a {
  font: inherit;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.logo {
  flex: 0 0 auto;
  color: #fff;
  font-size: 32px;
  font-weight: 100;
  letter-spacing: -1px;
  line-height: 1;
}

.logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 200;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px 8px 24px;
  color: #fff;
  background: var(--accent);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #0482E9;
}

.cta-button--light {
  min-height: 40px;
  padding: 8px 14px 8px 16px;
  color: #0a0a0a;
  background: #fff;
  font-size: 16px;
}

.cta-button--light:hover {
  background: #ededed;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.hero-section {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 1120px;
  padding: 118px 32px 84px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 140, 255, 0.30) 0%, rgba(0, 140, 255, 0.00) 100%), #000;
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 280px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 78%);
  content: '';
  pointer-events: none;
}

.hero-net {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(142vw, 2147px);
  max-width: none;
  opacity: 0.1;
  transform: translate(-50%, -52%) rotate(0deg);
  transform-origin: center;
  will-change: transform;
  animation: net-spin 42s linear infinite;
}

@keyframes net-spin {
  from {
    transform: translate(-50%, -52%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -52%) rotate(-360deg);
  }
}

.hero-copy,
.hero-actions,
.trusted-strip {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(72px, 9.9vw, 150px);
  font-weight: 200;
  letter-spacing: -0.1em;
  line-height: 0.9;
  text-align: center;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span + span {
  color: rgba(255, 255, 255, 0.4);
}

.hero-robot {
  position: absolute;
  top: 107px;
  left: 50%;
  width: min(56vw, 856px);
  max-width: none;
  pointer-events: none;
  transform: translateX(-50%);
  will-change: transform;
  z-index: 1;
}

.hero-actions {
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 78px;
  width: 100%;
  margin-top: 560px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  width: 100%;
}

.stats-row article {
  display: grid;
  justify-items: center;
  align-content: space-between;
  width: 200px;
  min-height: 120px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.stats-row strong {
  color: #fff;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.08em;
  line-height: 1;
}

.stats-row span,
.trusted-strip p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -0.06em;
}

.trusted-strip {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 78px;
  text-transform: uppercase;
}

.trusted-strip p {
  margin: 0;
  font-size: 16px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
}

.partner-logos span {
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 500;
}

.intro-band {
  display: grid;
  place-items: center;
  padding: 148px 80px 20px;
}

.intro-band p {
  max-width: 1080px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.intro-band span,
h2 span {
  color: rgba(255, 255, 255, 0.42);
}

.split-section,
.services-section,
.why-section,
.industries-section,
.testimonial-section {
  position: relative;
  padding: 128px 80px;
  border-bottom: 1px solid var(--line);
}
.services-section{
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 140, 255, 0.30) 0%, rgba(0, 140, 255, 0.00) 100%), #000;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 80px;
}

h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.3vw, 80px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.split-section h2 {
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 1.2;
}

.split-section p,
.section-heading p,
.service-card p,
.strength-grid p,
blockquote footer span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 200;
  line-height: 1.35;
}

.split-section p {
  max-width: 670px;
  margin: 12px 0 0;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.split-section img {
  width: 100%;
  height: 424px;
  object-fit: cover;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-bottom: 64px;
}
.section-heading h2 span{
  display: block;
}
.section-heading p {
  max-width: 480px;
  margin: 0;
  font-size: 20px;
  text-align: right;
}

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

.services-bento {
  display: grid;
  gap: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.strength-grid article,
.industry-grid article,
blockquote {
  background: var(--surface);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
}

.figma-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.figma-icon--small {
  margin-bottom: 18px;
}

.service-card--top {
  justify-content: space-between;
  height: 400px;
}

.service-card--bottom {
  gap: 40px;
  height: 360px;
}

.service-copy {
  display: grid;
  gap: 12px;
  width: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-card h3,
.strength-grid h3,
.industry-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.014em;
  line-height: 1.2;
}

.service-card p,
.strength-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.4;
}

.bottom-description {
  max-width: 100%;
}

.avatar-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.avatar-row img,
.avatar-row span {
  width: 64px;
  height: 64px;
  margin-right: -12px;
  border: 4px solid #111;
  border-radius: 50%;
}

.avatar-row img {
  object-fit: cover;
}

.avatar-row span {
  display: grid;
  place-items: center;
  margin-right: 0;
  color: #fff;
  background: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.project-count {
  display: grid;
  gap: 12px;
  width: 100%;
}

.project-count strong {
  color: #fff;
  font-size: 108px;
  font-weight: 100;
  letter-spacing: -0.04em;
  line-height: 0.74;
}

.project-count span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.07;
}

.why-section {
  overflow: hidden;
  background: #090604;
}

.why-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0.55;
  object-fit: cover;
}

.why-section > *:not(.why-bg) {
  position: relative;
  z-index: 1;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.strength-grid article {
  min-height: 190px;
  padding: 30px;
  background: rgba(255, 255, 2, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.industries-section {
  background: #030303;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.industry-grid article {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 132px;
  padding: 24px;
  text-align: center;
}

.industry-grid .figma-icon {
  width: 44px;
  height: 44px;
}

.industry-grid h3 {
  font-size: 15px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  align-items: stretch;
  gap: 40px;
}

.portrait-stack {
  display: grid;
  gap: 16px;
}

.portrait-stack img {
  width: 100%;
  height: 293px;
  object-fit: cover;
  filter: grayscale(1);
}

.portrait-stack img + img {
  height: 230px;
}

blockquote {
  display: grid;
  align-content: center;
  gap: 40px;
  margin: 0;
  padding: 48px;
}

blockquote > p {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 200;
  letter-spacing: -0.08em;
  line-height: 1.2;
}

blockquote footer {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

blockquote footer strong {
  color: #fff;
  font-size: 32px;
  font-weight: 100;
  line-height: 1;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  padding: 150px 32px;
  overflow: hidden;
  text-align: center;
  background: #050505;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.78));
  content: '';
}

.final-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.final-cta h2 {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 108px);
  font-weight: 100;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: none;
}

.final-cta em {
  color: var(--accent);
  font-style: normal;
  font-weight: 300;
}

.final-cta p {
  max-width: 560px;
  margin: 26px auto 30px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 200;
  line-height: 1.28;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 40px 80px;
  border-top: 1px solid var(--line);
  background: #080808;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--faint);
  font-size: 14px;
  font-weight: 200;
  line-height: 1.4;
}

.footer > a:not(.logo) {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 200;
}

.contact-page {
  padding-top: 92px;
}

.contact-hero {
  display: grid;
  place-items: center;
  padding: 96px 80px 48px;
  text-align: center;
}

.contact-hero-inner {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.65vw, 70px);
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-hero h1 span {
  color: rgba(255, 255, 255, 0.4);
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 1.85vw, 28px);
  font-weight: 300;
  line-height: 1.4;
}

.contact-content {
  display: grid;
  justify-items: center;
  gap: 64px;
  padding: 24px 80px 96px;
}

.contact-form {
  display: grid;
  gap: 20px;
  width: min(100%, 800px);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(10, 10, 10, 0.2);
  box-shadow: 0 28px 100px rgba(255, 255, 255, 0.03);
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.contact-form label span em {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  margin-left: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  padding: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form input.input-error,
.contact-form textarea.input-error {
  border-color: #ff5252 !important;
  background: rgba(255, 82, 82, 0.06);
}

.contact-field-error {
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 300;
  margin-top: -2px;
}

.contact-submit {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.contact-form > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 300;
  text-align: center;
}

.contact-status-alert {
  padding: 24px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.contact-status-alert--success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #69f0ae;
}

.contact-status-alert--error {
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.35);
  color: #ff8a80;
}

.contact-status-alert strong {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #fff;
}

.contact-reset-btn {
  margin-top: 12px;
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 10px 22px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact-reset-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.contact-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 800px);
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--accent);
  border: 1px solid rgba(255, 69, 0, 0.35);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
}

.contact-info-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-info-card span:not(.contact-card-icon) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
}

.contact-trusted {
  margin: 0;
  padding: 0 32px 92px;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 18px 22px;
  }

  .site-nav {
    display: none;
  }

  .hero-section {
    min-height: 980px;
  }

  .hero-robot {
    width: 680px;
  }

  .hero-actions {
    margin-top: 500px;
  }

  .split-section,
  .services-section,
  .why-section,
  .industries-section,
  .testimonial-section {
    padding: 92px 32px;
  }

  .intro-band {
    padding: 110px 32px 20px;
  }

  .split-section,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait-stack {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-stack img,
  .portrait-stack img + img {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .logo {
    font-size: 24px;
  }

  .site-header .cta-button {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
    letter-spacing: -0.03em;
  }

  .site-header .arrow-icon {
    display: none;
  }

  .hero-section {
    min-height: 870px;
    padding: 108px 16px 62px;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 17vw, 90px);
    letter-spacing: -0.08em;
  }

  .hero-robot {
    top: 148px;
    width: 520px;
  }

  .hero-actions {
    gap: 46px;
    margin-top: 430px;
  }

  .stats-row {
    gap: 8px;
  }

  .stats-row article {
    width: 31%;
    min-width: 96px;
    min-height: 98px;
    padding: 10px 4px;
  }

  .stats-row strong {
    font-size: 34px;
  }

  .stats-row span {
    font-size: 11px;
    text-align: center;
  }

  .partner-logos {
    gap: 14px 22px;
  }

  .intro-band,
  .split-section,
  .services-section,
  .why-section,
  .industries-section,
  .testimonial-section,
  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  h2,
  .split-section h2 {
    letter-spacing: -0.075em;
  }

  .split-section p {
    font-size: 18px;
  }

  .section-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
  }

  .section-heading p {
    text-align: left;
  }

  .service-grid,
  .strength-grid,
  .industry-grid,
  .portrait-stack {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  blockquote {
    padding: 30px 24px;
  }

  blockquote footer strong {
    font-size: 26px;
  }

  .final-cta {
    min-height: 560px;
  }

  .final-cta p {
    font-size: 18px;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
  }

  .contact-page {
    padding-top: 72px;
  }

  .contact-hero,
  .contact-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-hero {
    padding-top: 72px;
  }

  .contact-form {
    padding: 28px 18px;
  }

  .contact-card-row {
    grid-template-columns: 1fr;
  }
}
