@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/SpaceGrotesk-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/SpaceGrotesk-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/SpaceGrotesk-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/DMSans-Regular.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/DMSans-Bold.ttf');
  font-weight: 700;
}
:root {
  --bg: #020f12;
  --surface: #091b1f;
  --line: #163239;
  --text: #eef4f5;
  --muted: #9aa9ad;
  --accent: #0dd4ca;
  --accent-deep: #00484c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
em {
  color: var(--accent);
  font-style: normal;
}
.container {
  width: min(1192px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 15, 18, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(1192px, calc(100% - 48px));
  height: 64px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
}
.brand-mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(0, 216, 226, 0.3));
}
.brand strong {
  font-size: 17px;
}
nav {
  display: flex;
  gap: 36px;
  color: var(--muted);
  font-size: 14px;
}
nav a:first-child,
nav a:hover {
  color: var(--accent);
}
.button,
.button-secondary {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button {
  background: var(--accent);
  color: #001416;
}
.button:hover {
  transform: translateY(-2px);
  background: #31e6dd;
}
.button-small {
  justify-self: end;
  min-height: 40px;
  padding: 0 24px;
}
.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
}
.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.section-waves {
  position: relative;
  overflow: hidden;
}
.section-waves:after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 30%, rgba(0, 101, 105, 0.23), transparent 27%),
    radial-gradient(circle at 94% 65%, rgba(0, 98, 110, 0.19), transparent 26%),
    repeating-radial-gradient(
      ellipse at 50% 22%,
      transparent 0 150px,
      rgba(0, 151, 151, 0.09) 151px 152px,
      transparent 153px 210px
    );
}
.hero {
  min-height: 820px;
  padding: 112px 0 72px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
}
.pill span {
  color: var(--accent);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin: 26px 0 22px;
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 700;
}
.hero-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.stats {
  display: flex;
  gap: 74px;
  margin-top: 64px;
}
.stats div {
  display: flex;
  flex-direction: column;
}
.stats strong {
  color: var(--accent);
  font-size: 30px;
  line-height: 1.1;
}
.stats span {
  margin-top: 7px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.hero-mark {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 58px;
  opacity: 0.16;
  transform: translateX(8%) scale(1.04);
  transform-origin: top center;
}
.hero-mark img {
  width: 100%;
  filter: saturate(0.9);
}
.about,
.services,
.portfolio,
.testimonials {
  padding: 104px 0;
}
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.narrow {
  max-width: 640px;
}
.principles {
  display: grid;
  gap: 16px;
}
.principles p,
.chips span {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(9, 27, 31, 0.7);
  border-radius: 18px;
  color: var(--muted);
  padding: 17px 20px;
}
.founder {
  margin-top: 112px;
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 44px;
  align-items: center;
}
.founder > img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 24px;
  border: 1px solid var(--line);
  filter: contrast(1.05);
}
.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.services {
  padding-top: 120px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 52px 0 28px;
}
.service-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 27, 31, 0.86);
  padding: 28px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-deep);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-deep);
  color: var(--accent);
  font-size: 22px;
}
.service-card h3,
.project-card h3 {
  font-size: 19px;
  margin: 24px 0 10px;
}
.service-card p,
.project-card div > p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.text-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.project-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.project-card > div {
  padding: 28px;
}
.project-card h3 {
  margin: 6px 0;
  font-size: 21px;
}
.project-card .eyebrow {
  margin: 0;
}
.project-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #001416;
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.testimonial {
  border: 1px solid var(--line);
  background: rgba(9, 27, 31, 0.8);
  border-radius: 24px;
  padding: 30px;
}
.testimonial > p {
  min-height: 76px;
  color: var(--text);
  font-size: 15px;
}
.person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.person > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-deep);
  color: var(--accent);
  font-weight: 700;
}
.person div {
  display: flex;
  flex-direction: column;
}
.person small {
  color: var(--muted);
}
.cta {
  margin-top: 104px;
  padding: 64px 48px;
  border: 1px solid var(--line);
  background: linear-gradient(
    100deg,
    var(--surface),
    rgba(0, 79, 79, 0.62),
    var(--surface)
  );
  border-radius: 24px;
  text-align: center;
}
.cta h2 {
  max-width: 940px;
  margin: 0 auto 14px;
}
.cta p {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
}
footer {
  border-top: 1px solid var(--line);
  background: #031114;
}
.footer-grid {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.5fr;
  align-items: center;
  gap: 48px;
}
.footer-grid > div:first-child > p {
  color: var(--muted);
  max-width: 390px;
  font-size: 14px;
  margin: 16px 0 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.copyright {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }
  .hero {
    min-height: auto;
    padding: 96px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-mark {
    position: absolute;
    right: -18%;
    top: 10%;
    width: 68%;
    margin-top: 0;
    opacity: 0.09;
    transform: translate(8%, 4%) scale(1.04);
  }
  .about-top,
  .founder {
    grid-template-columns: 1fr;
  }
  .founder {
    margin-top: 72px;
  }
  .founder > img {
    height: 480px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    gap: 36px;
    flex-wrap: wrap;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .socials {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-links {
    grid-column: 1;
  }
  .portfolio,
  .about,
  .services,
  .testimonials {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .container,
  .nav-wrap {
    width: min(100% - 32px, 1192px);
  }
  .button-small {
    font-size: 12px;
    padding: 0 15px;
  }
  .brand strong {
    font-size: 16px;
  }
  h1 {
    font-size: 46px;
  }
  .hero-copy > p,
  .lead {
    font-size: 16px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .service-grid,
  .project-grid,
  .testimonial-grid,
  .chips {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .project-card > img {
    height: 220px;
  }
  .founder > img {
    height: 420px;
  }
  .cta {
    padding: 48px 20px;
  }
  .cta h2 {
    font-size: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
  .socials,
  .footer-links {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }
  .hero {
    padding-top: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.founder-reverse {
  grid-template-columns: 1fr 43%;
}
.founder-reverse > img {
  grid-column: 2;
  grid-row: 1;
}
.founder-reverse > div {
  grid-column: 1;
  grid-row: 1;
}
.role-title {
  margin: -8px 0 18px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .founder-reverse {
    grid-template-columns: 1fr;
  }
  .founder-reverse > img,
  .founder-reverse > div {
    grid-column: 1;
    grid-row: auto;
  }
}
.portfolio,
.clients {
  display: none;
}
.future-projects {
  padding: 112px 0;
}
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 44px;
}
.future-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}
.future-card:hover {
  transform: translateY(-9px);
  border-color: var(--accent);
}
.future-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
.future-card > div {
  padding: 26px;
}
.future-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.future-card h3 {
  font-size: 30px;
  margin: 8px 0;
}
.future-card p {
  color: var(--muted);
}
.future-card strong {
  color: var(--accent);
}
.logo-showcase {
  padding: 96px 0;
  overflow: hidden;
  background: #06171b;
}
.logo-rail {
  margin-top: 44px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logo-track {
  width: max-content;
  display: flex;
  gap: 30px;
  align-items: center;
  animation: logo-slide 28s linear infinite;
}
.logo-track img {
  width: 250px;
  height: 180px;
  object-fit: contain;
  padding: 12px;
}
.portfolio-link {
  text-align: center;
  margin-top: 42px;
}
@keyframes logo-slide {
  to {
    transform: translateX(calc(-50% - 15px));
  }
}
@media (max-width: 800px) {
  .future-grid {
    grid-template-columns: 1fr;
  }
  .future-card {
    min-height: auto;
  }
  .future-card img {
    height: 320px;
  }
  .logo-track img {
    width: 190px;
    height: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation-play-state: paused;
  }
}
.clients {
  padding: 104px 0 120px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.client-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 27, 31, 0.9);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-deep);
}
.client-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #07161a;
}
.client-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-card .client-visual {
  background: transparent;
}
.logo-card .client-visual img {
  object-fit: contain;
  padding: 24px;
}
.client-info {
  padding: 22px 24px 25px;
}
.client-info .eyebrow {
  margin: 0 0 8px;
}
.client-info h3 {
  margin: 0 0 5px;
  font-size: 20px;
}
.client-info > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 900px) {
  .clients {
    padding: 80px 0;
  }
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .client-grid {
    grid-template-columns: 1fr;
  }
  .client-visual {
    aspect-ratio: 16/9;
  }
}
