:root {
  --bg: #f5f8f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #0d1720;
  --muted: #4f5f6d;
  --line: rgba(13, 23, 32, 0.1);
  --primary: #0e7c86;
  --secondary: #ff8652;
  --glow: #c9f1ee;
  --deep: #13293d;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(19, 41, 61, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(214, 243, 241, 0.72) 0%, rgba(241, 248, 247, 0.94) 38%, rgba(255, 243, 235, 0.72) 100%);
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(120deg, rgba(19, 41, 61, 0.03) 0, rgba(19, 41, 61, 0.03) 1px, transparent 1px, transparent 82px);
  background-size: auto, 100% 82px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

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

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

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(52px);
  pointer-events: none;
  opacity: 0.65;
}

.ambient-one {
  top: 100px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(14, 124, 134, 0.12);
}

.ambient-two {
  right: -80px;
  bottom: 160px;
  width: 280px;
  height: 280px;
  background: rgba(255, 134, 82, 0.12);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 18px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 36px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  padding: 28px 0 4px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 22;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(19, 41, 61, 0.04);
}

.lang-button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--deep);
  color: #fff;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(19, 41, 61, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin-left: 14px;
  border-radius: 999px;
  background: var(--deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--deep);
}

.brand img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 18px rgba(19, 41, 61, 0.18));
  transform: translateY(1px);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  position: relative;
  z-index: 21;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  padding: 8px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 26px rgba(19, 41, 61, 0.06);
  width: 100%;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--deep);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  outline: none;
  border-color: rgba(14, 124, 134, 0.3);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(19, 41, 61, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px 0 56px;
}

.stripe-hero {
  position: relative;
}

.stripe-hero::before {
  position: absolute;
  top: -34px;
  right: -22px;
  width: 90%;
  height: 360px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28));
  box-shadow: 0 30px 70px rgba(19, 41, 61, 0.05);
  content: "";
  transform: skewY(-7deg);
  z-index: -1;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-kicker p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(19, 41, 61, 0.04);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Inter Tight", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 11vw, 3.5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 8vw, 2.55rem);
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lead,
.intro p,
.story-card p,
.brand-card p,
.experience-card p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.02rem;
  line-height: 1.84;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 12px 24px rgba(19, 41, 61, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 24%, rgba(201, 241, 238, 0.74), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(255, 134, 82, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 22px;
}

.hero-stage::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(19, 41, 61, 0.06);
  border-radius: 24px;
  content: "";
}

.hero-network {
  position: relative;
  flex: 1;
  min-height: 100%;
  padding: 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 24%, rgba(201, 241, 238, 0.3), transparent 22%),
    radial-gradient(circle at 84% 26%, rgba(255, 134, 82, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.4));
  overflow: hidden;
  isolation: isolate;
}

.hero-network::before,
.hero-network::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-network::before {
  inset: 10%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0.88;
}

.hero-network::after {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(19, 41, 61, 0.04) 49.8% 50.2%, transparent 50.3% 100%);
  opacity: 0.56;
}

.hero-network-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 100%;
}

.product-cluster {
  position: relative;
  display: grid;
  gap: 16px;
  animation: floatCluster 8s ease-in-out infinite;
}

.cluster-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(19, 41, 61, 0.08);
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(19, 41, 61, 0.05);
}

.cluster-vdr .cluster-label {
  background: rgba(19, 41, 61, 0.92);
  color: #f3f8fb;
}

.cluster-promate .cluster-label {
  margin-left: auto;
  background: rgba(228, 249, 244, 0.95);
  color: #0d746e;
}

.cluster-promate {
  animation-delay: -2.4s;
}

.vdr-scene,
.promate-scene {
  position: relative;
  min-height: 280px;
}

.vdr-shell,
.promate-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 22px 44px rgba(19, 41, 61, 0.08);
}

.vdr-shell {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 272px;
  background: linear-gradient(155deg, #13293d, #20435f 58%, #1a3852);
}

.vdr-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px 14px;
  background: linear-gradient(180deg, rgba(9, 23, 36, 0.42), rgba(9, 23, 36, 0.12));
}

.vdr-sidebar span,
.vdr-topbar span,
.vdr-folder-lines span,
.vdr-audit-list span,
.promate-topbar span,
.promate-card span,
.core-dot {
  display: block;
}

.vdr-sidebar span {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(206, 241, 237, 0.34);
}

.vdr-body {
  position: relative;
  padding: 18px 18px 20px;
}

.vdr-body::before {
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.vdr-topbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.vdr-topbar span:first-child {
  width: 52%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.vdr-topbar span:last-child {
  width: 28%;
  height: 12px;
  border-radius: 999px;
  background: rgba(90, 231, 217, 0.38);
}

.vdr-folder-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(245, 251, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vdr-folder-icon {
  width: 54px;
  height: 44px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(135deg, rgba(90, 231, 217, 0.95), rgba(57, 165, 171, 0.7));
  position: relative;
}

.vdr-folder-icon::before {
  position: absolute;
  top: -6px;
  left: 6px;
  width: 22px;
  height: 10px;
  border-radius: 8px 8px 0 0;
  background: rgba(138, 242, 231, 0.88);
  content: "";
}

.vdr-folder-lines {
  display: grid;
  gap: 10px;
}

.vdr-folder-lines span:first-child,
.vdr-folder-lines span:last-child,
.vdr-audit-list span {
  height: 10px;
  border-radius: 999px;
}

.vdr-folder-lines span:first-child {
  width: 72%;
  background: rgba(255, 255, 255, 0.84);
}

.vdr-folder-lines span:last-child {
  width: 46%;
  background: rgba(190, 210, 227, 0.56);
}

.vdr-audit-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.vdr-audit-list span:nth-child(1) {
  width: 88%;
  background: rgba(255, 255, 255, 0.58);
}

.vdr-audit-list span:nth-child(2) {
  width: 64%;
  background: rgba(112, 194, 198, 0.54);
}

.vdr-audit-list span:nth-child(3) {
  width: 76%;
  background: rgba(255, 255, 255, 0.34);
}

.vdr-badge,
.promate-floating {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(19, 41, 61, 0.08);
}

.vdr-badge {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 41, 61, 0.08);
}

.badge-shield {
  top: 24px;
  right: -4px;
  width: 56px;
  height: 56px;
}

.badge-shield::before {
  position: absolute;
  inset: 13px;
  clip-path: polygon(50% 0, 88% 16%, 88% 52%, 50% 100%, 12% 52%, 12% 16%);
  background: linear-gradient(180deg, #183955, #2d617c);
  content: "";
}

.badge-watermark {
  bottom: 22px;
  right: 18px;
  width: 118px;
  height: 34px;
}

.badge-watermark::before,
.badge-watermark::after {
  position: absolute;
  top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 41, 61, 0.1);
  content: "";
}

.badge-watermark::before {
  left: 14px;
  width: 44px;
}

.badge-watermark::after {
  right: 14px;
  width: 26px;
  background: rgba(57, 165, 171, 0.48);
}

.promate-shell {
  min-height: 272px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 252, 250, 0.92));
}

.promate-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.promate-topbar span:first-child {
  width: 46%;
  height: 14px;
  border-radius: 999px;
  background: rgba(13, 116, 110, 0.16);
}

.promate-topbar span:last-child {
  width: 26%;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(58, 212, 171, 0.22), rgba(255, 145, 96, 0.28));
}

.promate-cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.promate-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(19, 41, 61, 0.06);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-calendar {
  min-height: 124px;
  padding: 16px;
}

.card-calendar span:nth-child(1) {
  width: 58%;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 41, 61, 0.14);
}

.card-calendar span:nth-child(2) {
  width: 100%;
  height: 52px;
  margin-top: 14px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(227, 247, 241, 0.88) 0 33%, rgba(255, 255, 255, 0.95) 33% 66%, rgba(255, 236, 226, 0.95) 66% 100%);
}

.card-calendar span:nth-child(3) {
  width: 42%;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(58, 212, 171, 0.34);
}

.card-play {
  min-height: 124px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(229, 248, 244, 0.9));
}

.card-play span {
  position: absolute;
  inset: 0;
}

.card-play span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid rgba(13, 116, 110, 0.78);
  transform: translate(-38%, -50%);
  content: "";
}

.card-stats {
  min-height: 90px;
  padding: 14px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
}

.card-stats span:first-child {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 48%, transparent 50%),
    conic-gradient(rgba(58, 212, 171, 0.82) 0 220deg, rgba(255, 145, 96, 0.78) 220deg 300deg, rgba(224, 237, 240, 0.86) 300deg 360deg);
}

.card-stats span:last-child {
  height: 46px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(19, 41, 61, 0.1) 0 28%, rgba(58, 212, 171, 0.22) 28% 56%, rgba(255, 145, 96, 0.22) 56% 100%);
}

.floating-chart {
  left: -8px;
  bottom: 28px;
  width: 92px;
  height: 76px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 250, 0.92));
  border: 1px solid rgba(19, 41, 61, 0.08);
}

.floating-chart::before,
.floating-chart::after,
.floating-chip::before {
  position: absolute;
  content: "";
}

.floating-chart::before {
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 24px;
  border-radius: 10px 10px 16px 16px;
  background:
    linear-gradient(90deg, rgba(58, 212, 171, 0.3) 0 33%, rgba(58, 212, 171, 0.78) 33% 50%, rgba(255, 145, 96, 0.74) 50% 72%, rgba(230, 238, 240, 0.9) 72% 100%);
}

.floating-chart::after {
  left: 18px;
  top: 16px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(19, 41, 61, 0.12);
}

.floating-chip {
  top: 26px;
  right: 4px;
  width: 88px;
  height: 42px;
  background: linear-gradient(135deg, rgba(58, 212, 171, 0.92), rgba(255, 145, 96, 0.78));
}

.floating-chip::before {
  top: 16px;
  left: 18px;
  right: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.hero-centerpiece {
  position: relative;
  min-height: 320px;
}

.hero-core-ring,
.hero-core,
.hero-connector,
.hero-spark {
  position: absolute;
}

.hero-core-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-outer {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(19, 41, 61, 0.1);
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.34);
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-inner {
  width: 108px;
  height: 108px;
  border: 1px dashed rgba(14, 124, 134, 0.26);
  animation: ringPulse 6s ease-in-out infinite reverse;
}

.hero-core {
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  transform: translate(-50%, -50%) rotate(12deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 246, 0.92));
  border: 1px solid rgba(19, 41, 61, 0.08);
  box-shadow: 0 18px 38px rgba(19, 41, 61, 0.08);
  animation: pulseCore 5.6s ease-in-out infinite;
}

.core-dot {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 124, 134, 0.95), rgba(255, 145, 96, 0.78));
}

.dot-one {
  top: 18px;
  left: 18px;
  width: 46px;
  height: 10px;
}

.dot-two {
  top: 36px;
  left: 18px;
  width: 26px;
  height: 10px;
}

.dot-three {
  top: 36px;
  right: 18px;
  width: 12px;
  height: 12px;
}

.hero-connector {
  top: 50%;
  width: 94px;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 124, 134, 0.38), rgba(255, 145, 96, 0.18));
}

.connector-left {
  left: 0;
  transform: translateY(-50%);
}

.connector-right {
  right: 0;
  transform: translateY(-50%);
}

.hero-spark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 124, 134, 0.96), rgba(255, 145, 96, 0.82));
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.34);
}

.spark-one {
  left: 22px;
  top: calc(50% - 6px);
}

.spark-two {
  right: 22px;
  top: calc(50% - 6px);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-glow-one {
  top: 28px;
  left: 44px;
  width: 170px;
  height: 170px;
  background: rgba(14, 124, 134, 0.16);
}

.hero-glow-two {
  right: 48px;
  bottom: 38px;
  width: 180px;
  height: 180px;
  background: rgba(255, 134, 82, 0.14);
}

@keyframes floatCluster {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseCore {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.04);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.84;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.intro,
.story-card,
.brand-card,
.experience-card,
.closing-band,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.intro {
  margin: 14px 0 28px;
  padding: 24px 26px;
}

.stripe-summary {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(253, 254, 254, 0.82));
}

.summary-grid {
  display: grid;
  gap: 20px;
}

.summary-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.86;
}

.summary-rail {
  display: grid;
  gap: 12px;
}

.summary-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.summary-stat strong {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.08rem;
}

.summary-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(19, 41, 61, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.intro p {
  max-width: 70ch;
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.82;
}

.story-grid,
.brand-grid,
.experience-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.story-grid {
  grid-template-columns: 1fr;
  padding: 22px 0 36px;
}

.editorial-band {
  position: relative;
  margin: 12px 0 8px;
  padding: 8px 0 20px;
}

.band-header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.band-header h2 {
  max-width: 12ch;
}

.story-card,
.brand-card,
.experience-card {
  padding: 26px;
}

.story-card,
.brand-card,
.experience-card,
.intro,
.contact-card {
  box-shadow: 0 14px 34px rgba(19, 41, 61, 0.06);
}

.story-card p:last-child,
.brand-card p,
.experience-card p,
.contact-card p {
  margin: 14px 0 0;
  line-height: 1.82;
}

.story-card p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.84;
}

.page-shell {
  min-height: 100vh;
}

.page-main {
  padding: 34px 0 72px;
}

.page-hero {
  max-width: 860px;
  padding: 8px 0 30px;
}

.page-grid {
  display: grid;
  gap: 20px;
}

.story-card.accent {
  background:
    radial-gradient(circle at top right, rgba(201, 241, 238, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
}

.brands,
.experience,
.answers,
.contact {
  padding: 36px 0;
}

.stripe-divider {
  position: relative;
}

.stripe-divider::before {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 124, 134, 0.55), rgba(255, 134, 82, 0.3), transparent 85%);
  content: "";
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 13ch;
}

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

.brand-card-vdr {
  background:
    radial-gradient(circle at top right, rgba(14, 124, 134, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 250, 252, 0.78));
}

.brand-card-promate {
  background:
    radial-gradient(circle at top left, rgba(201, 241, 238, 0.4), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 134, 82, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 247, 0.8));
}

.brand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.brand-head a {
  color: var(--primary);
  font-weight: 800;
}

.brand-card-vdr .brand-head a,
.brand-card-vdr .brand-tag,
.brand-card-vdr .vdr-folder small,
.brand-card-vdr .vdr-metric small,
.brand-card-vdr .vdr-dot {
  color: #157d86;
}

.brand-card-promate .brand-head a,
.brand-card-promate .brand-tag,
.brand-card-promate .promate-panel small {
  color: #2a8f77;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(14, 124, 134, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-card-vdr .brand-tag {
  background: rgba(21, 125, 134, 0.12);
}

.brand-card-promate .brand-tag {
  background: rgba(42, 143, 119, 0.12);
}

.brand-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.brand-visual {
  position: relative;
  margin: 6px 0 24px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(19, 41, 61, 0.06);
}

.visual-vdr {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 228px;
  background:
    radial-gradient(circle at top right, rgba(21, 125, 134, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(245, 251, 252, 0.98), rgba(233, 244, 247, 0.94));
}

.vdr-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 14px;
  background: linear-gradient(180deg, #12354c 0%, #183e58 100%);
}

.vdr-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.vdr-main {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.vdr-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vdr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #157d86;
}

.vdr-line {
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 41, 61, 0.12);
}

.vdr-folder-row {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 14px;
  align-items: center;
}

.vdr-folder,
.vdr-metric {
  padding: 16px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.brand-card-vdr .vdr-folder,
.brand-card-vdr .vdr-metric,
.brand-card-vdr .vdr-shield {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vdr-folder strong,
.vdr-metric strong {
  display: block;
  font-size: 0.98rem;
}

.vdr-folder small,
.vdr-metric small,
.promate-panel small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vdr-shield {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 88px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(21, 125, 134, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.78);
}

.vdr-shield span {
  position: relative;
  width: 30px;
  height: 34px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, #12354c 0%, #157d86 100%);
  clip-path: polygon(50% 0%, 92% 18%, 92% 58%, 50% 100%, 8% 58%, 8% 18%);
}

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

.visual-promate {
  min-height: 228px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(195, 242, 221, 0.95), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 139, 92, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(250, 252, 249, 0.98), rgba(242, 247, 242, 0.94));
}

.promate-browser {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 14px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.promate-topbar {
  display: flex;
  gap: 8px;
}

.promate-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(19, 41, 61, 0.2);
}

.promate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  min-height: 146px;
}

.promate-stack {
  display: grid;
  gap: 14px;
}

.promate-panel {
  padding: 16px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.promate-panel strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.35;
}

.panel-calendar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 250, 244, 0.92));
}

.calendar-lines {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.calendar-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(42, 143, 119, 0.18);
}

.calendar-lines span:nth-child(2) {
  width: 78%;
}

.calendar-lines span:nth-child(3) {
  width: 56%;
}

.panel-kpi {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 92, 0.2), transparent 46%),
    rgba(255, 255, 255, 0.9);
}

.panel-media {
  background:
    radial-gradient(circle at bottom left, rgba(195, 242, 221, 0.92), transparent 48%),
    rgba(255, 255, 255, 0.9);
}

.brand-card-vdr li::before {
  background: #157d86;
}

.brand-card-promate li::before {
  background: #ff8b5c;
}

.brand-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.65;
}

.brand-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  content: "";
}

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

.experience-card strong {
  display: inline-block;
  font-size: 1.2rem;
}

.experience-card,
.faq-card {
  position: relative;
  overflow: hidden;
}

.card-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card::before,
.faq-card::before,
.story-card::before,
.intro::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 124, 134, 0.8), rgba(255, 134, 82, 0.35), transparent 85%);
  content: "";
}

.experience-card p,
.faq-card p {
  max-width: 42ch;
}

.answers .section-heading h2 {
  max-width: 14ch;
}

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

.faq-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(201, 241, 238, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 252, 251, 0.82));
  box-shadow: 0 14px 34px rgba(19, 41, 61, 0.06);
}

.faq-card h3 {
  max-width: 18ch;
}

.closing-band {
  position: relative;
  overflow: hidden;
}

.closing-band::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
  content: "";
}

.closing-band {
  margin: 24px 0 10px;
  padding: 34px 32px;
  background:
    linear-gradient(135deg, rgba(19, 41, 61, 0.97), rgba(15, 88, 107, 0.9)),
    var(--surface);
}

.stripe-closing {
  border-radius: 30px;
}

.closing-band .eyebrow,
.closing-band h2 {
  color: #fff;
}

.closing-band h2 {
  max-width: 13ch;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 252, 251, 0.86));
}

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

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-point {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-point strong {
  font-size: 0.96rem;
}

.contact-point span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px 0 8px;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(19, 41, 61, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(201, 241, 238, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(19, 41, 61, 0.14);
  backdrop-filter: blur(18px);
}

body.cookie-banner-visible {
  padding-bottom: 220px;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready .reveal,
  .button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .product-cluster,
  .hero-core,
  .hero-core-ring,
  .hero-spark {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 720px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    width: auto;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: auto;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-network-grid {
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    gap: 22px;
  }

  .summary-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .contact-actions .button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .header-tools {
    order: 3;
  }

  .site-nav {
    justify-content: flex-end;
    max-width: 560px;
    border-radius: 999px;
  }

  .hero {
    grid-template-columns: 1.02fr 0.98fr;
    padding: 44px 0 72px;
  }

  .stripe-hero::before {
    top: -44px;
    right: -34px;
    width: 52%;
    height: calc(100% + 88px);
    transform: skewY(-6deg);
  }

  h1,
  h2,
  .section-heading h2,
  .contact-copy h2,
  .closing-band h2 {
    max-width: none;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-network-grid {
    grid-template-columns: minmax(0, 1fr) 178px minmax(0, 1fr);
    gap: 26px;
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-card {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .contact-actions {
    justify-content: flex-end;
  }

  .contact-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(400px, calc(100vw - 48px));
  }

  body.cookie-banner-visible {
    padding-bottom: 150px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 32px 0 28px;
  }

  .stripe-hero::before {
    top: 120px;
    right: -20px;
    width: 92%;
    height: 360px;
    transform: skewY(-8deg);
  }

  h1 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-stage,
  .intro,
  .story-card,
  .brand-card,
  .experience-card,
  .closing-band,
  .contact-card,
  .faq-card {
    padding: 22px;
    border-radius: 26px;
  }

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

  .hero-network {
    padding: 14px;
  }
  .hero-network-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-cluster {
    gap: 12px;
  }

  .cluster-promate .cluster-label {
    margin-left: 0;
  }

  .vdr-scene,
  .promate-scene {
    min-height: 220px;
  }

  .vdr-shell,
  .promate-shell {
    min-height: 220px;
    border-radius: 22px;
  }

  .vdr-shell {
    grid-template-columns: 58px 1fr;
  }

  .vdr-sidebar {
    gap: 10px;
    padding: 16px 12px;
  }

  .vdr-body,
  .promate-shell {
    padding: 14px;
  }

  .vdr-folder-card {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .vdr-folder-icon {
    width: 42px;
    height: 34px;
  }

  .badge-shield {
    width: 48px;
    height: 48px;
  }

  .badge-watermark {
    width: 94px;
    height: 30px;
  }

  .promate-cards {
    grid-template-columns: 1fr;
  }

  .card-calendar,
  .card-play {
    min-height: 94px;
  }

  .card-stats {
    min-height: 72px;
    grid-template-columns: 58px 1fr;
  }

  .card-stats span:first-child {
    width: 58px;
    height: 58px;
  }

  .floating-chart {
    left: 4px;
    bottom: 14px;
    width: 78px;
    height: 64px;
  }

  .floating-chip {
    top: 18px;
    right: 6px;
    width: 74px;
    height: 38px;
  }

  .hero-centerpiece {
    min-height: 136px;
    order: -1;
  }

  .ring-outer {
    width: 112px;
    height: 112px;
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.34);
  }

  .ring-inner {
    width: 82px;
    height: 82px;
  }

  .hero-core {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .dot-one {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 8px;
  }

  .dot-two {
    top: 30px;
    left: 14px;
    width: 20px;
    height: 8px;
  }

  .dot-three {
    top: 30px;
    right: 14px;
    width: 10px;
    height: 10px;
  }

  .hero-connector {
    width: 74px;
  }

  .spark-one {
    left: 8px;
  }

  .spark-two {
    right: 8px;
  }

  .line-four {
    right: 62px;
    bottom: 128px;
    width: 96px;
  }

  .brand-head,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .visual-vdr {
    grid-template-columns: 1fr;
  }

  .vdr-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-content: stretch;
    padding: 14px;
  }

  .vdr-folder-row,
  .vdr-metrics,
  .promate-grid {
    grid-template-columns: 1fr;
  }

  .brands,
  .experience,
  .answers,
  .contact {
    padding: 28px 0;
  }

  .story-grid {
    padding: 18px 0 24px;
  }

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

  .page-main {
    padding: 20px 0 48px;
  }

  .cookie-banner {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .cookie-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  body.cookie-banner-visible {
    padding-bottom: 260px;
  }
}
