:root {
  --dark: #101820;
  --dark-2: #11161A;
  --black: #0B0F12;
  --gold: #B9923F;
  --gold-2: #D7B765;
  --gold-soft: #E6D39A;
  --text: #F5F2EA;
  --muted: rgba(245, 242, 234, 0.72);
  --muted-2: rgba(245, 242, 234, 0.52);
  --line: rgba(215, 183, 101, 0.20);
  --line-strong: rgba(215, 183, 101, 0.42);
  --card: rgba(17, 22, 26, 0.82);
  --card-2: rgba(245, 242, 234, 0.05);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: 1180px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 183, 101, 0.18), transparent 28%),
    radial-gradient(circle at 85% 22%, rgba(185, 146, 63, 0.12), transparent 34%),
    linear-gradient(145deg, #0B0F12 0%, #101820 46%, #07090B 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(215, 183, 101, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 183, 101, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(11, 15, 18, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 0 1px var(--line-strong), 0 10px 34px rgba(185, 146, 63, 0.14);
}

.brand__text {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0.06em;
}

.brand__text strong {
  font-size: 1rem;
  color: var(--gold-soft);
}

.brand__text small {
  font-size: 0.68rem;
  color: var(--gold-2);
  letter-spacing: 0.38em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:not(.btn) {
  position: relative;
  transition: color 0.2s ease;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--gold-soft);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #151106;
  box-shadow: 0 14px 30px rgba(185, 146, 63, 0.22);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
}

.btn--outline:hover,
.btn--ghost:hover {
  border-color: var(--gold-2);
  background: rgba(215, 183, 101, 0.08);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
  width: fit-content;
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(215, 183, 101, 0.14);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.hero::before {
  width: 760px;
  height: 460px;
  right: -170px;
  top: 140px;
  box-shadow: inset 0 0 60px rgba(185, 146, 63, 0.06);
}

.hero::after {
  width: 540px;
  height: 340px;
  right: -70px;
  top: 220px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
  margin: 14px 0 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero__content p,
.section-head p,
.about__content p,
.contact__content p,
.systems__grid p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 690px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__proof span,
.hero__chips span,
.strengths span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.tech-orb {
  position: absolute;
  inset: 28px 0 auto;
  margin-inline: auto;
  width: min(460px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50% 50% 8% 8%;
  background:
    radial-gradient(circle at center, rgba(215, 183, 101, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(245, 242, 234, 0.06), rgba(245, 242, 234, 0.02));
  box-shadow: var(--shadow), inset 0 0 40px rgba(185, 146, 63, 0.08);
  overflow: hidden;
}

.tech-orb::before {
  content: "";
  position: absolute;
  inset: 30px 44px 0;
  border-radius: 50% 50% 0 0;
  background: repeating-conic-gradient(from 180deg at 50% 82%, rgba(215, 183, 101, 0.55) 0 1deg, transparent 1deg 4deg);
  mask-image: radial-gradient(circle at 50% 82%, transparent 0 16%, black 17% 100%);
  opacity: 0.55;
}

.orb-line {
  position: absolute;
  left: 50%;
  bottom: 41%;
  width: 2px;
  height: 150px;
  background: linear-gradient(to top, var(--gold), var(--gold-2));
  transform-origin: bottom;
}

.orb-line::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid var(--gold-2);
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--dark);
}

.orb-line--1 {
  transform: translateX(-50%) rotate(-27deg);
}

.orb-line--2 {
  transform: translateX(-50%) rotate(27deg);
}

.orb-core {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 158px;
  height: 158px;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: rgba(11, 15, 18, 0.76);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.35);
}

.orb-core img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 22px;
}

.float-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 15, 18, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.float-card small,
.float-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.float-card strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.18rem;
  margin: 8px 0 2px;
}

.float-card--one {
  left: 0;
  top: 72px;
}

.float-card--two {
  right: 12px;
  top: 290px;
}

.float-card--three {
  left: 56px;
  bottom: 18px;
  width: 220px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.section-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 44px;
}

.section-head--left {
  text-align: left;
  margin: 0;
}

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

.system-card,
.process-card,
.testimonial-card,
.contact-form,
.about__card,
.solution-item,
.contact-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.system-card {
  min-height: 430px;
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(215, 183, 101, 0.22), transparent 68%);
}

.system-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(215, 183, 101, 0.095), rgba(255, 255, 255, 0.03));
}

.system-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(215, 183, 101, 0.12);
  border: 1px solid var(--line);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.system-card__tag {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.system-card h3 {
  margin-top: 10px;
}

.system-card p,
.process-card p,
.testimonial-card p,
.solution-item span {
  color: var(--muted);
}

.system-card .btn {
  margin-top: auto;
}

.systems__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

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

.solution-item {
  border-radius: 20px;
  padding: 20px;
}

.solution-item strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

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

.process-card {
  border-radius: var(--radius);
  padding: 26px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 22px;
}

.about {
  background: linear-gradient(180deg, rgba(185, 146, 63, 0.055), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.about__card {
  border-radius: 34px;
  min-height: 420px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: "";
  position: absolute;
  inset: 36px 36px auto;
  height: 230px;
  border-radius: 120px 120px 20px 20px;
  border: 1px solid var(--line-strong);
  background: repeating-conic-gradient(from 180deg at 50% 98%, rgba(215, 183, 101, 0.48) 0 1deg, transparent 1deg 6deg);
  opacity: 0.24;
}

.about__card img {
  position: relative;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  margin-bottom: 28px;
}

.about__card span {
  color: var(--gold-2);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

.about__card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
  line-height: 1.12;
}

.strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.testimonial-card {
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-card__head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--dark-2);
}

.testimonial-card__head strong,
.testimonial-card__head span {
  display: block;
}

.testimonial-card__head span {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.stars {
  color: var(--gold-2);
  letter-spacing: 0.08em;
  margin-top: 18px;
}

.contact {
  padding-bottom: 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-box {
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-box a,
.footer__contact a {
  color: var(--gold-soft);
}

.contact-form {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

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

.contact-form span {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(11, 15, 18, 0.76);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(215, 183, 101, 0.10);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  background: var(--dark);
  color: var(--text);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-alert--success {
  color: #E9F8EC;
  background: rgba(31, 157, 106, 0.14);
  border: 1px solid rgba(31, 157, 106, 0.34);
}

.form-alert--error {
  color: #FFEAEA;
  background: rgba(183, 66, 66, 0.14);
  border: 1px solid rgba(183, 66, 66, 0.34);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 11, 0.92);
  padding: 46px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.footer__brand img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  margin-bottom: 14px;
}

.footer p,
.footer span,
.footer a {
  color: var(--muted);
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold-soft);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 0.9rem;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 22px;
}

.demo-modal.is-open {
  display: grid;
  place-items: center;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.demo-modal__panel {
  position: relative;
  width: min(1180px, 100%);
  height: min(850px, calc(100vh - 44px));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(11, 15, 18, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: modalIn 0.22s ease both;
}

.demo-modal__header,
.demo-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.demo-modal__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.demo-modal__header h2 {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.demo-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.demo-modal__frame-wrap {
  position: relative;
  background: #0E1114;
}

.demo-modal__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.demo-modal__loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  background: radial-gradient(circle at center, rgba(185, 146, 63, 0.10), rgba(11, 15, 18, 0.96));
  padding: 20px;
}

.demo-modal__loading strong {
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.demo-modal__loading span,
.demo-modal__footer p {
  color: var(--muted);
  margin: 0;
}

.demo-modal__loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

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

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

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .systems-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .systems__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 470px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11, 15, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .nav a::after {
    display: none;
  }

  .nav .btn {
    margin-top: 8px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 46px);
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__visual {
    min-height: 410px;
  }

  .tech-orb {
    width: min(340px, 100%);
  }

  .float-card {
    width: 165px;
    padding: 14px;
  }

  .float-card--one {
    top: 42px;
  }

  .float-card--two {
    top: 244px;
  }

  .float-card--three {
    left: 12px;
    bottom: 8px;
  }

  .section-head {
    text-align: left;
  }

  .section-head .eyebrow {
    justify-content: flex-start;
  }

  .solutions-list {
    grid-template-columns: 1fr;
  }

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

  .demo-modal {
    padding: 10px;
  }

  .demo-modal__panel {
    height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .demo-modal__footer,
  .demo-modal__header {
    align-items: flex-start;
  }

  .demo-modal__footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand__text {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero__actions,
  .hero__actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .systems-grid,
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: auto;
  }

  .hero__visual {
    min-height: 360px;
  }

  .tech-orb {
    width: 300px;
  }

  .orb-core {
    width: 118px;
    height: 118px;
    border-radius: 22px;
  }

  .orb-core img {
    width: 88px;
    height: 88px;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .hero__visual {
    display: grid;
    gap: 10px;
  }

  .tech-orb {
    position: relative;
    inset: auto;
    margin: 0 auto 12px;
  }

  .about__card {
    min-height: 340px;
  }
}
