@font-face {
  font-family: "Zen Dots";
  src: url("../fonts/ZenDots.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("../fonts/Blinker-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("../fonts/Blinker-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #071326;
  --navy: #06101f;
  --navy-2: #0a1d37;
  --blue: #0d77f4;
  --cyan: #2ad7ff;
  --pink: #ed008c;
  --paper: #f6f8fb;
  --muted: #667489;
  --line: rgba(9, 35, 68, 0.12);
  --glass: rgba(255, 255, 255, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Blinker", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

h1,
h2 {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.4rem, 4.9vw, 5.15rem);
  line-height: 1.02;
  margin-bottom: 1.4rem;
}

h3 {
  font-family: "Blinker", sans-serif;
  font-weight: 600;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.eyebrow {
  align-items: center;
  color: #164a80;
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.65rem;
  letter-spacing: 0.13em;
  margin-bottom: 1.45rem;
  text-transform: uppercase;
}

.eyebrow span {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  display: block;
  height: 3px;
  width: 36px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 0.7rem;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(100deg, var(--pink), #ca1fdb 53%, #006cff);
  box-shadow: 0 18px 40px rgba(237, 0, 140, 0.24);
  color: white;
}

.button-glass {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.button-dark {
  background: var(--navy);
  color: white;
}

.hero {
  background: #040914;
  color: white;
  min-height: min(960px, 100svh);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("../images/hero-volleyball.png");
  background-position: 55% center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.98) 0%, rgba(2, 7, 17, 0.82) 36%, rgba(2, 7, 17, 0.14) 72%, rgba(2, 7, 17, 0.3) 100%),
    linear-gradient(0deg, rgba(2, 7, 17, 0.93) 0%, transparent 42%, rgba(2, 7, 17, 0.46) 100%);
  inset: 0;
  position: absolute;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 185px 1fr auto;
  min-height: 100px;
}

.logo-link {
  display: block;
  height: 72px;
  overflow: hidden;
  width: 175px;
}

.brand-logo {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.6rem);
  justify-content: center;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  transition: color 150ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-cta {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 1.1rem;
  transition: transform 180ms ease;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(min(960px, 100svh) - 170px);
  padding-bottom: 56px;
  padding-top: 52px;
}

.hero-content h1 {
  font-size: clamp(3.7rem, 7.7vw, 8.4rem);
  line-height: 0.92;
  margin-bottom: 2rem;
  max-width: 940px;
  text-wrap: balance;
}

.hero-content h1 span {
  color: #58c9ff;
  display: block;
  font-size: 0.63em;
  margin-top: 0.42em;
}

.hero-content > p {
  background: rgba(3, 10, 25, 0.38);
  border-left: 3px solid var(--pink);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
  margin-bottom: 2.2rem;
  max-width: 600px;
  padding: 0.4rem 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-foot {
  align-items: center;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  left: 50%;
  letter-spacing: 0.09em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-foot a {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.light-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(84, 161, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(240, 22, 151, 0.08), transparent 25%),
    linear-gradient(135deg, #fbfdff 0%, #eef3f9 48%, #f9fbfd 100%);
  overflow: hidden;
  padding: 130px 0;
  position: relative;
}

.light-section::before {
  background-image: linear-gradient(rgba(24, 67, 118, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 67, 118, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 75%, transparent);
  pointer-events: none;
  position: absolute;
}

.split-layout {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
}

.copy-column h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.problem-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.light-orb {
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  position: absolute;
}

.orb-blue {
  background: #459cff;
  height: 340px;
  right: -90px;
  top: 90px;
  width: 340px;
}

.orb-pink {
  background: #ff72c5;
  bottom: 30px;
  height: 270px;
  left: -100px;
  width: 270px;
}

.problem-list {
  border-top: 1px solid var(--line);
  margin-top: 2.3rem;
}

.problem-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 34px 1fr;
  min-height: 53px;
}

.problem-row > span {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 600;
}

.problem-row p {
  font-size: 1rem;
  margin: 0;
}

.system-visual {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(224, 235, 248, 0.45)),
    radial-gradient(circle at 50% 50%, rgba(21, 117, 244, 0.12), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 42px;
  box-shadow: inset 0 1px 0 white, 0 38px 100px rgba(19, 52, 91, 0.13);
  overflow: hidden;
  position: relative;
}

.system-visual::before,
.system-visual::after {
  border: 1px solid rgba(24, 118, 235, 0.13);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.system-visual::before {
  height: 70%;
  width: 70%;
}

.system-visual::after {
  border-style: dashed;
  height: 46%;
  width: 46%;
}

.fragment {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(23, 68, 121, 0.09);
  color: #14548e;
  display: flex;
  font-size: 0.72rem;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  position: absolute;
  z-index: 2;
}

.fragment-a { left: 9%; top: 16%; }
.fragment-b { right: 7%; top: 24%; }
.fragment-c { bottom: 22%; left: 7%; }
.fragment-d { bottom: 15%; right: 10%; }

.system-core {
  align-items: center;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.core-ring {
  align-items: center;
  background: linear-gradient(145deg, #051b36, #0a79f5 66%, #ec088d);
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(12, 93, 180, 0.35), 0 0 0 12px rgba(13, 119, 244, 0.08);
  color: white;
  display: flex;
  height: 112px;
  justify-content: center;
  margin-bottom: 0.7rem;
  width: 112px;
}

.system-core strong {
  font-family: "Zen Dots", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.system-core > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.sync-pill {
  align-items: center;
  background: rgba(7, 20, 39, 0.92);
  border-radius: 999px;
  bottom: 5%;
  color: white;
  display: flex;
  font-size: 0.7rem;
  gap: 0.45rem;
  left: 50%;
  padding: 0.6rem 0.9rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 4;
}

.section-heading {
  max-width: 860px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p,
.assistant-copy > p,
.operation-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 840px;
}

.platform-section {
  padding-top: 125px;
}

.platform-stage {
  height: 660px;
  margin-top: 70px;
  position: relative;
}

.screen-glow {
  background: linear-gradient(115deg, rgba(34, 169, 255, 0.28), rgba(160, 95, 255, 0.24), rgba(241, 38, 155, 0.18));
  border-radius: 50%;
  filter: blur(55px);
  height: 420px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
}

.desktop-frame {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid white;
  border-radius: 22px;
  box-shadow: 0 45px 100px rgba(14, 43, 79, 0.2), inset 0 1px 0 white;
  left: 50%;
  overflow: hidden;
  padding: 10px;
  position: absolute;
  top: 42px;
  transform: translateX(-50%) perspective(1200px) rotateX(2deg);
  width: min(90%, 980px);
}

.browser-top {
  align-items: center;
  color: #8a97a8;
  display: flex;
  gap: 6px;
  height: 34px;
  padding: 0 6px;
}

.browser-top i {
  background: #dce4ee;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.browser-top span {
  background: #edf1f6;
  border-radius: 999px;
  font-size: 0.54rem;
  margin-left: 12px;
  padding: 0.32rem 3rem;
}

.desktop-frame > img {
  border-radius: 10px;
  min-height: 450px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.mobile-frame {
  background: #081323;
  border: 5px solid #081323;
  border-radius: 27px;
  bottom: 2px;
  box-shadow: 0 30px 65px rgba(3, 13, 28, 0.32);
  height: 420px;
  overflow: hidden;
  position: absolute;
  right: 1.5%;
  transform: rotate(4deg);
  width: 205px;
  z-index: 4;
}

.mobile-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mobile-notch {
  background: #081323;
  border-radius: 0 0 10px 10px;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 72px;
  z-index: 3;
}

.floating-card {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 15px;
  box-shadow: 0 20px 42px rgba(18, 58, 103, 0.13);
  color: #174a7f;
  display: flex;
  font-size: 0.73rem;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  position: absolute;
  z-index: 5;
}

.floating-card-one { left: 0; top: 135px; }
.floating-card-two { bottom: 58px; left: 8%; }

.moments-section {
  padding-top: 100px;
}

.moments-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.moment-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(18, 58, 103, 0.08);
  min-height: 340px;
  padding: 2rem;
  position: relative;
}

.moment-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(14, 111, 239, 0.96), rgba(36, 93, 201, 0.92));
  color: white;
  transform: translateY(-22px);
}

.moment-card:nth-child(3)::after {
  background: var(--pink);
  border-radius: 50%;
  content: "";
  filter: blur(20px);
  height: 72px;
  opacity: 0.16;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 72px;
}

.moment-code {
  color: #7e8a99;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.moment-card:nth-child(2) .moment-code,
.moment-card:nth-child(2) > p {
  color: rgba(255, 255, 255, 0.8);
}

.moment-line {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  height: 3px;
  margin: 1.1rem 0 2.8rem;
  width: 52px;
}

.moment-card:nth-child(2) .moment-line {
  background: white;
}

.moment-name {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moment-card h3 {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.moment-card > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.dark-band {
  background: #030a14;
  color: white;
  overflow: hidden;
  padding: 130px 0;
  position: relative;
}

.dark-stage-image {
  background-image: url("../images/dark-stage.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0.65;
  position: absolute;
}

.dark-band-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 17, 0.98), rgba(2, 8, 17, 0.82) 58%, rgba(2, 8, 17, 0.35)),
    linear-gradient(0deg, rgba(3, 10, 20, 0.88), transparent 58%);
  inset: 0;
  position: absolute;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.67);
}

.capability-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  margin: 58px 0 36px;
  overflow: hidden;
}

.capability-card {
  backdrop-filter: blur(15px);
  background: rgba(12, 29, 54, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 300px;
  padding: 1.7rem 1.4rem;
  position: relative;
}

.capability-card:first-child { border-radius: 22px 0 0 22px; }
.capability-card:last-child { border-radius: 0 22px 22px 0; }

.capability-index {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.63rem;
  margin-bottom: 3.4rem;
}

.capability-card svg {
  color: #53cfff;
}

.capability-card:nth-child(3) svg,
.capability-card:nth-child(5) svg {
  color: #ff58bc;
}

.capability-card h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.7rem;
}

.capability-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 600;
  gap: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.light-link {
  color: #64d6ff;
}

.assistant-section {
  padding-bottom: 0;
}

.assistant-grid {
  align-items: end;
  grid-template-columns: 0.8fr 1.2fr;
}

.assistant-copy {
  align-self: center;
  padding-bottom: 110px;
}

.assistant-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.assistant-copy .button {
  margin-top: 1rem;
}

.assistant-scene {
  height: 760px;
  position: relative;
}

.assistant-scene > img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0.94;
  position: absolute;
  width: 100%;
}

.assistant-glass {
  backdrop-filter: blur(22px) saturate(1.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(229, 239, 251, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(17, 46, 78, 0.22), inset 0 1px 0 white;
  left: -44px;
  padding: 1.1rem;
  position: absolute;
  right: 14px;
  top: 110px;
}

.assistant-top {
  align-items: center;
  color: #0a4d8b;
  display: flex;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.assistant-top i {
  color: #13895c;
  font-size: 0.63rem;
  font-style: normal;
  margin-left: auto;
}

.assistant-question {
  background: rgba(7, 27, 53, 0.93);
  border-radius: 17px;
  color: white;
  font-size: 1.02rem;
  line-height: 1.4;
  margin-left: 12%;
  padding: 1rem 1.1rem;
}

.assistant-answer {
  align-items: flex-start;
  color: #234a75;
  display: flex;
  font-size: 0.79rem;
  gap: 0.7rem;
  padding: 1.2rem 0.4rem;
}

.assistant-answer svg { color: var(--pink); flex: 0 0 auto; }
.assistant-answer p { margin: 0; }
.assistant-answer strong { color: var(--ink); display: block; }

.assistant-input {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(28, 81, 139, 0.14);
  border-radius: 999px;
  color: #8a97a8;
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
}

.assistant-input svg { color: var(--blue); }

.evidence-band {
  background:
    linear-gradient(90deg, rgba(3, 10, 22, 0.98), rgba(3, 15, 34, 0.9)),
    url("../images/hero-volleyball.png") center 50% / cover;
  color: white;
  padding: 110px 0;
  position: relative;
}

.evidence-band::after {
  background: linear-gradient(90deg, var(--pink), #942fd6 50%, var(--blue));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.evidence-content {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.evidence-heading h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  margin-bottom: 0;
}

.metrics-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

.metrics-grid > div {
  backdrop-filter: blur(14px);
  background: rgba(11, 33, 62, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  min-height: 145px;
  padding: 1.4rem;
}

.metrics-grid > div:first-child { border-radius: 20px 0 0 0; }
.metrics-grid > div:nth-child(2) { border-radius: 0 20px 0 0; }
.metrics-grid > div:nth-child(3) { border-radius: 0 0 0 20px; }
.metrics-grid > div:last-child { border-radius: 0 0 20px 0; }

.metrics-grid strong {
  color: #5fd2ff;
  display: block;
  font-family: "Zen Dots", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.metrics-grid > div:nth-child(3) strong,
.metrics-grid > div:nth-child(4) strong { color: #ff53b9; }

.metrics-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.73rem;
}

.operation-section {
  padding-bottom: 100px;
}

.operation-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 0.85fr 1fr;
}

.operation-visual {
  align-self: end;
  height: 720px;
  position: relative;
}

.operation-visual::before {
  background: linear-gradient(145deg, rgba(60, 150, 255, 0.18), rgba(240, 39, 153, 0.11));
  border-radius: 44px;
  content: "";
  inset: 70px -25px -15px 18px;
  position: absolute;
  transform: rotate(-4deg);
}

.operation-visual img {
  border-radius: 44px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  width: 100%;
}

.operation-badge {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid white;
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 18px 40px rgba(26, 65, 108, 0.14);
  color: #0f508c;
  display: flex;
  font-size: 0.74rem;
  gap: 0.5rem;
  left: 24px;
  padding: 0.7rem 1rem;
  position: absolute;
}

.operation-copy h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.45rem);
}

.operation-copy ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.operation-copy li {
  align-items: center;
  color: #1a507f;
  display: flex;
  font-size: 0.86rem;
  gap: 0.7rem;
}

.operation-copy li svg {
  background: #e2f2ff;
  border-radius: 50%;
  color: var(--blue);
  padding: 3px;
}

.trust-section {
  padding-top: 110px;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.trust-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 25px;
  box-shadow: 0 22px 55px rgba(14, 50, 93, 0.08);
  min-height: 280px;
  padding: 1.8rem;
}

.trust-icon {
  align-items: center;
  background: linear-gradient(145deg, #0c74f0, #4bcfff);
  border-radius: 15px;
  color: white;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 2rem;
  width: 48px;
}

.trust-card:nth-child(3) .trust-icon {
  background: linear-gradient(145deg, #852cca, #ed008c);
}

.trust-card > span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.trust-card h3 {
  font-size: 1.25rem;
  margin: 0.55rem 0 0.8rem;
}

.trust-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.trace-bar {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: white;
  display: flex;
  font-size: 0.77rem;
  gap: 0.65rem;
  justify-content: center;
  margin: 1rem auto 0;
  max-width: 680px;
  min-height: 48px;
}

.trace-bar svg { color: #53cfff; }

.partner-strip {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid white;
  border-radius: 24px;
  display: grid;
  gap: clamp(1rem, 3vw, 3.4rem);
  grid-template-columns: 1.2fr repeat(4, 1fr);
  margin-top: 64px;
  min-height: 130px;
  padding: 1.2rem 1.8rem;
}

.partner-strip > span {
  color: #68788d;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-strip img {
  filter: saturate(0.9);
  height: 58px;
  justify-self: center;
  object-fit: contain;
  width: 100%;
}

.site-footer {
  background: #030912;
  color: white;
  min-height: 780px;
  overflow: hidden;
  padding: 120px 0 28px;
  position: relative;
}

.footer-image {
  background-image: url("../images/hero-volleyball.png");
  background-position: center bottom;
  background-size: cover;
  inset: 0;
  opacity: 0.72;
  position: absolute;
}

.footer-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 17, 0.99) 0%, rgba(2, 8, 17, 0.93) 47%, rgba(2, 8, 17, 0.42) 100%),
    linear-gradient(0deg, rgba(2, 8, 17, 0.96), transparent 52%, rgba(2, 8, 17, 0.68));
  inset: 0;
  position: absolute;
}

.footer-content {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.footer-main {
  max-width: 760px;
}

.footer-main > .brand-logo {
  height: 104px;
  margin-bottom: 34px;
  object-position: left center;
  width: 220px;
}

.footer-main h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 1.02;
  margin-bottom: 1.6rem;
}

.footer-main > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
  max-width: 610px;
}

.footer-cta {
  align-items: center;
  background: var(--pink);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  margin-top: 2.2rem;
  max-width: 590px;
  min-height: 64px;
  padding: 0 1.5rem;
  transition: transform 180ms ease;
}

.footer-cta span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-cta strong {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.06rem;
  font-weight: 400;
}

.footer-contact {
  align-self: end;
  backdrop-filter: blur(18px);
  background: rgba(4, 18, 35, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
  padding: 1.8rem;
}

.contact-kicker {
  color: #4dcfff;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact > span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 1.02rem;
  padding: 0.58rem 0;
}

.footer-contact > span {
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  bottom: 26px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  font-size: 0.63rem;
  justify-content: space-between;
  left: 50%;
  padding-top: 18px;
  position: absolute;
  transform: translateX(-50%);
}

.inner-hero {
  background: #030a14;
  color: white;
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.inner-hero-media {
  background-image: url("../images/hero-volleyball.png");
  background-position: center 58%;
  background-size: cover;
  inset: 0;
  opacity: 0.58;
  position: absolute;
}

.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 17, 0.98), rgba(2, 8, 17, 0.78) 58%, rgba(2, 8, 17, 0.34)),
    linear-gradient(0deg, rgba(2, 8, 17, 0.92), transparent 62%);
  inset: 0;
  position: absolute;
}

.inner-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 590px;
  padding: 70px 0 90px;
}

.inner-hero-content h1 {
  font-family: "Zen Dots", sans-serif;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 1.6rem;
  max-width: 1030px;
}

.inner-hero-content > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.13rem;
  line-height: 1.7;
  max-width: 770px;
}

.inner-hero-content > .button {
  align-self: flex-start;
  margin-top: 1.1rem;
}

.compact-cta {
  padding: 95px 0;
}

.compact-cta-content {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr auto;
}

.compact-cta-content h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  max-width: 900px;
}

.compact-cta-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  max-width: 720px;
}

.evidence-intro {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.validation-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  margin: 1rem 0 0;
}

.seven-grid {
  grid-template-columns: repeat(4, 1fr);
}

.seven-grid .capability-card,
.seven-grid .capability-card:first-child,
.seven-grid .capability-card:last-child {
  border-radius: 20px;
}

.seven-grid .capability-card:nth-child(n + 5) {
  min-height: 260px;
}

.journey-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.journey-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid white;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 58, 103, 0.09);
  min-height: 380px;
  padding: 2rem;
}

.journey-card:nth-child(2) {
  background: linear-gradient(145deg, #096bf0, #1a48b7);
  color: white;
  transform: translateY(-20px);
}

.journey-card > span {
  color: var(--blue);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.journey-card:nth-child(2) > span,
.journey-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.journey-card h3 {
  font-family: "Zen Dots", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 4rem 0 1rem;
}

.journey-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.compact-platform-stage {
  height: 610px;
  margin-bottom: -40px;
  margin-top: 40px;
}

.principles-section {
  padding-top: 110px;
}

.principles-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.principle-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(14, 50, 93, 0.07);
  min-height: 285px;
  padding: 1.7rem;
}

.principle-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.principle-card > p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.principle-check {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 0.67rem;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.solutions-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

.solution-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(15, 53, 96, 0.08);
  min-height: 520px;
  padding: 2rem;
}

.solution-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.solution-top > span {
  color: #a3afbd;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.solution-card h2 {
  font-family: "Zen Dots", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin: 1.8rem 0 1.3rem;
}

.solution-card ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.solution-card li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  padding-bottom: 0.6rem;
}

.solution-card li::before {
  color: var(--blue);
  content: "✓";
  margin-right: 0.55rem;
}

.solution-card > a,
.testimonial-guidance > a {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 600;
  gap: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cases-layout {
  display: grid;
  gap: 70px;
}

.case-feature {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.case-feature > img {
  background: white;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 30px 75px rgba(15, 53, 96, 0.16);
  min-height: 460px;
  object-fit: cover;
  object-position: top;
}

.case-feature-copy h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
}

.case-structure-list {
  border-top: 1px solid var(--line);
}

.case-structure-list > div {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.case-structure-list svg {
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.case-structure-list p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

.case-structure-list strong {
  color: var(--ink);
  display: block;
}

.case-list-heading {
  margin-bottom: -42px;
}

.case-list {
  display: grid;
  gap: 0.75rem;
}

.case-list article {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid white;
  border-radius: 18px;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 50px 1fr auto;
  min-height: 100px;
  padding: 1rem 1.3rem;
}

.case-list article > span {
  color: var(--blue);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.case-list h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.case-list p {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  gap: 0.4rem;
  margin: 0;
}

.case-list article > svg {
  color: #d48a19;
}

.testimonial-guidance {
  align-items: center;
  background: #071326;
  border-radius: 28px;
  color: white;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr auto;
  padding: 2rem;
}

.testimonial-guidance > svg {
  color: #53cfff;
}

.testimonial-guidance h3 {
  margin: 0 0 0.4rem;
}

.testimonial-guidance p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  margin: 0;
}

.testimonial-guidance > a {
  color: #53cfff;
}

.manifesto-grid {
  align-items: center;
  display: grid;
  gap: 6rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.manifesto-visual {
  height: 720px;
  position: relative;
}

.manifesto-visual > img {
  border-radius: 42px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.manifesto-copy h2 {
  font-size: clamp(2.6rem, 4.8vw, 5rem);
}

.manifesto-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.manifesto-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.manifesto-points p {
  align-items: center;
  color: #1b527f;
  display: flex;
  font-size: 0.82rem;
  gap: 0.65rem;
  margin: 0;
}

.manifesto-points svg {
  color: var(--blue);
}

.manifesto-copy blockquote {
  border-left: 3px solid var(--pink);
  color: var(--ink);
  font-family: "Zen Dots", sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 2rem 0 0;
  padding-left: 1.2rem;
}

.ecosystem-content {
  max-width: 980px;
}

.ecosystem-content > p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
}

.ecosystem-pair {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

.ecosystem-pair > div {
  backdrop-filter: blur(14px);
  background: rgba(10, 29, 55, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  min-height: 210px;
  padding: 1.6rem;
}

.ecosystem-pair svg {
  color: #55cfff;
}

.ecosystem-pair h3 {
  margin: 1.4rem 0 0.5rem;
}

.ecosystem-pair p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-intro h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
}

.contact-intro > p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

.contact-details a,
.contact-details p {
  align-items: center;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid white;
  border-radius: 16px;
  color: #194b7a;
  display: flex;
  font-size: 0.78rem;
  gap: 0.8rem;
  margin: 0;
  padding: 0.85rem 1rem;
}

.contact-details svg {
  color: var(--blue);
  flex: 0 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 53, 96, 0.11);
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form label {
  color: #234d78;
  display: grid;
  font-size: 0.73rem;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(246, 249, 253, 0.92);
  border: 1px solid rgba(18, 62, 110, 0.14);
  border-radius: 11px;
  color: var(--ink);
  font-family: "Blinker", sans-serif;
  font-size: 0.8rem;
  min-height: 48px;
  padding: 0.75rem;
  width: 100%;
}

.contact-form > label:not(.consent) {
  margin-top: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent {
  align-items: flex-start;
  display: flex;
  gap: 0.65rem;
  line-height: 1.45;
  margin: 1.1rem 0 1.4rem;
}

.contact-form .consent input {
  min-height: auto;
  width: auto;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-success {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 53, 96, 0.11);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 2.4rem;
}

.form-success svg {
  color: #16a26a;
}

.form-success h2 {
  font-size: 3rem;
  margin: 2rem 0 0.8rem;
}

.form-success p {
  color: var(--muted);
  max-width: 440px;
}

.form-success button {
  background: transparent;
  border: 0;
  color: var(--blue);
  cursor: pointer;
  font-family: "Blinker", sans-serif;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0;
}

@media (max-width: 1024px) {
  body { font-size: 17px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .split-layout,
  .assistant-grid,
  .operation-grid,
  .evidence-content,
  .footer-content { grid-template-columns: 1fr; }
  .system-visual { margin: 0 auto; max-width: 650px; width: 100%; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .capability-card,
  .capability-card:first-child,
  .capability-card:last-child { border-radius: 20px; }
  .capability-card:last-child { grid-column: 1 / -1; min-height: 230px; }
  .assistant-copy { padding-bottom: 0; }
  .assistant-scene { height: 720px; }
  .assistant-glass { left: 5%; right: 5%; }
  .operation-visual { max-width: 620px; width: 100%; }
  .footer-contact { max-width: 520px; }
  .compact-cta-content,
  .case-feature,
  .manifesto-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .seven-grid,
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: 1fr; }
  .manifesto-visual { max-width: 620px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 1200px); }
  body { font-size: 16px; }
  h2 { font-size: clamp(2.15rem, 11vw, 3.3rem); }
  .light-section,
  .dark-band { padding: 88px 0; }
  .site-header { min-height: 82px; }
  .logo-link { height: 60px; width: 142px; }
  .header-cta { font-size: 0.72rem; min-height: 38px; padding: 0 0.9rem; }
  .hero { min-height: 850px; }
  .hero-media { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2, 7, 17, 0.96), rgba(2, 7, 17, 0.44)), linear-gradient(0deg, rgba(2, 7, 17, 0.96), transparent 58%); }
  .hero-content { min-height: 730px; padding-top: 40px; }
  .hero-content h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero-content h1 span { font-size: 0.6em; line-height: 1.08; }
  .hero-content > p { max-width: 88%; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .problem-grid { grid-template-columns: 1fr; }
  .system-visual { border-radius: 28px; }
  .fragment { font-size: 0; padding: 0.72rem; }
  .fragment span { display: none; }
  .platform-stage { height: 500px; margin-top: 35px; }
  .desktop-frame { top: 34px; width: 100%; }
  .desktop-frame > img { min-height: 290px; }
  .mobile-frame { bottom: 0; height: 300px; right: -4px; width: 145px; }
  .floating-card { display: none; }
  .moments-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 260px; }
  .moment-card:nth-child(2) { transform: none; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card:last-child { grid-column: auto; }
  .capability-card { min-height: 240px; }
  .capability-index { margin-bottom: 1.8rem; }
  .assistant-scene { height: 600px; margin-top: 30px; }
  .assistant-glass { left: 0; right: 0; top: 135px; }
  .assistant-question { font-size: 0.82rem; margin-left: 4%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid > div,
  .metrics-grid > div:first-child,
  .metrics-grid > div:nth-child(2),
  .metrics-grid > div:nth-child(3),
  .metrics-grid > div:last-child { border-radius: 17px; margin-bottom: 0.6rem; }
  .operation-visual { height: 590px; }
  .partner-strip { grid-template-columns: repeat(2, 1fr); }
  .partner-strip > span { grid-column: 1 / -1; text-align: center; }
  .site-footer { min-height: 920px; padding-top: 90px; }
  .footer-main > .brand-logo { height: 80px; width: 180px; }
  .footer-main h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .footer-cta { align-items: flex-start; border-radius: 24px; flex-direction: column; gap: 0.2rem; justify-content: center; padding: 0.9rem 1.2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .inner-hero { min-height: 690px; }
  .inner-hero-content { min-height: 605px; padding: 55px 0 80px; }
  .inner-hero-content h1 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .compact-cta-content { align-items: start; }
  .journey-grid,
  .principles-grid,
  .seven-grid,
  .solutions-grid,
  .ecosystem-pair,
  .form-grid { grid-template-columns: 1fr; }
  .journey-card:nth-child(2) { transform: none; }
  .compact-platform-stage { height: 440px; }
  .solution-card { min-height: auto; padding: 1.5rem; }
  .case-feature { gap: 2rem; }
  .case-feature > img { min-height: 320px; }
  .case-list article { grid-template-columns: 34px 1fr auto; }
  .testimonial-guidance { align-items: start; grid-template-columns: auto 1fr; }
  .testimonial-guidance > a { grid-column: 2; }
  .manifesto-visual { height: 570px; }
  .contact-form { padding: 1.25rem; }
}

/* Adaptadores Elementor/WordPress */
body.elementor-page { overflow-x: hidden; }
.altheroh-header-layer,
.elementor-location-header { left: 0; position: absolute; right: 0; top: 0; z-index: 100; }
.admin-bar .altheroh-header-layer,
.admin-bar .elementor-location-header { top: 32px; }
.altheroh-module-shell,
.altheroh-module-shell > .e-con-inner { gap: 0 !important; margin: 0 !important; max-width: none !important; padding: 0 !important; width: 100% !important; }
.altheroh-module-shell .elementor-widget-html,
.altheroh-module-shell .elementor-widget-container { margin: 0 !important; width: 100%; }
.altheroh-html-module { margin: 0 !important; width: 100% !important; }
.elementor-inline-icon { align-items: center; display: inline-flex; font-size: 1.45rem; min-height: 30px; }
.altheroh-native-form .elementor-field-group { margin-bottom: 1rem; }
.altheroh-native-form input,
.altheroh-native-form select,
.altheroh-native-form textarea { background: rgba(255,255,255,.72); border: 1px solid rgba(9,35,68,.14); border-radius: 12px; color: var(--ink); }
.altheroh-native-form .elementor-button { background: linear-gradient(100deg,var(--pink),#ca1fdb 53%,#006cff); border-radius: 999px; color: white; min-height: 52px; padding: 0 1.5rem; }
.e-con.altheroh-contact-section { display: block !important; padding: 130px 0 !important; }
.e-con.contact-layout { display: grid !important; }
.e-con.contact-layout > .e-con-inner { display: contents; }
.e-con.contact-layout > .elementor-element { min-width: 0; }
.contact-intro > .elementor-widget-container { height: 100%; }
@media (max-width: 782px) {
  .admin-bar .altheroh-header-layer, .admin-bar .elementor-location-header { top: 46px; }
  .e-con.altheroh-contact-section { padding: 88px 0 !important; }
}
