:root {
  --ink: #050b18;
  --ink-2: #08162d;
  --panel: rgba(255, 255, 255, .88);
  --panel-strong: #ffffff;
  --text: #07111f;
  --muted: #657084;
  --line: rgba(8, 22, 45, .12);
  --blue: #075dff;
  --blue-2: #0a8cff;
  --blue-3: #7bbcff;
  --navy: #0a1280;
  --gold: #ffbd10;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 80px rgba(8, 22, 45, .13);
  --shadow-blue: 0 22px 60px rgba(7, 93, 255, .28);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(7, 93, 255, .10), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f6f9ff 100%);
  font-family: "IBM Plex Sans", "Aptos", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), var(--max));
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transform: translateX(-50%);
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border: 1px solid transparent;
  border-radius: 0 0 24px 24px;
}

.site-header.is-scrolled {
  top: 0;
  height: 70px;
  padding: 0 18px;
  background: rgba(5, 11, 24, .76);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.brand {
  width: 176px;
  height: 54px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(7, 93, 255, .25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  color: #ffffff;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  opacity: .92;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  transform: translateX(-50%);
  transition: width .25s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #9dccff;
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.domain-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 188, 255, .9);
  background: rgba(7, 93, 255, .14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

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

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 28px;
  padding: 132px max(28px, calc((100vw - var(--max)) / 2)) 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 77% 50%, rgba(7, 93, 255, .46), transparent 20rem),
    radial-gradient(circle at 18% 22%, rgba(10, 140, 255, .16), transparent 18rem),
    linear-gradient(135deg, #020812 0%, #061329 48%, #020710 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(123, 188, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 188, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 52%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -180px -12%;
  height: 270px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .78), transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.grid-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(7, 93, 255, .32);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(7, 93, 255, .16), 0 0 80px rgba(7, 93, 255, .16);
}

.orb-one {
  right: 14%;
  top: 24%;
}

.orb-two {
  right: -110px;
  top: 18%;
  width: 500px;
  height: 500px;
  opacity: .24;
}

.line-circuit {
  position: absolute;
  right: 0;
  height: 1px;
  width: 38vw;
  background: linear-gradient(90deg, transparent, rgba(7, 93, 255, .65), transparent);
  transform-origin: right;
  opacity: .5;
}

.line-one {
  top: 34%;
  transform: rotate(-42deg);
}

.line-two {
  top: 58%;
  transform: rotate(0deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #1b72ff;
  text-transform: none;
  font-size: 1.05rem;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Aptos Display", sans-serif;
  letter-spacing: -.055em;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: .93;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--text);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 13px;
  font-weight: 800;
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .24), transparent);
  transform: translateX(-110%);
  transition: transform .55s var(--ease);
}

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

.btn:hover::before {
  transform: translateX(110%);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #0b7cff);
  box-shadow: var(--shadow-blue);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .04);
}

.btn-outline {
  min-height: 46px;
  color: var(--text);
  border: 1px solid rgba(8, 22, 45, .26);
  background: rgba(255, 255, 255, .7);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: 56px;
}

.proof-item {
  position: relative;
  min-height: 116px;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  transform-style: preserve-3d;
}

.proof-icon {
  position: absolute;
  top: 19px;
  left: 16px;
  color: var(--blue-2);
  font-weight: 900;
  font-size: 1.55rem;
}

.proof-item strong,
.proof-item small {
  display: block;
}

.proof-item strong {
  margin-bottom: 10px;
  font-size: .95rem;
}

.proof-item small {
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  place-items: end center;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform .16s linear;
}

.portrait-ring {
  position: absolute;
  width: min(82%, 510px);
  aspect-ratio: 1;
  bottom: 18px;
  left: 50%;
  border: 1px solid rgba(38, 116, 255, .48);
  border-radius: 50%;
  background: radial-gradient(circle at 48% 38%, rgba(7, 93, 255, .3), transparent 48%);
  box-shadow: inset 0 0 70px rgba(7, 93, 255, .18), 0 0 110px rgba(7, 93, 255, .14);
  transform: translateX(-50%);
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(7, 93, 255, .85);
}

.portrait-ring::before {
  top: 37%;
  left: -5px;
}

.portrait-ring::after {
  top: 31%;
  right: 5%;
}

.portrait {
  position: relative;
  z-index: 3;
  width: min(92%, 500px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, .35));
  mix-blend-mode: lighten;
}

.tech-orbit {
  position: absolute;
  z-index: 1;
  inset: 44px 12px 28px;
  pointer-events: none;
}

.tech-orbit span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #dcecff;
  border: 1px solid rgba(123, 188, 255, .32);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(7, 93, 255, .32), rgba(255, 255, 255, .06));
  box-shadow: 0 14px 36px rgba(7, 93, 255, .16), inset 0 0 20px rgba(123, 188, 255, .08);
  animation: floatBadge 6s var(--ease) infinite;
  animation-delay: var(--delay);
  backdrop-filter: blur(12px);
}

.tech-chip img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .24));
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -13px, 0);
  }
}

.about,
.products,
.reviews,
.contact {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 28px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 84px;
}

.section-copy p {
  max-width: 590px;
  color: #243047;
  font-size: 1.05rem;
  line-height: 1.68;
}

.title-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin: 18px 0 26px;
  border-radius: 99px;
  background: var(--blue);
  transition: width .28s var(--ease);
}

.section-hotspot {
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.section-hotspot.is-hot .title-rule {
  width: 76px;
}

.section-hotspot.is-hot .section-heading h2,
.section-hotspot.is-hot .section-copy h2 {
  color: #051a45;
}

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

.stat-card,
.product-card,
.review-card,
.contact-panel {
  position: relative;
  border: 1px solid rgba(8, 22, 45, .08);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}

.tilt-card:hover {
  --lift: -8px;
  border-color: rgba(7, 93, 255, .24);
  box-shadow: 0 30px 90px rgba(7, 93, 255, .18);
}

.stat-card {
  min-height: 270px;
  padding: 30px 28px;
  border-radius: 18px;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  color: #ffffff;
  font-weight: 900;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), #0a82ff);
  box-shadow: var(--shadow-blue);
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.35rem;
  line-height: .95;
}

.stat-card span:not(.stat-icon) {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.15rem;
}

.stat-card p {
  max-width: 150px;
  margin: 28px 0 0;
  color: #243047;
  font-size: 1.02rem;
  line-height: 1.34;
}

.stat-card p::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: var(--blue);
}

.products,
.reviews {
  padding-top: 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  transition: transform .25s var(--ease), color .25s var(--ease);
}

.text-link:hover {
  color: #003ec4;
  transform: translateX(4px);
}

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

.product-card,
.review-card {
  overflow: hidden;
  border-radius: 18px;
}

.product-preview {
  position: relative;
  height: 178px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, .9) 0 22%, transparent 22%),
    radial-gradient(circle at 74% 35%, rgba(7, 93, 255, .22), transparent 8rem);
}

.product-preview span {
  position: absolute;
  display: block;
  border-radius: 99px;
  background: rgba(7, 93, 255, .14);
}

.product-preview span:nth-child(1) {
  top: 42px;
  left: 32%;
  width: 46%;
  height: 10px;
}

.product-preview span:nth-child(2) {
  top: 78px;
  left: 32%;
  width: 58%;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 38px rgba(8, 22, 45, .12);
}

.product-preview span:nth-child(3) {
  right: 28px;
  bottom: 24px;
  width: 36%;
  height: 56px;
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(135deg, rgba(7, 93, 255, .65), rgba(10, 140, 255, .1));
}

.preview-insurance::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(7, 93, 255, .24), transparent 9rem),
    linear-gradient(180deg, #edf7ff 0%, #ffffff 74%);
}

.preview-insurance span:nth-child(1) {
  left: 22%;
  width: 58%;
}

.preview-insurance span:nth-child(2) {
  left: 18%;
  width: 64%;
  height: 72px;
}

.preview-insurance span:nth-child(3) {
  right: 22%;
  width: 20%;
  border-radius: 99px;
}

.preview-crm::before {
  background:
    linear-gradient(90deg, #251a87 0 24%, transparent 24%),
    radial-gradient(circle at 72% 25%, rgba(7, 93, 255, .22), transparent 8rem),
    linear-gradient(135deg, #f3f7ff, #ffffff);
}

.card-body {
  padding: 22px;
}

.card-body p,
.review-card p {
  color: #26334a;
  line-height: 1.55;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-top: 4px;
  padding: 0 14px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 800;
  border: 1px solid rgba(8, 22, 45, .16);
  border-radius: 10px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.mini-link:hover {
  color: var(--blue);
  border-color: rgba(7, 93, 255, .34);
  transform: translateX(4px);
}

.review-card {
  min-height: 240px;
  padding: 28px;
}

.quote {
  display: block;
  height: 26px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: .6;
}

.stars {
  margin: 18px 0 20px;
  color: var(--gold);
  letter-spacing: .08em;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2428a8);
}

.client strong,
.client small {
  display: block;
}

.client small {
  color: var(--muted);
}

.contact {
  padding-bottom: 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  padding: clamp(28px, 5vw, 56px);
  color: #ffffff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 83% 22%, rgba(10, 140, 255, .36), transparent 18rem),
    linear-gradient(135deg, #031026, #071b38 58%, #020810);
}

.contact-panel h2 {
  max-width: 760px;
  color: #ffffff;
}

.contact-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.contact-row:hover {
  transform: translateX(5px);
  border-color: rgba(123, 188, 255, .54);
  background: rgba(7, 93, 255, .16);
}

.contact-row span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(7, 93, 255, .34);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding: 58px max(28px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, .76);
  background:
    radial-gradient(circle at 10% 0%, rgba(7, 93, 255, .24), transparent 20rem),
    linear-gradient(135deg, #020812, #06142a);
}

.site-footer img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 12px;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.site-footer a:hover {
  color: #7bbcff;
  transform: translateX(3px);
}

.footer-brand a {
  margin: 14px 0;
  color: var(--blue-2);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-brand p {
  max-width: 310px;
  line-height: 1.55;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .domain-pill {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

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

  .hero-visual {
    min-height: 520px;
    margin-top: -24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    gap: 18px;
  }

  .product-grid,
  .review-grid {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
    padding: 0 12px;
  }

  .brand {
    width: 152px;
  }

  .brand img {
    width: 100%;
    height: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 46;
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 44;
    top: 12px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 78px 18px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(3, 10, 24, .94);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
    transform: translateY(-116%);
    transition: transform .32s var(--ease);
    backdrop-filter: blur(22px);
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
  }

  .hero {
    min-height: auto;
    padding: 110px 20px 54px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 190px;
  }

  .hero-proof,
  .stats-grid,
  .product-grid,
  .review-grid,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 460px;
    place-items: center;
  }

  .portrait {
    width: min(96%, 430px);
  }

  .tech-orbit {
    inset: 24px 0 20px;
  }

  .tech-orbit span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .tech-chip img {
    width: 25px;
    height: 25px;
  }

  .about,
  .products,
  .reviews,
  .contact {
    padding: 58px 20px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .stat-card {
    min-height: 220px;
  }

  .contact-actions {
    align-content: start;
  }

  .site-footer {
    padding: 48px 20px;
    gap: 26px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .portrait-ring {
    width: 94%;
  }

  .tech-orbit span:nth-child(2),
  .tech-orbit span:nth-child(6) {
    display: none;
  }

  .contact-row strong {
    font-size: .95rem;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
