:root {
  color-scheme: dark;
  --bg: #05080d;
  --bg-soft: #091019;
  --panel: rgba(10, 18, 27, 0.78);
  --panel-strong: rgba(8, 14, 22, 0.94);
  --text: #f3f7fb;
  --muted: #a9b7c4;
  --dim: #71808e;
  --line: rgba(170, 220, 236, 0.18);
  --cyan: #43dff5;
  --cyan-strong: #12b7d1;
  --green: #78f2a5;
  --green-soft: rgba(120, 242, 165, 0.14);
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse 120% 72% at 18% -8%, rgba(38, 218, 244, 0.11) 0%, rgba(38, 218, 244, 0.05) 32%, rgba(38, 218, 244, 0) 72%),
    radial-gradient(ellipse 90% 62% at 90% 10%, rgba(103, 244, 164, 0.08) 0%, rgba(103, 244, 164, 0.035) 34%, rgba(103, 244, 164, 0) 76%),
    linear-gradient(150deg, #030509 0%, #071018 46%, #04070d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: -28vh -18vw;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 64% at 18% 2%, rgba(38, 218, 244, 0.16) 0%, rgba(38, 218, 244, 0.08) 30%, rgba(38, 218, 244, 0) 70%),
    radial-gradient(ellipse 72% 56% at 88% 16%, rgba(103, 244, 164, 0.12) 0%, rgba(103, 244, 164, 0.055) 34%, rgba(103, 244, 164, 0) 74%),
    radial-gradient(ellipse 86% 64% at 50% 78%, rgba(22, 93, 122, 0.15) 0%, rgba(22, 93, 122, 0.06) 38%, rgba(22, 93, 122, 0) 76%),
    linear-gradient(150deg, #030509 0%, #07121b 54%, #030509 100%);
  filter: blur(26px);
  transform: translate3d(0, 0, 0);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
}

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

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

a:hover {
  color: var(--cyan);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--green);
  color: #031008;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.glass-surface {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  contain: layout paint style;
}

@supports (backdrop-filter: blur(1px)) {
  .glass-surface {
    backdrop-filter: blur(18px) saturate(155%) brightness(103%);
    -webkit-backdrop-filter: blur(18px) saturate(155%) brightness(103%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, rgba(3, 7, 12, 0.9), rgba(3, 7, 12, 0.72));
  border-bottom: 1px solid rgba(170, 220, 236, 0.14);
  box-shadow: 0 1px 0 rgba(67, 223, 245, 0.08), 0 18px 60px rgba(0, 0, 0, 0.24);
}

@supports (backdrop-filter: blur(1px)) {
  .site-header {
    backdrop-filter: blur(18px) saturate(155%) brightness(103%);
    -webkit-backdrop-filter: blur(18px) saturate(155%) brightness(103%);
  }
}

.site-header-inner {
  width: min(100%, var(--max));
  min-height: 60px;
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 68px;
  aspect-ratio: 677 / 475;
  filter: drop-shadow(0 0 14px rgba(80, 239, 208, 0.22));
}

.brand-mark img,
.footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-copy {
  min-width: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.site-nav a,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  background: rgba(67, 223, 245, 0.14);
  border: 1px solid rgba(67, 223, 245, 0.35);
  color: var(--text);
}

.hero {
  width: min(1600px, calc(100vw - 48px));
  max-width: none;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(12px, 2svh, 20px) 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-panel {
  position: relative;
  width: 100%;
  min-height: 0;
  height: min(740px, calc(100svh - var(--header-height) - 40px));
  border-radius: 28px;
  padding: clamp(28px, 2.6vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  gap: clamp(24px, 2.8vw, 48px);
  overflow: clip;
}

.hero-copy {
  min-height: 0;
  padding: clamp(74px, 11svh, 96px) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4.1rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  color: #d7e4ed;
  font-size: 1.08rem;
}

.hero-actions,
.offer-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.45rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #041013;
  box-shadow: 0 14px 34px rgba(67, 223, 245, 0.18);
}

.button-primary:hover {
  color: #041013;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.2rem 0 0;
}

.hero-facts div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.045);
}

.hero-facts dt {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border-radius: 22px;
  background: #030509;
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-video,
.hero-poster,
.hero-poster img {
  border-radius: inherit;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-poster {
  display: none;
  position: static;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-paused .hero-video {
  display: none;
}

.hero-video-paused .hero-poster {
  display: block;
}

.media-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 8px;
  background: rgba(3, 8, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.85rem 1rem;
}

.media-caption span,
.media-caption strong {
  display: block;
}

.media-caption span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.media-caption strong {
  margin-top: 0.15rem;
}

.value-bar {
  padding: 3rem 0 4.5rem;
}

.mobile-video-proof {
  display: none;
}

.mobile-video-proof-card {
  position: relative;
  overflow: clip;
  border-radius: 24px;
  background: rgba(7, 16, 26, 0.82);
  border: 1px solid rgba(125, 232, 244, 0.16);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 28px rgba(67, 223, 245, 0.055);
}

.mobile-proof-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(56svh, 460px);
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.mobile-video-proof-caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  border-radius: 14px;
  padding: 0.78rem 0.85rem;
  background: rgba(3, 8, 13, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-video-proof-caption span,
.mobile-video-proof-caption strong {
  display: block;
}

.mobile-video-proof-caption span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-video-proof-caption strong {
  margin-top: 0.12rem;
  color: var(--text);
}

.campaign-video-section {
  padding: clamp(1rem, 3vw, 2.5rem) 0 3rem;
}

.campaign-video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 420px);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: clamp(24px, 2vw, 36px);
  background:
    linear-gradient(135deg, rgba(8, 18, 27, 0.9), rgba(8, 16, 24, 0.74)),
    radial-gradient(circle at 78% 12%, rgba(67, 223, 245, 0.14), rgba(67, 223, 245, 0) 38%),
    var(--panel);
  border-color: rgba(125, 232, 244, 0.18);
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 40px rgba(67, 223, 245, 0.07);
}

.campaign-video-copy {
  max-width: 580px;
}

.campaign-video-copy h2 {
  max-width: 12ch;
}

.campaign-video-copy p:last-child {
  max-width: 54ch;
  color: #c6d5df;
}

.campaign-video-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.campaign-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(3, 8, 13, 0) 66%, rgba(3, 8, 13, 0.38) 100%);
}

.campaign-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.campaign-video-sound {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(5, 18, 22, 0.72);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

@supports (backdrop-filter: blur(1px)) {
  .campaign-video-sound {
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
  }
}

.campaign-video-sound:hover {
  border-color: rgba(120, 242, 165, 0.38);
  background: rgba(8, 34, 36, 0.78);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: clip;
  background: var(--line);
}

.value-grid article,
.reason-card,
.offer-card,
.package-grid article,
.use-grid li,
.faq-list details {
  background: rgba(7, 13, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.value-grid article {
  border: 0;
  border-radius: 0;
  padding: 1.25rem;
}

.package-grid span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.value-grid h2 {
  font-size: 1.08rem;
}

.value-grid p,
.reason-card p,
.process-list p,
.offer-card li,
.package-grid p,
.section-heading p,
.contact-copy p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.split-section,
.process-section,
.realizations,
.offer-section,
.use-cases,
.faq-section,
.contact-section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
}

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

.reason-card {
  padding: 1.25rem;
}

.reason-card p {
  margin-bottom: 0;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-list li {
  position: relative;
  min-height: 210px;
  border-radius: 8px;
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(67, 223, 245, 0.09), rgba(7, 13, 21, 0.88));
  border: 1px solid rgba(67, 223, 245, 0.18);
}

.process-list h3 {
  margin-top: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 5rem 0;
}

.proof-copy {
  border-radius: 8px;
  padding: 2rem;
  align-self: center;
}

.proof-copy p {
  color: #d7e4ed;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(120, 242, 165, 0.55);
}

.proof-image,
.editorial-grid picture,
.section-visual {
  position: relative;
  overflow: clip;
  border-radius: 8px;
  background: #07101a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-image img,
.editorial-grid img,
.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-image img {
  aspect-ratio: 4 / 3;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 1rem;
}

.editorial-grid-focused {
  grid-template-columns: 1fr;
}

.feature-media {
  display: grid;
  grid-template-rows: minmax(500px, 1fr) auto;
  min-height: 640px;
}

.feature-media picture,
.feature-media img {
  width: 100%;
  height: 100%;
}

.feature-media picture {
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
}

.feature-caption {
  border-radius: 0 0 8px 8px;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(9, 17, 26, 0.96), rgba(5, 10, 16, 0.9));
  border: 1px solid rgba(67, 223, 245, 0.18);
  border-top: 1px solid rgba(120, 242, 165, 0.26);
  box-shadow: inset 0 1px 0 rgba(120, 242, 165, 0.08);
}

.feature-caption span,
.feature-caption strong {
  display: block;
}

.feature-caption span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-caption strong {
  margin-top: 0.2rem;
}

.supporting-media {
  display: grid;
  gap: 1rem;
}

.supporting-media picture {
  min-height: 312px;
}

.section-visual {
  display: block;
  margin: 1rem 0 0;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: clamp(22px, 2vw, 34px);
  background: rgba(7, 16, 26, 0.82);
  border-color: rgba(125, 232, 244, 0.16);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 0 28px rgba(67, 223, 245, 0.055);
  contain: layout paint style;
}

.section-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 24% 0%, rgba(67, 223, 245, 0.16), rgba(67, 223, 245, 0) 44%),
    linear-gradient(180deg, rgba(3, 8, 13, 0) 62%, rgba(3, 8, 13, 0.22) 100%);
}

.section-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.section-visual img {
  display: block;
  filter: saturate(1.02) contrast(1.04);
  border-radius: inherit;
}

.section-visual-screen-focus img {
  object-position: center 60%;
}

.section-visual-wide {
  margin-top: 1.25rem;
}

.section-visual-after-grid {
  margin-top: 1.35rem;
}

.section-visual-cinematic {
  aspect-ratio: 21 / 9;
}

.section-visual-compact {
  aspect-ratio: 16 / 8.5;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
}

.offer-card,
.package-grid article {
  padding: 1.35rem;
}

.offer-card ul {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-card strong {
  display: block;
  color: var(--text);
}

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

.package-grid h3 {
  margin-top: 0.75rem;
}

.offer-cta {
  justify-content: space-between;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(67, 223, 245, 0.13), rgba(120, 242, 165, 0.08));
  border: 1px solid rgba(67, 223, 245, 0.22);
}

.offer-cta p {
  max-width: 720px;
  margin: 0;
  color: #d7e4ed;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-grid li {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: #d9eff4;
  font-weight: 850;
}

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

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.contact-panel {
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 1rem;
}

.contact-copy {
  padding: 2rem;
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-links a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(67, 223, 245, 0.35);
  color: #d9eff4;
  font-weight: 900;
}

.contact-form {
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(3, 8, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-field {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.form-row label {
  color: #d7e4ed;
  font-size: 0.9rem;
  font-weight: 850;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.9rem;
}

.form-row textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--dim);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 96px;
  aspect-ratio: 677 / 475;
  filter: drop-shadow(0 0 18px rgba(80, 239, 208, 0.2));
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.site-footer a {
  min-height: 44px;
  color: #d9eff4;
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 12;
  display: grid;
  gap: 0.75rem;
  pointer-events: none;
}

.floating-action {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  background: rgba(5, 12, 19, 0.74);
  border: 1px solid rgba(67, 223, 245, 0.26);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(67, 223, 245, 0.08);
  color: #e9f8fb;
  font-size: 0.88rem;
  font-weight: 900;
  opacity: 0.94;
  isolation: isolate;
  pointer-events: auto;
  contain: layout paint style;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-action::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 44%, rgba(120, 242, 165, 0.1));
  opacity: 0.7;
  pointer-events: none;
}

.floating-action > * {
  position: relative;
  z-index: 1;
}

.floating-action:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 242, 165, 0.44);
  color: var(--text);
}

.floating-action-top {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.is-scrolled .floating-action-top {
  opacity: 0.94;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-action-whatsapp {
  min-width: 148px;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.62rem 1.05rem 0.62rem 0.66rem;
  background:
    radial-gradient(circle at 22% 22%, rgba(168, 255, 211, 0.28), rgba(168, 255, 211, 0) 36%),
    linear-gradient(135deg, rgba(32, 156, 104, 0.44), rgba(8, 41, 34, 0.74) 52%, rgba(5, 15, 22, 0.82));
  border-color: rgba(136, 255, 190, 0.42);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(69, 235, 153, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -14px 28px rgba(5, 20, 18, 0.26);
  color: #effff6;
  text-shadow: 0 1px 16px rgba(10, 32, 24, 0.48);
}

.floating-action-whatsapp:hover {
  background:
    radial-gradient(circle at 22% 22%, rgba(184, 255, 222, 0.36), rgba(184, 255, 222, 0) 38%),
    linear-gradient(135deg, rgba(41, 179, 118, 0.54), rgba(9, 49, 39, 0.76) 52%, rgba(5, 15, 22, 0.84));
  border-color: rgba(165, 255, 209, 0.62);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(82, 241, 159, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -14px 28px rgba(5, 20, 18, 0.22);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 28%),
    linear-gradient(145deg, rgba(118, 255, 177, 0.92), rgba(28, 178, 105, 0.82));
  border: 1px solid rgba(217, 255, 231, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -6px 12px rgba(0, 74, 48, 0.2),
    0 0 18px rgba(89, 246, 159, 0.32);
  color: #04291d;
  letter-spacing: 0;
}

.whatsapp-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@supports (backdrop-filter: blur(1px)) {
  .floating-action {
    backdrop-filter: blur(16px) saturate(155%) brightness(105%);
    -webkit-backdrop-filter: blur(16px) saturate(155%) brightness(105%);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1060px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-panel,
  .proof-section,
  .editorial-grid,
  .offer-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 2rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-media {
    height: auto;
    min-height: 420px;
    aspect-ratio: 16 / 9;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .value-grid,
  .reason-grid,
  .process-list,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 82px;
  }

  body {
    background:
      radial-gradient(ellipse 118% 52% at 42% -8%, rgba(38, 218, 244, 0.1) 0%, rgba(38, 218, 244, 0.045) 36%, rgba(38, 218, 244, 0) 78%),
      linear-gradient(150deg, #030509 0%, #071018 56%, #030509 100%);
  }

  body::before {
    inset: -20vh -38vw;
    background:
      radial-gradient(ellipse 96% 48% at 42% 0%, rgba(38, 218, 244, 0.14) 0%, rgba(38, 218, 244, 0.055) 36%, rgba(38, 218, 244, 0) 78%),
      radial-gradient(ellipse 86% 56% at 85% 22%, rgba(103, 244, 164, 0.09) 0%, rgba(103, 244, 164, 0.04) 36%, rgba(103, 244, 164, 0) 78%),
      linear-gradient(150deg, #030509 0%, #071018 56%, #030509 100%);
    filter: blur(18px);
  }

  .section-shell {
    width: min(100% - 1rem, var(--max));
  }

  .site-header {
    padding: 0.55rem 0.5rem;
  }

  .site-header-inner {
    gap: 0.55rem;
    min-height: 58px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 56px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .nav-cta {
    padding-inline: 0.8rem;
    font-size: 0.84rem;
  }

  .hero {
    width: min(100% - 1rem, var(--max));
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-panel {
    min-height: min(720px, calc(100svh - var(--header-height) - 1.5rem));
    border-radius: 18px;
    padding: clamp(1.35rem, 5.6vw, 2rem);
    display: block;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(2, 8, 13, 0.52) 0%, rgba(2, 8, 13, 0.68) 44%, rgba(2, 8, 13, 0.94) 100%),
      radial-gradient(circle at 36% 16%, rgba(120, 242, 165, 0.2), rgba(120, 242, 165, 0) 40%),
      radial-gradient(circle at 82% 6%, rgba(67, 223, 245, 0.15), rgba(67, 223, 245, 0) 36%);
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - var(--header-height) - 4.25rem);
    padding: 0;
    justify-content: flex-end;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

  .hero-actions {
    order: 5;
  }

  .hero-facts {
    order: 4;
  }

  .hero-facts,
  .value-grid,
  .reason-grid,
  .process-list,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    background: rgba(3, 8, 13, 0.5);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border: 0;
    border-radius: inherit;
  }

  .hero-video {
    display: none;
  }

  .hero-poster {
    display: block;
    position: absolute;
    inset: 0;
  }

  .hero-poster img {
    object-position: center top;
    filter: saturate(0.96) contrast(1.06) brightness(0.96);
  }

  .media-caption {
    display: none;
  }

  .mobile-video-proof {
    display: block;
    padding: 0.85rem 0 2.1rem;
  }

  .mobile-video-proof-card {
    border-radius: 22px;
  }

  .campaign-video-section {
    padding: 0.4rem 0 2.4rem;
  }

  .campaign-video-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 1rem;
  }

  .campaign-video-copy h2 {
    max-width: 13ch;
  }

  .campaign-video-shell {
    max-width: min(100%, 420px);
    margin-inline: auto;
    border-radius: 22px;
  }

  .campaign-video-sound {
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 0.68rem 0.85rem;
    font-size: 0.84rem;
  }

  .split-section,
  .process-section,
  .realizations,
  .offer-section,
  .use-cases,
  .faq-section,
  .contact-section,
  .proof-section {
    padding: 3.25rem 0;
  }

  .feature-media {
    grid-template-rows: minmax(360px, 1fr) auto;
    min-height: 460px;
  }

  .supporting-media picture {
    min-height: 260px;
  }

  .section-visual,
  .section-visual-cinematic,
  .section-visual-compact {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .section-visual {
    margin-top: 0.85rem;
    border-radius: 22px;
  }

  .contact-copy,
  .proof-copy {
    padding: 1.25rem;
  }

  .contact-panel {
    border-radius: 14px;
  }

  .site-footer {
    display: grid;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 72px;
  }

  .floating-actions {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    gap: 0.55rem;
  }

  .floating-action {
    min-height: 42px;
    padding: 0.64rem 0.75rem;
    font-size: 0.8rem;
  }

  .floating-action-whatsapp {
    min-width: 136px;
    gap: 0.55rem;
    padding: 0.56rem 0.82rem 0.56rem 0.58rem;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-icon svg {
    width: 17px;
    height: 17px;
  }

  .is-contact-visible .floating-actions {
    opacity: 0;
    pointer-events: none;
  }

  .is-contact-visible .floating-action {
    opacity: 0;
    pointer-events: none;
  }

  .is-hero-visible .floating-actions {
    opacity: 0;
    pointer-events: none;
  }

  .is-hero-visible .floating-action {
    opacity: 0;
    pointer-events: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .button:hover {
    transform: none;
  }

  .floating-action,
  .floating-action:hover {
    transform: none;
  }

  .hero-video {
    display: none;
  }

  .hero-poster {
    display: block;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glass-surface {
    background: var(--panel-strong);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
