:root {
  --electric: #0066ff;
  --electric-2: #1fb6ff;
  --deep: #081220;
  --graphite: #111827;
  --platinum: #e5e7eb;
  --white: #ffffff;
  --black: #030812;
  --muted: #9daabd;
  --line: rgba(229, 231, 235, 0.18);
  --line-blue: rgba(0, 102, 255, 0.48);
  --panel: rgba(8, 18, 32, 0.78);
  --panel-strong: rgba(17, 24, 39, 0.92);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 102, 255, 0.18), transparent 34%),
    linear-gradient(180deg, var(--black), var(--deep) 44%, var(--black));
  font-family: Poppins, Montserrat, Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 10px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 28px));
  min-height: 56px;
  margin: 0 auto;
  padding: 0 14px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 8, 18, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.image-hero {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #030812;
}

.image-hero > img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #030812;
}

.brand img {
  display: block;
  width: 112px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #c7d2df;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  padding: 0 16px;
  min-height: 36px;
  border: 1px solid var(--line-blue);
  background: rgba(0, 102, 255, 0.1);
}

.button {
  min-height: 48px;
  padding: 0 20px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid #48c8ff;
  color: #04101e;
  background: linear-gradient(135deg, #13a8ff, #e9fbff);
}

.button.ghost {
  border: 1px solid rgba(229, 231, 235, 0.36);
  background: rgba(17, 24, 39, 0.58);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 72px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 102, 255, 0.42);
  background:
    radial-gradient(circle at 83% 30%, rgba(0, 102, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(3, 8, 18, 0.96), rgba(8, 18, 32, 0.9));
}

.hero.image-hero {
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: #030812;
}

.hero-art {
  position: relative;
  width: min(100vw, calc(100vh * 1.56741573));
  height: min(100vh, calc(100vw / 1.56741573));
  overflow: hidden;
  background: #030812;
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 11%;
  right: 11%;
  top: 0;
  height: 73%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(3, 8, 18, 1) 0 74%, rgba(3, 8, 18, 0.94) 84%, rgba(3, 8, 18, 0) 100%);
}

.hero-art > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-instagram-link {
  position: absolute;
  z-index: 4;
  top: clamp(14px, 1.7vw, 26px);
  right: clamp(14px, 1.8vw, 28px);
  display: grid;
  place-items: center;
  width: clamp(38px, 3.4vw, 52px);
  height: clamp(38px, 3.4vw, 52px);
  border: 1px solid rgba(88, 183, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.72), rgba(3, 8, 18, 0.86));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 18px rgba(0, 102, 255, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-instagram-link:hover {
  border-color: rgba(219, 250, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 26px rgba(66, 210, 246, 0.42),
    0 14px 30px rgba(0, 0, 0, 0.46);
  transform: translateY(-1px);
}

.hero-instagram-link svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 1.9;
  filter: drop-shadow(0 0 8px rgba(66, 210, 246, 0.36));
}

.hero-vector-brand {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 4.4%;
  width: 73%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.brand-cover {
  display: none;
}

.hero-logo-vector {
  display: block;
  width: 80%;
  height: auto;
  margin-bottom: 0.2%;
  filter:
    drop-shadow(0 0 10px rgba(0, 102, 255, 0.35))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.64));
}

.hero-vector-brand p {
  margin: 0;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2.92vw, 2.62rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.74),
    0 0 10px rgba(255, 255, 255, 0.18);
}

.hero-vector-brand p span {
  color: #0787ff;
  text-shadow:
    0 0 12px rgba(0, 102, 255, 0.74),
    0 2px 2px rgba(0, 0, 0, 0.68);
}

.hero-actions-inline {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 57.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
  transform: translateX(-50%);
}

.hero-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 12vw, 190px);
  min-height: clamp(38px, 4.1vw, 56px);
  padding: 0 clamp(18px, 2.2vw, 32px);
  border: 1px solid rgba(88, 183, 255, 0.82);
  border-radius: 7px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 102, 255, 0.98), rgba(0, 70, 210, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 20px rgba(0, 102, 255, 0.36),
    0 14px 28px rgba(0, 0, 0, 0.44);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.8rem, 1.08vw, 1.04rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.hero-about-button--primary {
  min-width: clamp(176px, 16vw, 246px);
  border-color: rgba(219, 250, 255, 0.86);
  color: #04101e;
  background:
    linear-gradient(180deg, #dffcff 0%, #6fe7ff 48%, #39c9ed 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.46) inset,
    0 0 20px rgba(66, 210, 246, 0.42),
    0 15px 32px rgba(0, 0, 0, 0.48);
  text-shadow: none;
}

.hero-about-button:hover {
  border-color: #dbeafe;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 28px rgba(0, 102, 255, 0.58),
    0 16px 32px rgba(0, 0, 0, 0.48);
  transform: translateY(-1px);
}

.about-modal {
  position: absolute;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 5%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.about-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 102, 255, 0.2), transparent 34%),
    rgba(3, 8, 18, 0.56);
  backdrop-filter: blur(5px);
}

.about-modal__panel {
  position: relative;
  width: min(720px, 78vw);
  min-height: 560px;
  padding: clamp(26px, 3.4vw, 46px);
  border: 1px solid rgba(88, 183, 255, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.78), rgba(3, 8, 18, 0.84));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 48px rgba(0, 102, 255, 0.22),
    0 28px 90px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
  overflow: hidden;
  text-align: left;
}

.about-modal__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0066ff, #7dd3fc, #0066ff, transparent);
  box-shadow: 0 0 16px rgba(0, 102, 255, 0.75);
}

.about-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(229, 231, 235, 0.22);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(3, 8, 18, 0.72);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.about-modal__eyebrow {
  margin: 0 0 10px;
  color: #1fb6ff;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 800;
  text-transform: uppercase;
}

.about-modal__logo {
  display: block;
  width: min(360px, 64%);
  height: auto;
  margin: -10px 0 8px;
  filter:
    drop-shadow(0 0 12px rgba(0, 102, 255, 0.32))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.46));
}

.about-modal__intro {
  max-width: 620px;
  margin: 0 0 22px;
  color: #dbe5f2;
  font-size: clamp(0.94rem, 1.2vw, 1.12rem);
  line-height: 1.48;
}

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

.about-modal__grid article {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(88, 183, 255, 0.24);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(0, 102, 255, 0.12), rgba(3, 8, 18, 0.22));
}

.about-modal__grid h3 {
  margin: 0 0 8px;
  color: #1fb6ff;
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.about-modal__grid p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.78rem, 0.98vw, 0.94rem);
  line-height: 1.38;
}

.about-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(219, 250, 255, 0.92);
  border-radius: 7px;
  color: #04101e;
  background:
    linear-gradient(180deg, #dffcff 0%, #61e4ff 46%, #42d2f6 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 22px rgba(66, 210, 246, 0.3),
    0 14px 28px rgba(0, 0, 0, 0.42);
  font-size: clamp(0.78rem, 0.94vw, 0.94rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-vector-icons {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 26.8%;
  border-top: 1px solid rgba(229, 231, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.98), #030812),
    #030812;
}

.hero-vector-icons article {
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: 0 2.8%;
  border-right: 1px solid rgba(229, 231, 235, 0.18);
  text-align: center;
}

.hero-vector-icons article:last-child {
  border-right: 0;
}

.hero-vector-icons img {
  display: block;
  width: clamp(34px, 4.5vw, 66px);
  height: clamp(34px, 4.5vw, 66px);
  margin-bottom: clamp(8px, 1vw, 14px);
}

.hero-vector-icons h2 {
  margin: 0 0 clamp(3px, 0.45vw, 7px);
  color: #ffffff;
  font-size: clamp(0.55rem, 1.08vw, 1.03rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88);
}

.hero-vector-icons p {
  margin: 0;
  color: #e5e7eb;
  font-size: clamp(0.5rem, 0.88vw, 0.9rem);
  line-height: 1.16;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88);
}

.second-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid rgba(0, 102, 255, 0.42);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 102, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #030812 0%, #081220 54%, #030812 100%);
}

.second-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 102, 255, 0.84) 0 1.4px, transparent 2.5px),
    radial-gradient(circle, rgba(31, 182, 255, 0.46) 0 1px, transparent 2px);
  background-size: 24px 18px, 38px 26px;
  transform: skewY(-7deg) translateY(120px);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 88%, transparent);
}

.section-orbit {
  position: absolute;
  right: -10vw;
  top: 10%;
  width: 48vw;
  height: 54vh;
  opacity: 0.58;
  border-top: 2px solid rgba(0, 102, 255, 0.78);
  border-radius: 50%;
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 16px rgba(0, 102, 255, 0.68));
}

.section-orbit::after {
  content: "";
  position: absolute;
  inset: 18% 2% 12%;
  border-top: 1px solid rgba(31, 182, 255, 0.62);
  border-radius: 50%;
}

.second-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.second-copy {
  max-width: 540px;
}

.second-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.second-copy p:not(.section-kicker) {
  color: var(--platinum);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

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

.solution-board article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.78), rgba(3, 8, 18, 0.58));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.solution-board .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  color: var(--platinum);
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.5));
}

.solution-board h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.solution-board p {
  margin: 0;
  color: var(--muted);
}

.hero.vector-hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 5%, rgba(0, 102, 255, 0.22), transparent 22%),
    radial-gradient(circle at 50% 62%, rgba(0, 102, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #020712 0%, #06101d 52%, #020712 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 66%, rgba(0, 102, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 66%, rgba(31, 182, 255, 0.36), transparent 18%);
  opacity: 0.75;
}

.hero-brand {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: center;
  width: min(900px, 82vw);
  margin-top: clamp(54px, 9vh, 92px);
  text-align: center;
}

.hero-brand-logo {
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 10px;
  image-rendering: auto;
  filter:
    drop-shadow(0 0 12px rgba(0, 102, 255, 0.34))
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}

.hero-brand-slogan {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 2.65vw, 2.85rem);
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.74);
}

.hero-brand-slogan span {
  color: #0787ff;
  text-shadow: 0 0 18px rgba(0, 102, 255, 0.52);
}

.hero-line {
  position: absolute;
  z-index: 1;
  left: 22%;
  right: 22%;
  top: 66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.9), #e8f7ff, rgba(0, 102, 255, 0.9), transparent);
  box-shadow:
    0 0 8px rgba(0, 102, 255, 0.86),
    0 0 22px rgba(0, 102, 255, 0.58);
}

.hero-wave {
  position: absolute;
  z-index: 1;
  width: 45vw;
  height: 42vh;
  opacity: 0.92;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 102, 255, 0.95) 0 1.6px, transparent 2.7px),
    radial-gradient(circle, rgba(31, 182, 255, 0.56) 0 1px, transparent 2px);
  background-size: 18px 16px, 29px 21px;
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.62));
  mask-image:
    radial-gradient(ellipse at center, #000 0 58%, transparent 72%),
    linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-wave::before,
.hero-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(0, 102, 255, 0.86);
  border-radius: 50%;
  filter: blur(0.2px) drop-shadow(0 0 10px rgba(31, 182, 255, 0.8));
}

.hero-wave::after {
  inset: 18% 2% 8%;
  border-top-color: rgba(31, 182, 255, 0.56);
}

.hero-wave-left {
  left: -15vw;
  top: 43%;
  transform: rotate(14deg) skewY(-10deg);
}

.hero-wave-right {
  right: -13vw;
  top: 25%;
  transform: rotate(-18deg) skewY(12deg);
}

.hero-feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  min-height: 160px;
  border-top: 1px solid rgba(229, 231, 235, 0.16);
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.38), rgba(3, 8, 18, 0.92)),
    rgba(3, 8, 18, 0.7);
  backdrop-filter: blur(4px);
}

.hero-feature-strip article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: 18px 14px 20px;
  border-right: 1px solid rgba(229, 231, 235, 0.18);
  text-align: center;
}

.hero-feature-strip article:last-child {
  border-right: 0;
}

.hero-feature-strip .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--platinum);
  filter:
    drop-shadow(0 0 8px rgba(0, 102, 255, 0.55))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.62));
}

.hero-feature-strip h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: clamp(0.74rem, 0.88vw, 0.95rem);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero-feature-strip p {
  margin: 0;
  color: var(--platinum);
  font-size: clamp(0.68rem, 0.82vw, 0.86rem);
  line-height: 1.22;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82);
}

.digital-wave {
  position: absolute;
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(circle, rgba(0, 102, 255, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(31, 182, 255, 0.48) 0 1px, transparent 2px);
  background-size: 26px 20px, 42px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.wave-one {
  left: -9%;
  right: -8%;
  bottom: 188px;
  height: 260px;
  transform: rotate(-3deg) skewY(-8deg);
}

.wave-two {
  top: 118px;
  right: -10%;
  width: 52%;
  height: 300px;
  opacity: 0.42;
  transform: rotate(16deg) skewY(10deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: calc(100vh - 210px);
  text-align: center;
}

.hero-copy-block {
  padding-top: clamp(54px, 10vh, 108px);
}

.hero-copy-block::after {
  content: "";
  display: block;
  width: min(520px, 78vw);
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, rgba(31, 182, 255, 0.82), transparent);
  box-shadow: 0 0 18px rgba(0, 102, 255, 0.9);
}

.hero-logo {
  display: block;
  width: min(560px, 70vw);
  margin: 0 auto 14px;
}

.slogan {
  margin: 0 auto 0;
  color: var(--platinum);
  font-size: clamp(1.7rem, 2.35vw, 2.4rem);
  font-weight: 800;
  line-height: 1.24;
}

.slogan span,
h1 span {
  color: var(--electric);
}

.hero-panel {
  max-width: 720px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--electric-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.2vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel .section-kicker,
.hero-panel h1,
.hero-text,
.hero-panel .check-list,
.hero-panel .hero-actions {
  display: none;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.market-card li,
.essence-grid p,
.language-grid p,
.final-cta p {
  color: var(--muted);
}

.hero-text {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--electric-2);
  border-bottom: 2px solid var(--electric-2);
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: none;
  position: relative;
  min-height: 520px;
}

.phone-mockup {
  position: absolute;
  right: 42px;
  top: 0;
  width: 285px;
  min-height: 500px;
  padding: 20px 15px;
  border: 1px solid rgba(229, 231, 235, 0.28);
  border-radius: 32px;
  background: linear-gradient(145deg, #151b25, #050a12);
  box-shadow: var(--shadow), inset 0 0 0 7px #0b111b;
  transform: rotate(7deg);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--platinum);
  font-size: 0.78rem;
}

.phone-top strong {
  color: var(--electric-2);
}

.message {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
}

.message.in {
  color: #06101d;
  background: var(--platinum);
}

.message.out {
  color: var(--white);
  background: rgba(229, 231, 235, 0.08);
}

.phone-input {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 231, 235, 0.18);
  border-radius: 18px;
  color: #6f7c8f;
  font-size: 0.75rem;
}

.robot-card {
  position: absolute;
  right: -12px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 170px;
  height: 220px;
  border: 1px solid rgba(229, 231, 235, 0.24);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 20%, rgba(0, 102, 255, 0.34), transparent 38%), rgba(17, 24, 39, 0.84);
  box-shadow: var(--shadow);
}

.bot-head {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 110px;
  height: 78px;
  border: 2px solid rgba(229, 231, 235, 0.68);
  border-radius: 30px;
  background: linear-gradient(180deg, #f8fafc, #9ca3af);
}

.bot-head span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 18px var(--electric);
}

.robot-card img {
  width: 58px;
  margin-top: -18px;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 18, 0.78);
}

.feature-strip .icon {
  color: var(--platinum);
  filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.28));
}

.feature-item {
  min-height: 132px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.feature-item:last-child {
  border-right: 0;
}

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

.feature-item strong {
  margin: 9px 0 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.feature-item small {
  color: var(--muted);
  font-size: 0.72rem;
}

.icon,
.market-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  color: var(--platinum);
  background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-bot {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='4' y='7' width='16' height='12' rx='3'/%3E%3Cpath d='M12 3v4M8 3h8M8 13h.01M16 13h.01M9 17h6M2 12h2M20 12h2'/%3E%3C/svg%3E");
}

.icon-whatsapp {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M5 19l1.2-3.4A8 8 0 1 1 9 18.5L5 19z'/%3E%3Cpath d='M9 8c.8 3 2.7 5 6 6l1-1.4-2-1-1 1c-1.2-.5-2-1.3-2.6-2.6l1-1-1-2L9 8z'/%3E%3C/svg%3E");
}

.icon-funnel {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18l-7 8v5l-4 2v-7L3 5z'/%3E%3C/svg%3E");
}

.icon-calendar {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16M9 15l2 2 4-5'/%3E%3C/svg%3E");
}

.icon-growth {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M4 19V9M10 19V5M16 19v-7M3 19h18M14 8l3-3 3 3M17 5v8'/%3E%3C/svg%3E");
}

.icon-shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6l8-3z'/%3E%3Cpath d='M9 12l2 2 4-5'/%3E%3C/svg%3E");
}

.icon-puzzle {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M9 3h6v4a2 2 0 1 0 0 4v4h-4a2 2 0 1 1-4 0H3V9h4a2 2 0 1 0 0-4h2V3z'/%3E%3C/svg%3E");
}

.icon-target {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 12l7-7M16 5h3v3'/%3E%3C/svg%3E");
}

.icon-eye {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M2 12s4-7 10-7 10 7 10 7-4 7-10 7S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.icon-rocket {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M8 16c-2 1-3 3-3 3s2 0 3-1l2-2M14 4c3-1 6 0 6 0s1 3 0 6l-7 7-6-6 7-7z'/%3E%3Ccircle cx='15' cy='9' r='2'/%3E%3C/svg%3E");
}

.icon-diamond {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M3 9l4-5h10l4 5-9 11L3 9zM3 9h18M7 4l5 16 5-16'/%3E%3C/svg%3E");
}

.section,
.section-panel {
  position: relative;
  padding: 86px 0;
}

.section-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 18, 0.48);
}

.system-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 0.8fr;
  gap: 12px;
}

.system-card,
.market-card,
.carousel-grid article,
.essence-grid article,
.language-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(3, 8, 18, 0.54));
}

.system-card {
  min-height: 190px;
  padding: 22px;
}

.logo-system img {
  width: min(340px, 100%);
}

.system-card small,
.swatch-row em {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.swatch-row span {
  display: grid;
  align-content: end;
  min-height: 128px;
}

.swatch-row span::before {
  content: "";
  display: block;
  height: 60px;
  margin-bottom: 12px;
  border: 1px solid rgba(229, 231, 235, 0.28);
  border-radius: 6px;
  background: var(--swatch);
}

.type-sample {
  color: var(--platinum);
  font-size: 5.8rem;
  font-weight: 600;
  line-height: 0.9;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.tight {
  margin-bottom: 24px;
}

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

.market-card {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: end;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -16% 28%;
  height: 190px;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 46%, rgba(0, 102, 255, 0.7) 47%, transparent 49%),
    radial-gradient(circle, rgba(31, 182, 255, 0.8) 0 2px, transparent 3px);
  background-size: 46px 46px, 24px 18px;
  transform: skewY(-9deg);
}

.market-card h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
}

.market-card a {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--electric);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.market-icon {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  color: var(--electric-2);
  justify-self: center;
}

.carousel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.carousel-grid article {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  text-align: center;
}

.carousel-grid .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  color: var(--electric-2);
}

.carousel-grid h3 {
  font-size: 0.93rem;
  text-transform: uppercase;
}

.essence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.essence-grid {
  display: grid;
  gap: 12px;
}

.essence-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  padding: 20px;
}

.essence-grid .icon {
  grid-row: span 2;
  color: var(--electric-2);
}

.essence-grid p {
  margin-bottom: 0;
}

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

.language-grid article {
  min-height: 210px;
  padding: 22px;
}

.mini-wave,
.circuit-lines {
  height: 82px;
  margin: 8px 0 18px;
}

.mini-wave {
  background:
    radial-gradient(circle, rgba(0, 102, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(31, 182, 255, 0.6) 0 1px, transparent 2px);
  background-size: 18px 14px, 28px 18px;
  transform: skewY(-9deg);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.circuit-lines {
  background:
    linear-gradient(90deg, transparent 0 12%, var(--electric) 12% 14%, transparent 14% 100%),
    linear-gradient(135deg, transparent 0 44%, var(--electric) 45% 47%, transparent 48%),
    linear-gradient(0deg, transparent 0 48%, rgba(31, 182, 255, 0.74) 49% 51%, transparent 52%);
  background-size: 62px 24px, 82px 42px, 100% 26px;
}

.brand-language {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-language li {
  padding-left: 18px;
  border-left: 2px solid var(--electric);
  color: var(--platinum);
}

.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.13), transparent 28%),
    var(--black);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 52px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--platinum);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(229, 231, 235, 0.24);
  border-radius: 7px;
  color: var(--white);
  background: rgba(3, 8, 18, 0.82);
  padding: 0 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--electric-2);
}

.contact-form option {
  color: #06101d;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--electric-2);
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-inner img {
  width: 150px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 180px auto;
    justify-content: space-between;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    padding-bottom: 12px;
  }

  .site-header.is-open .nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .system-grid,
  .essence-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .phone-mockup {
    right: 22%;
  }

  .feature-strip,
  .carousel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-grid,
  .language-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), 390px);
  }

  .site-header {
    width: calc(100% - 28px);
    min-height: 68px;
    padding-left: 16px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-logo {
    width: 292px;
    margin: 0 auto 18px;
  }

  .slogan {
    font-size: 1.12rem;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.02rem, 9vw, 2.36rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .feature-strip,
  .swatch-row,
  .carousel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:nth-child(even) {
    border-right: 0;
  }

  .market-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .market-icon {
    width: 90px;
    height: 90px;
  }

  .essence-grid article {
    grid-template-columns: 44px 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  html,
  body {
    min-height: 100%;
  }

  .hero.image-hero {
    min-height: 100svh;
  }

  .hero-art {
    width: 100%;
    height: 100svh;
    min-height: 700px;
  }

  .hero-art > img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-art::after {
    left: 0;
    right: 0;
    height: 70%;
    background:
      radial-gradient(ellipse at 50% 32%, rgba(3, 8, 18, 1) 0 54%, rgba(3, 8, 18, 0.96) 72%, rgba(3, 8, 18, 0.18) 100%);
  }

  .hero-instagram-link {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .hero-vector-brand {
    top: 8%;
    width: 100%;
  }

  .hero-logo-vector {
    width: min(300px, 76vw);
    margin-bottom: 6px;
  }

  .hero-vector-brand p {
    width: min(330px, 84vw);
    font-size: clamp(0.92rem, 4.75vw, 1.24rem);
    line-height: 1.16;
  }

  .hero-actions-inline {
    top: 44.8%;
    left: 50%;
    width: min(350px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transform: translateX(-50%);
  }

  .hero-about-button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 6px;
    font-size: clamp(0.62rem, 2.9vw, 0.78rem);
    border-radius: 7px;
  }

  .hero-about-button--primary {
    grid-column: 1 / -1;
    min-width: 0;
    min-height: 44px;
    font-size: clamp(0.68rem, 3.1vw, 0.84rem);
  }

  .hero-vector-icons {
    left: 50%;
    right: auto;
    width: min(100vw, 430px);
    transform: translateX(-50%);
    height: 27%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-vector-icons article {
    padding: 0 5px;
    border-right: 1px solid rgba(229, 231, 235, 0.14);
    border-bottom: 1px solid rgba(229, 231, 235, 0.14);
  }

  .hero-vector-icons article:nth-child(3n) {
    border-right: 0;
  }

  .hero-vector-icons article:nth-child(n + 4) {
    border-bottom: 0;
  }

  .hero-vector-icons img {
    width: clamp(26px, 7.3vw, 36px);
    height: clamp(26px, 7.3vw, 36px);
    margin-bottom: 6px;
  }

  .hero-vector-icons h2 {
    margin-bottom: 3px;
    font-size: clamp(0.55rem, 2.5vw, 0.72rem);
  }

  .hero-vector-icons p {
    font-size: clamp(0.48rem, 2.2vw, 0.64rem);
    line-height: 1.12;
  }

  .about-modal {
    position: fixed;
    z-index: 999 !important;
    padding: 12px;
  }

  .about-modal__backdrop {
    z-index: 0;
    background:
      radial-gradient(circle at 50% 28%, rgba(0, 102, 255, 0.18), transparent 34%),
      rgba(3, 8, 18, 0.93);
    backdrop-filter: blur(9px);
  }

  .about-modal__panel {
    z-index: 1;
    width: min(100%, 430px);
    max-height: calc(100svh - 24px);
    min-height: 0;
    padding: 24px 16px 18px;
    overflow-y: auto;
    background: #030812 !important;
    backdrop-filter: none;
    isolation: isolate;
  }

  .about-modal__close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .about-modal__eyebrow {
    margin-bottom: 8px;
    padding-right: 38px;
    font-size: 0.72rem;
  }

  .about-modal__logo {
    width: min(270px, 78%);
    margin: -6px 0 8px;
  }

  .about-modal__intro {
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

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

  .about-modal__grid article {
    min-height: 0;
    padding: 12px;
    background-color: #05101f !important;
    background-image: linear-gradient(180deg, #061a36, #030812) !important;
  }

  .about-modal__grid h3 {
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

  .about-modal__grid p {
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .about-modal__actions {
    margin-top: 14px;
  }

  .about-modal__whatsapp {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero-art:has(.about-modal.is-open) .hero-vector-brand,
  .hero-art:has(.about-modal.is-open) .hero-actions-inline,
  .hero-art:has(.about-modal.is-open) .hero-vector-icons {
    opacity: 0;
  }
}

@media (max-width: 380px) {
  .hero-art {
    min-height: 660px;
  }

  .hero-vector-brand {
    top: 8%;
  }

  .hero-actions-inline {
    top: 45.8%;
  }

  .hero-vector-icons {
    height: 26%;
  }

  .hero-vector-icons p {
    display: none;
  }
}
