:root {
  --bg: #07101f;
  --bg-2: #0a1427;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.11);
  --text: #f6f9ff;
  --muted: #9facbf;
  --blue: #2f8cff;
  --blue-2: #62b4ff;
  --blue-3: #7d7cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(46, 126, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #08111f 0%, #07101f 55%, #050b15 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.page-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .10;
  pointer-events: none;
  z-index: -1;
}

.glow-one {
  background: #2d7dff;
  top: 10%;
  left: -280px;
}

.glow-two {
  background: #6b5cff;
  right: -300px;
  bottom: 5%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 16, 31, .74);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #1b74ff, #63b6ff);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.04em;
  box-shadow: 0 8px 24px rgba(41, 132, 255, .28),
              inset 0 1px 0 rgba(255,255,255,.35);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: -.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}

.nav-link {
  position: relative;
  color: #b9c4d5;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 17px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255,255,255,.07);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: white;
  border-radius: 2px;
  transition: .25s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  right: -210px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(79, 155, 255, .12);
  box-shadow:
    0 0 0 70px rgba(79, 155, 255, .025),
    0 0 0 150px rgba(79, 155, 255, .015);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(73, 145, 255, .09);
  border: 1px solid rgba(90, 162, 255, .17);
  color: #a9ccff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 26px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58a8ff;
  box-shadow: 0 0 16px #58a8ff;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(52px, 6vw, 84px);
  max-width: 790px;
}

.gradient-text {
  background: linear-gradient(100deg, #fff 5%, #74b8ff 46%, #548dff 72%, #8d83ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2788ff, #4b7eff 65%, #7e72ff);
  color: white;
  box-shadow: 0 16px 40px rgba(42, 123, 255, .28), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(42, 123, 255, .36), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-secondary {
  background: rgba(255,255,255,.035);
  color: #d9e2ef;
  border-color: rgba(255,255,255,.11);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.18);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 58px;
}

.hero-proof div:not(.proof-line) {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-proof strong {
  font-size: 13px;
  color: #eaf2ff;
}

.hero-proof span {
  font-size: 12px;
  color: #718097;
}

.proof-line {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.11);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.logo-card {
  position: relative;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 52% 35%, rgba(52, 142, 255, .26), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 40%);
  pointer-events: none;
}

.logo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  opacity: .96;
  filter: saturate(1.03) contrast(1.02);
}

.logo-card-shine {
  position: absolute;
  z-index: 2;
  width: 40%;
  height: 150%;
  left: -50%;
  top: -25%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 35% { left: -55%; }
  65%, 100% { left: 120%; }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(11, 24, 45, .75);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #7f90a8;
  font-size: 11px;
}

.floating-card strong {
  font-size: 13px;
  margin-top: 2px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #80bfff;
  background: rgba(67, 144, 255, .11);
  border: 1px solid rgba(67, 144, 255, .18);
}

.card-a {
  left: -52px;
  bottom: 55px;
  animation: float 5s ease-in-out infinite;
}

.card-b {
  right: -35px;
  top: 60px;
  animation: float 5.5s ease-in-out infinite .7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: #5f6e84;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  left: 0;
  top: -12px;
  background: #65aaff;
  animation: scrollline 2s ease-in-out infinite;
}

@keyframes scrollline {
  0% { top: -12px; }
  100% { top: 30px; }
}

.section-dark {
  background: rgba(2, 8, 17, .48);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-kicker {
  display: inline-block;
  color: #6faeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 68px);
  max-width: 780px;
}

.section-heading > p {
  color: var(--muted);
  max-width: 460px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: #2988ff;
  filter: blur(70px);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(109, 173, 255, .26);
  background: linear-gradient(180deg, rgba(72, 139, 255, .08), rgba(255,255,255,.03));
}

.service-card:hover::after {
  opacity: .12;
}

.service-card.featured {
  background:
    radial-gradient(circle at 80% 0, rgba(55, 131, 255, .14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  border-color: rgba(105, 168, 255, .2);
}

.service-number {
  position: absolute;
  right: 27px;
  top: 27px;
  color: #56667e;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(54, 135, 255, .09);
  border: 1px solid rgba(80, 152, 255, .17);
  margin-bottom: 44px;
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: #6cb1ff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 27px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  max-width: 330px;
}

.card-link {
  margin-top: auto;
  padding-top: 34px;
  color: #dce9fb;
  font-size: 13px;
  font-weight: 700;
}

.card-link b {
  margin-left: 7px;
  color: #69adff;
}

.approach {
  margin-top: 80px;
  padding-top: 72px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.approach-title h3 {
  font-size: 34px;
  max-width: 360px;
}

.approach-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 42px;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
}

.step > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(72, 145, 255, .08);
  border: 1px solid rgba(87, 154, 255, .14);
  color: #69aaff;
  font-size: 10px;
  font-weight: 800;
}

.step strong {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.step p {
  color: #8090a7;
  font-size: 13px;
}

.contact-section {
  padding-top: 145px;
  padding-bottom: 145px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.contact-copy p {
  color: var(--muted);
  max-width: 520px;
  margin-top: 26px;
  font-size: 16px;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-points > a,
.contact-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: #71afff;
  font-weight: 800;
}

.contact-points small,
.contact-points strong {
  display: block;
}

.contact-points small {
  color: #687990;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}

.contact-points strong {
  color: #dce5f1;
  font-size: 13px;
}

.contact-form {
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
}

.contact-form label > span {
  display: block;
  color: #93a2b6;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px 2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  outline: none;
  border-radius: 13px;
  background: rgba(3, 10, 19, .55);
  color: white;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #526176;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(79, 150, 255, .55);
  background: rgba(7, 17, 31, .82);
  box-shadow: 0 0 0 4px rgba(61, 136, 255, .08);
}

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

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 2px;
}

.form-status {
  min-height: 20px;
  color: #8fc0ff;
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.12);
}

.footer-wrap {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #728198;
  font-size: 12px;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 12px;
}

.footer-brand .brand-name {
  color: #c7d3e1;
  font-size: 14px;
}

.footer-wrap > p {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-right a {
  color: #8fa3bd;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .12s;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .approach,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(720px, 90%);
    margin-inline: auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .section-heading {
    gap: 22px;
  }

  .approach {
    gap: 40px;
  }

  .contact-grid {
    gap: 56px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 92px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand-name {
    font-size: 16px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 5px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(7, 16, 31, .95);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(20px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    border-radius: 11px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 110px;
  }

  .hero::after {
    width: 560px;
    height: 560px;
    right: -360px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 12px;
    justify-content: space-between;
  }

  .hero-proof strong {
    font-size: 11px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .proof-line {
    height: 30px;
  }

  .hero-visual {
    width: 100%;
  }

  .logo-card {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .services-grid,
  .approach-steps,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 340px;
    grid-column: auto;
  }

  .approach {
    margin-top: 60px;
    padding-top: 55px;
  }

  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 14px;
    text-align: left;
  }

  .footer-wrap > p {
    display: none;
  }

  .footer-right {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* --- Updated clean hero --- */
.hero-single {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-single .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 930px;
}

.hero-single h1 {
  max-width: 900px;
}

.hero-single .hero-text {
  max-width: 700px;
}

.hero-orbit {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -190px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: .78;
}

.orbit {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(88, 160, 255, .18);
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 630px;
  height: 630px;
}

.orbit-two {
  width: 455px;
  height: 455px;
  border-color: rgba(111, 124, 255, .19);
}

.orbit-three {
  width: 290px;
  height: 290px;
  border-color: rgba(100, 184, 255, .24);
  box-shadow:
    0 0 80px rgba(48, 129, 255, .12),
    inset 0 0 80px rgba(54, 132, 255, .06);
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(48, 139, 255, .28), rgba(69, 96, 255, .12));
  border: 1px solid rgba(127, 188, 255, .30);
  box-shadow:
    0 0 60px rgba(54, 139, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.core span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -.07em;
  color: #dcecff;
  text-shadow: 0 0 24px rgba(94, 170, 255, .55);
}

/* --- Projects --- */
.projects-section {
  overflow: hidden;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.11);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(65, 143, 255, .12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  transition: transform .3s ease, border-color .3s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -170px;
  bottom: -180px;
  filter: blur(65px);
  opacity: .14;
  pointer-events: none;
}

.project-yvg::before {
  background: #2b8cff;
}

.project-teltonika::before {
  background: #776cff;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 174, 255, .23);
}

.project-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.project-index,
.project-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-index {
  color: #5e6d84;
}

.project-tag {
  color: #8ebeff;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(67, 140, 255, .08);
  border: 1px solid rgba(88, 157, 255, .13);
}

.project-content {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.project-label {
  display: inline-block;
  color: #b7c7da;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: clamp(32px, 3.2vw, 46px);
  max-width: 560px;
  margin-bottom: 20px;
}

.project-card p {
  max-width: 600px;
  color: var(--muted);
  font-size: 15px;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.project-features span {
  padding: 8px 11px;
  border-radius: 10px;
  color: #aebdd0;
  font-size: 11px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.075);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  .hero-orbit {
    right: -330px;
    opacity: .55;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 450px;
  }
}

@media (max-width: 720px) {
  .hero-single {
    min-height: auto;
  }

  .hero-orbit {
    width: 440px;
    height: 440px;
    right: -320px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .orbit-three {
    width: 205px;
    height: 205px;
  }

  .core {
    width: 84px;
    height: 84px;
    border-radius: 24px;
  }

  .core span {
    font-size: 25px;
  }

  .project-card {
    min-height: 430px;
    padding: 26px;
  }

  .project-content {
    margin-top: 60px;
  }

  .project-tag {
    text-align: right;
  }
}

.form-submit:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}
