/* ============ TOKENS ============ */
:root {
  --bg: #000000;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --card: #1c1c1c;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-2: #c4c4c4;
  --text-3: #8c8c8c;
  --text-4: #545454;
  --blue: #1972f5;
  --blue-hover: #095cd7;
  --pastel-blue: #d8e7fd;
  --pastel-peach: #fde2d9;
  --pastel-violet: #dbc5fb;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "Roboto Mono", monospace;
  --pad: clamp(20px, 5.4vw, 76px);
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.br-desk { display: block; }

::selection { background: var(--blue); color: #fff; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 10px; border: none; cursor: pointer;
  transition: background 0.18s ease-out, transform 0.12s ease-out;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }
.btn--ghost { background: #ffffff14; color: #fff; }
.btn--ghost:hover { background: #ffffff24; }
.btn--glass { background: #38383866; color: #fff; border: 1px solid #ffffff1f; backdrop-filter: blur(8px); }
.btn--glass:hover { background: #383838cc; }
.btn--dark { background: #111; color: #fff; }
.btn--dark:hover { background: #2a2a2a; }
.btn--light { background: #111; color: #fff; }
.btn--light:hover { background: #333; }
.btn--sm { padding: 8px 16px; font-size: 13.5px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn__arrow { font-size: 18px; line-height: 1; margin-top: -2px; }
.btn__play { font-size: 10px; }

.dot-sep { margin: 0 8px; color: var(--text-4); }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(#00000066, transparent);
}
.nav__brand { display: flex; align-items: center; gap: 8px; color: #fff; }
.nav__mark { color: #fff; }
.nav__word { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 6px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: #e8e8e8;
  padding: 8px 12px; border-radius: 8px; transition: background 0.18s;
}
.nav__links a:hover { background: #ffffff14; }
.nav__actions { display: flex; gap: 10px; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ============ AURORA / HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding-top: 120px; }
.hero__aurora, .cta__aurora { position: absolute; inset: 0; pointer-events: none; }
.aurora__blob { position: absolute; width: 58vw; height: 48vh; border-radius: 50%; filter: blur(90px); opacity: 0.95; }
.aurora__blob--a { top: -26vh; left: -8vw; background: radial-gradient(ellipse, #6d4fd4 0%, #3d2a8f 45%, transparent 72%); animation: drift-a 14s ease-in-out infinite alternate; }
.aurora__blob--b { top: -28vh; right: -10vw; background: radial-gradient(ellipse, #e0559c 0%, #a02d92 45%, transparent 72%); animation: drift-b 17s ease-in-out infinite alternate; }
.aurora__blob--c { top: -24vh; left: 32vw; background: radial-gradient(ellipse, #4a7de0 0%, #2b3f9e 50%, transparent 75%); opacity: 0.55; animation: drift-a 20s ease-in-out infinite alternate-reverse; }
.aurora__fade { position: absolute; inset: 0; background: linear-gradient(#00000000 0%, #00000088 34%, #000 66%); }
@keyframes drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(6vw, 4vh) scale(1.15); } }
@keyframes drift-b { from { transform: translate(0, 0) scale(1.1); } to { transform: translate(-5vw, 5vh) scale(0.95); } }

.hero__inner { position: relative; z-index: 2; padding: 6vh var(--pad) 0; max-width: 1100px; container-type: inline-size; }
.hero__title {
  font-family: var(--serif);
  font-size: min(17.4cqw, 90px);
  line-height: 1.02; letter-spacing: -0.01em;
}
.hero__line { display: block; white-space: nowrap; }
.hero__sub { margin-top: 28px; color: var(--text-2); font-size: 17px; line-height: 1.6; }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: 13px; color: var(--text-3); }
.hero__note strong { color: #fff; font-weight: 600; }

.hero__trust { position: relative; z-index: 2; padding: 0 0 34px; }
.hero__trust-line { text-align: center; font-size: 14px; color: var(--text-3); margin-bottom: 34px; }
.hero__trust-line strong { color: #fff; }
.trust-chip { color: #7aa8f8; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-marquee__track { display: flex; gap: clamp(48px, 8vw, 130px); width: max-content; animation: marquee 32s linear infinite; padding: 6px 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
.fake-logo { color: #d5d5d5; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; white-space: nowrap; }
.fake-logo--serif { font-family: var(--serif); font-weight: 400; font-size: 25px; }
.fake-logo--caps { letter-spacing: 0.14em; font-size: 17px; }
.fake-logo--stack { line-height: 1; text-align: center; }
.fake-logo--stack small { display: block; font-size: 8px; letter-spacing: 0.3em; font-weight: 500; }
.fake-logo--bold { font-weight: 700; }
.fl-dots { color: #9aa8ff; font-size: 13px; }
.fl-bear { color: #fff; }

/* ============ EYEBROW (10P labels) ============ */
.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 26px;
}
.eyebrow--center { text-align: center; }
.eyebrow--onlight { color: #8a93a8; }
.eyebrow--peach { color: #b09a94; }

/* ============ 02 PROBLEM ============ */
.problem { padding: 16vh var(--pad) 14vh; max-width: 1400px; margin: 0 auto; }
.problem__title { font-family: var(--serif); font-size: clamp(40px, 5.6vw, 84px); line-height: 1.05; letter-spacing: -0.01em; }
.problem__muted { color: #8a93a8; }
.problem__sub { color: var(--text-3); font-size: 16.5px; line-height: 1.65; max-width: 62ch; margin-top: 26px; }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 9vh; }
.problem__item { background: #0f0f0f; border: 1px solid #1f1f1f; border-radius: var(--radius); padding: 30px 28px; }
.problem__x {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: #1a1010; border: 1px solid #3a2020;
  color: #e06a6a; font-size: 14px; margin-bottom: 20px;
}
.problem__item h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.problem__item p { color: var(--text-3); font-size: 14.5px; line-height: 1.62; }

/* ============ WHY ============ */
.why { position: relative; padding: 20vh var(--pad) 26vh; overflow: hidden; }
.why .eyebrow--center { position: relative; z-index: 2; display: block; }
.why__giant {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: clamp(150px, 32vw, 470px);
  background: linear-gradient(180deg, #4a5f8a 0%, #1c2740 55%, #0a0f1c 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none; pointer-events: none;
}
.why__horizon {
  position: absolute; left: 50%; bottom: -34vw; transform: translateX(-50%);
  width: 120vw; height: 60vw; border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at 50% 0%, #101828 0%, #05070d 55%, transparent 75%);
  box-shadow: 0 -2px 60px #1a2a4a55;
  pointer-events: none;
}
.why__cards { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; min-height: 74vh; }
.why-card {
  background: #101010e8; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 28px; max-width: 380px;
  box-shadow: 0 24px 60px #00000090;
  backdrop-filter: blur(4px);
}
.why-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: var(--text-3); font-size: 14.5px; line-height: 1.6; }
.why-card--1 { transform: rotate(-6deg); margin-left: 4%; }
.why-card--2 { transform: rotate(3deg); margin-left: 34%; margin-top: -60px; }
.why-card--3 { transform: rotate(5deg); margin-left: 66%; margin-top: -110px; }
.why-card--4 { transform: rotate(-4deg); margin-left: 1%; margin-top: 90px; }
.why-card--5 { transform: rotate(4deg); margin-left: 63%; margin-top: 30px; }
.why-card.reveal { opacity: 0; }
.why-card.reveal.is-in { opacity: 1; }
.why-card--1.is-in { transform: rotate(-6deg); }
.why-card--2.is-in { transform: rotate(3deg); }
.why-card--3.is-in { transform: rotate(5deg); }
.why-card--4.is-in { transform: rotate(-4deg); }
.why-card--5.is-in { transform: rotate(4deg); }

/* ============ 04 PROOF OF RESULTS ============ */
.proof { padding: 14vh var(--pad) 14vh; max-width: 1400px; margin: 0 auto; }
.proof__title { font-family: var(--serif); font-size: clamp(40px, 5.6vw, 84px); line-height: 1.05; letter-spacing: -0.01em; }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 9vh; }
.proof__stat { border-top: 1px solid #262626; padding-top: 28px; }
.proof__stat b { display: block; font-family: var(--sans); font-weight: 600; font-size: clamp(44px, 4.6vw, 72px); line-height: 1; letter-spacing: -0.03em; }
.proof__blue { color: #5f9bf7; }
.proof__stat small { display: block; color: var(--text-3); font-size: 14px; line-height: 1.58; margin-top: 14px; max-width: 30ch; }
.proof__note { color: var(--text-4); font-size: 13.5px; margin-top: 8vh; }

/* ============ CAPABILITIES ============ */
.caps { padding: 12vh var(--pad) 14vh; max-width: 1400px; margin: 0 auto; }
.caps__title { font-family: var(--serif); font-size: clamp(44px, 6.4vw, 92px); line-height: 1.04; letter-spacing: -0.01em; margin-bottom: 9vh; }
.caps__title span { display: block; }
.caps__muted { color: #9aa4b8; }
.caps__fade { color: #4a4f5c; }
.caps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 10vh; }
.caps__icon { color: #d5d5d5; margin-bottom: 18px; }
.caps__item p { color: var(--text-3); font-size: 15px; line-height: 1.62; }
.caps__item strong { color: #fff; font-weight: 600; }

.dotted-divider { border-top: 2px dotted #3a3a3a; margin: 0 0 9vh; }
.dotted-divider--light { border-color: #00000026; margin: 34px 0; }

.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { background: #131313; border: 1px solid #222; border-radius: var(--radius); padding: 28px; min-height: 290px; display: flex; flex-direction: column; }
.trust-card__top { display: flex; justify-content: space-between; align-items: flex-start; flex: 1; }
.trust-card__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: #7a7a7a; }
.trust-card__art { color: #8c8c8c; }
.trust-card__art--lock { width: 74px; height: 74px; border-radius: 50%; background: #1d1d1d; display: grid; place-items: center; }
.star-ring { font-family: var(--serif); text-align: center; font-size: 13px; color: #8c8c8c; line-height: 1.5; display: block; letter-spacing: 0.4em; }
.star-ring em { font-style: normal; font-size: 19px; letter-spacing: 0.05em; }
.trust-card h3 { font-size: 21px; font-weight: 500; margin: 26px 0 10px; }
.trust-card p { color: var(--text-3); font-size: 14.5px; line-height: 1.6; }

/* ============ FEATURES (light) ============ */
.features {
  background: linear-gradient(180deg, #f6f8fc 0%, #e9f0fb 45%, #dfe9fa 100%);
  color: #0c0c0c; padding: 14vh 0 16vh;
  border-radius: 28px 28px 0 0;
}
.features__title { text-align: center; font-family: var(--serif); font-size: clamp(38px, 5.4vw, 76px); line-height: 1.08; margin-bottom: 9vh; padding: 0 var(--pad); }
.features__title span { display: block; }
.features__muted { color: #8a93a8; }

.stack { padding: 0 var(--pad); max-width: 1360px; margin: 0 auto; }
.stack-card {
  position: sticky; top: 86px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: end;
  border-radius: 26px; padding: clamp(28px, 4vw, 56px);
  min-height: 66vh; margin-bottom: 26px;
  color: #fff; overflow: hidden;
  box-shadow: 0 -12px 40px #0002, 0 30px 60px #0003;
}
.stack-card--brown { background: linear-gradient(145deg, #2a1408 0%, #3a1d0c 60%, #16224a 130%); }
.stack-card--teal { background: linear-gradient(150deg, #0d2b30 0%, #123a40 55%, #0a1e33 120%); }
.stack-card--green { background: linear-gradient(150deg, #17250e 0%, #2b4218 60%, #101c0a 120%); }
.stack-card--maroon { background: linear-gradient(150deg, #2a0d0d 0%, #401414 55%, #1c0a18 120%); }
.stack-card--wine { background: linear-gradient(150deg, #33091b 0%, #4a0f24 55%, #1a0a2e 130%); }
.stack-card--violet { background: linear-gradient(150deg, #1d0d33 0%, #2e1452 55%, #120a26 120%); }
.stack-card__copy h3 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 46px); line-height: 1.1; margin-bottom: 16px; }
.stack-card__copy p { color: #ffffffb0; font-size: 15.5px; line-height: 1.62; max-width: 46ch; }
.stack-card__shot { align-self: center; transform: rotate(0.001deg); }

/* Mock UI panels */
.mock {
  background: #fbfbfd; color: #1a1f2b; border-radius: 14px;
  padding: 22px 24px; box-shadow: 0 30px 70px #00000055, 0 2px 0 #ffffff33 inset;
  font-size: 12.5px; transform: perspective(1200px) rotateX(2deg) rotateY(-3deg);
}
.mock__head { font-size: 15px; margin-bottom: 4px; }
.mock__head strong { font-weight: 700; }
.mock__hint { color: #9aa2b5; font-size: 11px; }
.mock__pill { background: #eef1f7; border-radius: 20px; padding: 2px 10px; font-size: 11px; color: #4a5468; }
.mock__pill--right { float: right; }
.mock__subline { color: #7a8398; font-size: 11.5px; margin-bottom: 16px; max-width: 60ch; }
.mock__row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock__tile { border: 1px solid #e3e7ef; border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 7px; background: #fff; }
.mock__tile b { font-size: 12.5px; }
.mock__tile small { color: #7a8398; font-size: 10.5px; line-height: 1.45; }
.mock__badge { align-self: flex-start; font-size: 9.5px; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: #eef1f7; color: #6a7488; }
.mock__badge--on { background: #e1f5e8; color: #1e8a4a; }
.mock__btn { margin-top: auto; align-self: stretch; text-align: center; border: 1px solid #d8dde8; border-radius: 8px; padding: 5px 0; font-weight: 600; font-size: 11px; color: #333c50; background: #fff; }
.mock__btn--blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.mock__panel { border: 1px solid #e3e7ef; border-radius: 10px; padding: 14px; background: #fff; display: flex; flex-direction: column; gap: 10px; }
.mock__setting { display: flex; align-items: center; gap: 9px; font-size: 12px; color: #333c50; }
.mock__setting--select { border: 1px solid #d8dde8; border-radius: 8px; padding: 7px 10px; justify-content: space-between; font-weight: 500; }
.mock__toggle { width: 30px; height: 17px; border-radius: 20px; background: #cfd6e2; position: relative; flex-shrink: 0; }
.mock__toggle--on { background: var(--blue); }
.mock__toggle--on::after { content: ""; position: absolute; right: 2px; top: 2px; width: 13px; height: 13px; border-radius: 50%; background: #fff; }
.mock__check { color: #1e8a4a; font-weight: 700; }
.mock__field { display: flex; flex-direction: column; gap: 5px; }
.mock__field label { font-size: 10.5px; color: #7a8398; font-weight: 600; }
.mock__select { border: 1px solid #d8dde8; border-radius: 8px; padding: 8px 10px; display: flex; justify-content: space-between; font-weight: 500; background: #fff; }
.mock__krow { display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 8px 4px; border-bottom: 1px solid #eef1f7; }
.mock__krow em { color: #8a93a8; font-style: normal; font-size: 10.5px; margin-left: auto; margin-right: 8px; }
.mock__krow--link { color: #2a63d4; }
.mock__krow--link em { color: #9ab0dd; }

.mock--flow { background: #f4f6fa; color: #1a1f2b; border-radius: 14px; box-shadow: 0 30px 70px #00000055; transform: perspective(1200px) rotateX(2deg) rotateY(-3deg); overflow: hidden; }
.mock__flowbar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; border-bottom: 1px solid #e3e7ef; font-size: 11.5px; }
.mock__flowtitle { margin-left: auto; font-weight: 600; }
.mock__flow { position: relative; padding: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; background-image: radial-gradient(#d9dfeb 1px, transparent 1px); background-size: 16px 16px; }
.flow-node { border-radius: 9px; padding: 10px 12px; font-size: 11px; font-weight: 600; box-shadow: 0 4px 14px #0001; }
.flow-node small { font-weight: 400; opacity: 0.85; }
.flow-node--red { background: #e8384f; color: #fff; }
.flow-node--cyan { background: #3db8dd; color: #fff; }
.flow-node--dark { background: #23272f; color: #fff; }
.flow-note { grid-column: 1 / -1; background: #fff7d1; border: 1px solid #eadf9e; color: #6b5d1e; border-radius: 8px; padding: 8px 10px; font-size: 10.5px; }

.mock__sankey { display: flex; align-items: flex-end; gap: 26px; padding: 18px 6px 6px; }
.sankey__col { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sankey__col small { color: #7a8398; font-size: 10px; }
.sankey__bar { width: 14px; border-radius: 4px; display: block; }
.sankey__bar--blue { background: #4a6cf5; }
.sankey__bar--violet { background: #8a5cf5; }
.sankey__bar--green { background: #23b26d; }
.sankey__bar--amber { background: #e8a13c; }
.sankey__links { flex: 1; height: 50px; border-top: 2px dashed #d0d7e4; border-bottom: 2px dashed #d0d7e4; border-radius: 40%; opacity: 0.7; }

/* ============ STEPS ============ */
.steps {
  background: #f6f8fc; color: #0c0c0c;
  padding: 14vh var(--pad) 12vh;
  display: grid; grid-template-columns: 0.85fr 2fr; gap: 60px;
}
.steps__left { position: sticky; top: 120px; align-self: start; }
.steps__left h2 { font-family: var(--serif); font-size: clamp(40px, 4.6vw, 64px); line-height: 1.05; }
.steps__muted { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; color: #9aa4b8; margin-top: 8px; }
.steps__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 44px; }
.step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.step__num { font-family: var(--mono); font-size: 13px; background: #1c1c1c; color: #fff; border-radius: 50%; width: 40px; height: 40px; display: grid; place-items: center; flex-shrink: 0; }
.step__line { flex: 1; border-top: 1px solid #d5dbe8; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.step > p { color: #6a7488; font-size: 14px; margin-bottom: 22px; }
.step__art { perspective: 900px; }
.step__card {
  background: #fff; border: 1px solid #e5e9f2; border-radius: 14px; padding: 22px;
  min-height: 250px; box-shadow: 0 20px 44px #10214008;
  transform: rotateX(4deg) rotateY(-5deg) rotateZ(-1.5deg);
  font-size: 12.5px; color: #333c50;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
}
.upload-zone { border: 2px dashed #c7d2e8; border-radius: 12px; padding: 30px 18px; text-align: center; color: #6a7488; background: #f4f8ff; position: relative; }
.upload-icon { display: block; font-size: 26px; margin-bottom: 8px; color: #8aa4d8; }
.upload-zone small { color: #9aa8c4; }
.upload-file { position: absolute; bottom: -12px; left: 14px; background: #dbe9ff; border: 1px solid #b9d2fa; color: #2a63d4; font-size: 10.5px; padding: 4px 10px; border-radius: 20px; transform: rotate(-4deg); box-shadow: 0 6px 14px #2a63d422; }
.rule-line em { font-family: var(--serif); font-style: italic; font-size: 19px; color: #1a1f2b; }
.rule-box { border: 1.5px solid #b9d2fa; background: #fdfefe; border-radius: 9px; padding: 10px 12px; box-shadow: 0 4px 12px #2a63d411; }
.rule-route { color: #6a7488; padding-left: 8px; }
.rule-route span { border: 1px solid #d8dde8; background: #fff; border-radius: 7px; padding: 3px 9px; }
.rule-add { background: var(--blue); color: #fff; border-radius: 9px; text-align: center; padding: 9px; font-weight: 600; box-shadow: 0 10px 22px #1972f533; }
.chat-bub { border-radius: 12px; padding: 9px 12px; max-width: 85%; box-shadow: 0 3px 10px #10214010; }
.chat-bub--bot { background: #eef4ff; align-self: flex-start; }
.chat-bub--user { background: #fff; border: 1px solid #e5e9f2; align-self: flex-end; }
.chat-avatar { display: inline-grid; place-items: center; width: 18px; height: 18px; background: var(--blue); color: #fff; border-radius: 50%; font-size: 10px; margin-right: 4px; }
.chat-compose { border: 1px solid #e5e9f2; border-radius: 10px; padding: 9px 12px; color: #9aa8c4; font-style: italic; }
.inbox-title { font-family: var(--serif); font-size: 21px; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; color: #1a1f2b; }
.inbox-tab { font-family: var(--sans); font-size: 10.5px; font-weight: 600; border-radius: 20px; padding: 3px 10px; background: #eef1f7; color: #6a7488; }
.inbox-tab--on { background: var(--blue); color: #fff; }
.inbox-row { display: flex; align-items: center; gap: 8px; padding: 8px 6px; border-bottom: 1px solid #eef1f7; font-size: 11.5px; color: #4a5468; }
.inbox-row b { font-weight: 600; color: #1a1f2b; }
.inbox-face { width: 24px; height: 24px; border-radius: 50%; background: #f0b9c8; color: #8a2f4a; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.inbox-face--b { background: #b9d2fa; color: #1e4a9e; }
.inbox-face--c { background: #c8e8c4; color: #2e6b28; }
.steps__cta { grid-column: 2; margin-top: 20px; }
.steps__cta-title { font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); }
.steps__cta-sub { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); color: #9aa4b8; line-height: 1.2; margin: 6px 0 24px; }
.steps__cta .hero__note { color: #6a7488; }
.steps__cta .hero__note strong { color: #0c0c0c; }

/* ============ INTEGRATIONS ============ */
.integrations { background: #0a0a0a; border-radius: 28px 28px 0 0; padding: 14vh var(--pad) 0; text-align: center; overflow: hidden; }
.integrations h2 { font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); }
.integrations__sub { color: var(--text-3); margin-top: 16px; font-size: 15.5px; }
.board { position: relative; max-width: 1240px; margin: 8vh auto 0; height: clamp(360px, 44vw, 540px); border-radius: 30px 30px 0 0; background: linear-gradient(#141414, #0c0c0c); border: 1px solid #1f1f1f; border-bottom: none; }
.board__wires { position: absolute; inset: 0; width: 100%; height: 100%; }
.wire { fill: none; stroke: #333; stroke-width: 1.5; stroke-dasharray: 3 6; }
.app-chip {
  position: absolute; left: var(--x); top: var(--y);
  width: clamp(38px, 4.4vw, 54px); height: clamp(38px, 4.4vw, 54px);
  border-radius: 13px; background: var(--c); color: var(--fg, #fff);
  display: grid; place-items: center; font-size: clamp(16px, 2vw, 24px);
  box-shadow: 0 10px 28px #00000088, 0 1px 0 #ffffff33 inset;
  transform: translate(-50%, -50%);
  animation: chip-bob 5s ease-in-out infinite;
}
.app-chip:nth-child(odd) { animation-delay: -2.5s; }
@keyframes chip-bob { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 7px)); } }
.keycap {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: clamp(130px, 15vw, 190px); height: clamp(130px, 15vw, 190px);
  border-radius: 26px; background: linear-gradient(160deg, #262626, #101010);
  box-shadow: 0 24px 50px #000000cc, 0 2px 0 #ffffff14 inset, 0 -8px 20px #00000088 inset;
  border: 1px solid #2e2e2e;
  display: grid; place-items: center;
}
.keycap__top { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding: 18px; width: 100%; }
.keycap__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: #4d4d4d; line-height: 1.6; }

/* ============ GLOBE ============ */
.globe-sec { position: relative; background: #000; min-height: 96vh; display: flex; align-items: center; overflow: hidden; padding: 10vh var(--pad); }
.globe-canvas { position: absolute; left: -12%; top: 50%; transform: translateY(-50%); width: min(62vw, 820px); height: auto; aspect-ratio: 1; }
.globe-copy { margin-left: auto; max-width: 520px; position: relative; z-index: 2; }
.globe-copy h2 { font-family: var(--serif); font-size: clamp(36px, 4.2vw, 58px); line-height: 1.08; }
.globe-muted { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 50px); line-height: 1.12; color: #9aa4b8; margin-top: 6px; }

/* ============ STORIES ============ */
.stories { background: #000; padding: 14vh var(--pad) 16vh; max-width: 1400px; margin: 0 auto; }
.stories h2 { font-family: var(--serif); font-size: clamp(38px, 4.8vw, 68px); line-height: 1.06; }
.stories__muted { font-family: var(--serif); font-size: clamp(32px, 4.2vw, 60px); color: #8a93a8; line-height: 1.1; margin-bottom: 8vh; }
.stories__grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 20px; align-items: start; }
.story {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid #222; padding: 24px; min-height: 470px;
  display: flex; flex-direction: column;
}
.story__logo { font-weight: 700; font-size: 17px; letter-spacing: 0.04em; color: #ddd; margin-bottom: 16px; }
.story__stars { color: #f5b83d; font-size: 15px; letter-spacing: 3px; margin-bottom: 12px; }
.story__face { flex: 1; border-radius: 12px; min-height: 210px; margin-bottom: 20px; display: grid; place-items: center; position: relative; overflow: hidden; }
.story__face span { font-family: var(--serif); font-size: 64px; color: #ffffff2e; }
.story__face--a { background: radial-gradient(circle at 30% 25%, #2c3e6e, #10182e 70%); }
.story__face--b { background: radial-gradient(circle at 65% 30%, #3e2c5e, #180f2e 70%); }
.story__face--c { background: radial-gradient(circle at 45% 20%, #133c3e, #0a1c20 70%); }
.story blockquote { color: #d0d0d0; font-size: 14.5px; line-height: 1.62; margin-bottom: 20px; }
.story footer b { display: block; font-size: 14px; }
.story footer span { color: var(--text-3); font-size: 13px; }
.story__arrow { position: absolute; top: 20px; right: 22px; color: #888; font-size: 18px; }
.story:nth-child(1) { background: #0d0d12; }
.story:nth-child(2) { background: #0f0d14; }
.story:nth-child(3) { background: #0c1010; }

/* ============ 09 GUARANTEE (Pushback Reflex) ============ */
.guarantee { padding: 14vh var(--pad) 14vh; max-width: 1400px; margin: 0 auto; }
.guarantee__title { font-family: var(--serif); font-size: clamp(40px, 5.6vw, 84px); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 8vh; }
.guarantee__muted { color: #8a93a8; }
.guarantee__points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 10vh; }
.guarantee__tick {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: #0e1a12; border: 1px solid #1f3a28;
  color: #7ee2a8; font-size: 14px; font-weight: 700; margin-bottom: 18px;
}
.guarantee__point h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.guarantee__point p { color: var(--text-3); font-size: 14px; line-height: 1.6; }

/* ============ 10 PRIORITY ============ */
.priority { padding: 14vh var(--pad) 15vh; text-align: center; background: radial-gradient(ellipse 70% 55% at 50% 115%, #101a30 0%, #000 70%); }
.priority__title { font-family: var(--serif); font-size: clamp(42px, 6vw, 90px); line-height: 1.04; letter-spacing: -0.01em; }
.priority__muted { color: #8a93a8; }
.priority__sub { color: var(--text-2); font-size: 16.5px; line-height: 1.65; max-width: 58ch; margin: 26px auto 0; }
.priority__sub strong { color: #fff; font-weight: 600; }
.priority__cta { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 4px; }

/* ============ PRICING ============ */
.pricing { background: linear-gradient(180deg, #fde8de 0%, #fdeee6 60%, #fdf3ec 100%); color: #0c0c0c; border-radius: 28px 28px 0 0; padding: 14vh var(--pad); text-align: center; }
.pricing h2 { font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); line-height: 1.06; }
.pricing__muted { font-family: var(--serif); font-size: clamp(30px, 4.2vw, 60px); color: #b09a94; line-height: 1.1; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 1200px; margin: 9vh auto 0; text-align: left; align-items: center; }
.pricing__cardwrap { position: relative; }
.price-card {
  position: relative; border-radius: 22px; padding: 34px;
  background: linear-gradient(140deg, #10b8e8 0%, #1972f5 40%, #1428b8 100%);
  color: #fff; aspect-ratio: 1.58; max-width: 560px;
  box-shadow: 0 40px 80px #1972f533;
  display: flex; flex-direction: column;
}
.price-card--back {
  position: absolute; inset: 18px -18px -18px 18px;
  background: linear-gradient(140deg, #e8384f, #bc1888 60%, #6d1470);
  z-index: 0;
}
.price-card:not(.price-card--back) { z-index: 1; }
.price-card__row { display: flex; justify-content: space-between; align-items: center; }
.price-card__brands { font-size: 20px; font-weight: 600; }
.price-card__chip { background: #ffffff2e; border-radius: 8px; padding: 4px 12px; font-size: 13px; font-weight: 600; }
.price-card__member { font-family: var(--serif); font-size: 24px; opacity: 0.92; margin-top: 2px; }
.price-card__price { font-family: var(--serif); font-size: clamp(64px, 6vw, 96px); line-height: 1; margin-top: auto; }
.price-card__per { font-size: 14px; opacity: 0.8; }
.est__label { font-size: 15px; font-weight: 500; margin-bottom: 12px; }
.est__row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.est__value { font-family: var(--serif); font-size: 64px; line-height: 1; }
.est__hint { font-size: 12.5px; color: #8a7d76; }
.est__hint strong { color: #0c0c0c; }
.est__slider { width: 100%; margin-top: 20px; appearance: none; height: 2px; background: #c9b8ae; border-radius: 2px; outline: none; }
.est__slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #0c0c0c; border: 4px solid #fde8de; box-shadow: 0 0 0 1.5px #0c0c0c; cursor: pointer; }
.est__slider::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: #0c0c0c; border: 3px solid #fde8de; box-shadow: 0 0 0 1.5px #0c0c0c; cursor: pointer; }
.est__ends { display: flex; justify-content: space-between; font-size: 12px; color: #8a7d76; margin-top: 8px; }
.est__included { font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.est__list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.est__list li { display: flex; gap: 12px; font-size: 14.5px; color: #5c534e; line-height: 1.55; }
.est__list strong { color: #0c0c0c; }
.est__tick { color: #0c0c0c; font-weight: 700; }
.est__note { font-size: 13px; color: #8a7d76; margin-top: 14px; }
.est__note strong { color: #0c0c0c; }

/* Price anchor (07) */
.price-anchor { margin-top: 54px; max-width: 560px; }
.price-anchor__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #b09a94; margin-bottom: 16px; }
.price-anchor__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-anchor__list li { display: flex; align-items: baseline; gap: 12px; font-size: 14.5px; color: #5c534e; }
.price-anchor__list li::after { content: ""; order: 2; flex: 1; border-bottom: 2px dotted #d9c4ba; transform: translateY(-3px); }
.price-anchor__list li span { order: 1; }
.price-anchor__list li s { order: 3; color: #b09a94; font-weight: 500; }
.price-anchor__total { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e8d5cb; font-size: 15px; color: #5c534e; }
.price-anchor__total strong { color: #0c0c0c; font-weight: 700; }

/* ============ FAQ ============ */
.faq { background: #0a0a0a; border-radius: 28px 28px 0 0; padding: 15vh var(--pad); display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.faq__left { position: sticky; top: 130px; align-self: start; }
.faq h2 { font-family: var(--serif); font-size: clamp(40px, 5vw, 70px); line-height: 1.05; }
.faq__muted { font-family: var(--serif); font-size: clamp(32px, 4.2vw, 58px); color: #8a93a8; line-height: 1.1; margin-bottom: 34px; }
.faq__chat { display: flex; flex-direction: column; gap: 30px; }
.faq-q {
  align-self: flex-end; background: #f2f2f2; color: #111;
  border-radius: 13px; padding: 14px 20px; font-size: 15px; font-weight: 500;
  max-width: 82%; box-shadow: 0 14px 34px #00000066;
}
.faq-a {
  align-self: flex-start; background: #161616; border: 1px solid #262626; color: #c9c9c9;
  border-radius: 13px; padding: 16px 20px; font-size: 14.5px; line-height: 1.6;
  max-width: 86%; transform: rotate(-1.6deg);
  box-shadow: 0 18px 40px #00000088; margin-left: 4%;
}
.faq-a.is-in { transform: rotate(-1.6deg); }

/* ============ FINAL CTA ============ */
.cta { position: relative; background: #000; overflow: hidden; padding: 18vh var(--pad) 22vh; }
.cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; max-width: 1300px; margin: 0 auto; }
.cta h2 { font-family: var(--serif); font-size: clamp(52px, 7.4vw, 110px); line-height: 1.02; }
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.cta__aurora { top: auto; height: 60%; bottom: -12%; transform: scaleY(-1); opacity: 0.9; }
.cta__aurora .aurora__blob--a { animation-duration: 11s; }

/* ============ FOOTER ============ */
.footer { position: relative; background: #f6f8fc; color: #0c0c0c; padding: 10vh var(--pad) 0; overflow: hidden; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1400px; margin: 0 auto; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); color: #3a4152; line-height: 1.1; transition: color 0.18s; }
.footer__col a:hover { color: #0c0c0c; }
.footer__contact p { font-size: 14px; color: #6a7488; margin-bottom: 12px; }
.footer__meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 60px; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; }
.footer__lang { background: #fff; border: 1px solid #e0e5ef; border-radius: 10px; padding: 9px 14px; font-family: var(--sans); font-size: 13.5px; cursor: pointer; color: #333; }
.footer__legal { font-size: 13.5px; color: #6a7488; }
.footer__legal a:hover { color: #0c0c0c; }
.footer__copy { font-size: 13.5px; color: #6a7488; }
.footer__dome {
  height: 190px; max-width: 900px; margin: 0 auto;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #e2e7f2, #f6f8fc);
  border: 1px solid #e0e5ef; border-bottom: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .problem__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee__points { grid-template-columns: repeat(2, 1fr); }
  .nav__burger { display: flex; }
  .stack-card { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .stack-card__shot { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .steps__left { position: static; }
  .stories__grid { grid-template-columns: 1fr; }
  .story { min-height: 0; }
  .story__face { min-height: 180px; }
  .pricing__grid { grid-template-columns: 1fr; gap: 60px; }
  .faq { grid-template-columns: 1fr; }
  .faq__left { position: static; }
  .cta__inner { grid-template-columns: 1fr; }
  .globe-canvas { opacity: 0.45; left: -30%; width: 90vw; }
  .globe-copy { max-width: 100%; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .br-desk { display: inline; }
  .proof__grid { grid-template-columns: 1fr; gap: 34px; }
  .guarantee__points { grid-template-columns: 1fr; }
  .hero__title br { display: none; }
  .caps__grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .steps__cta { grid-column: 1; }
  .mock__row3 { grid-template-columns: 1fr; }
  .why { padding: 12vh var(--pad) 14vh; }
  .why__cards { min-height: 0; }
  .why-card { max-width: 100%; margin: 0 0 18px !important; transform: none !important; }
  .why-card:nth-child(odd) { transform: rotate(-1.5deg) !important; }
  .why-card:nth-child(even) { transform: rotate(1.5deg) !important; }
  .nav__actions .btn--ghost { display: none; }
  .price-card { aspect-ratio: auto; min-height: 240px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__col a { font-size: 24px; }
  .est__value { font-size: 48px; }
}

/* ============ HERO VIZ (right column graphic) ============ */
.hero__viz {
  position: absolute; z-index: 2; pointer-events: none;
  top: 150px; right: max(var(--pad), calc((100vw - 1280px) / 2));
  width: 460px; height: 480px;
}
.viz__glow {
  position: absolute; inset: -60px; border-radius: 50%;
  background: radial-gradient(circle at 55% 40%, rgba(25,114,245,0.22), rgba(120,70,220,0.12) 45%, transparent 70%);
  filter: blur(30px);
}
.viz__dash {
  position: absolute; top: 44px; left: 30px; width: 380px;
  background: linear-gradient(160deg, rgba(28,30,38,0.92), rgba(16,17,22,0.94));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px; padding: 20px 20px 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transform: rotate(1.5deg);
  animation: vizFloat 7s ease-in-out infinite;
}
.viz__dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.viz__dash-title { font-size: 13px; font-weight: 600; color: #e8eaf0; letter-spacing: 0.01em; }
.viz__dash-pill {
  font-family: var(--mono, "Roboto Mono", monospace); font-size: 10px; letter-spacing: 0.08em;
  color: #7ee2a8; background: rgba(52,199,123,0.12); border: 1px solid rgba(52,199,123,0.25);
  padding: 3px 9px; border-radius: 99px; display: inline-flex; align-items: center; gap: 5px;
}
.viz__dash-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #34c77b; box-shadow: 0 0 6px #34c77b; }
.viz__kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.viz__kpi { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 9px 11px; display: flex; flex-direction: column; gap: 2px; }
.viz__kpi small { font-size: 10px; color: #8c93a3; letter-spacing: 0.02em; }
.viz__kpi b { font-size: 19px; font-weight: 650; color: #fff; letter-spacing: -0.01em; }
.viz__kpi em { font-style: normal; font-size: 10px; }
.viz__kpi em.up { color: #7ee2a8; }
.viz__chart { display: block; width: 100%; height: 86px; margin-bottom: 12px; }
.viz__dot { animation: vizPulse 2.2s ease-in-out infinite; transform-origin: center; }
.viz__rows { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 10px; }
.viz__row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #aab1c0; padding: 4px 2px; }
.viz__row b { color: #fff; font-weight: 600; }
.viz__row em { font-style: normal; color: #7fb2ff; }
.viz__row-time { margin-left: auto; font-family: var(--mono, "Roboto Mono", monospace); font-size: 10px; color: #6b7280; }
.viz__face { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex: none; }
.viz__face--a { background: linear-gradient(135deg, #e57cae, #9a5fd9); }
.viz__face--b { background: linear-gradient(135deg, #5fa9d9, #4b6fd9); }

.viz__chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: linear-gradient(160deg, rgba(36,38,48,0.95), rgba(22,23,30,0.95));
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  padding: 10px 14px; box-shadow: 0 24px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.viz__chip-txt { display: flex; flex-direction: column; gap: 1px; }
.viz__chip-txt b { font-size: 12.5px; font-weight: 600; color: #fff; }
.viz__chip-txt small { font-size: 11px; color: #8c93a3; }
.viz__chip-ico { width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex: none; }
.viz__chip-ico--cal { background: rgba(52,199,123,0.15); color: #7ee2a8; border: 1px solid rgba(52,199,123,0.3); }
.viz__chip-ico--pay { background: rgba(25,114,245,0.18); color: #7fb2ff; border: 1px solid rgba(25,114,245,0.35); }
.viz__chip-ico--sms { background: rgba(154,95,217,0.18); color: #c9a2f2; border: 1px solid rgba(154,95,217,0.35); }
.viz__chip--book { top: 6px; right: 0; animation: vizFloat 6s ease-in-out infinite reverse; }
.viz__chip--pay { bottom: -8px; left: -14px; animation: vizFloat 8s ease-in-out 0.8s infinite; }
.viz__chip--sms { bottom: -52px; right: 12px; animation: vizFloat 7s ease-in-out 1.6s infinite reverse; }

@keyframes vizFloat { 0%,100% { transform: translateY(0) rotate(var(--tilt, 0deg)); } 50% { transform: translateY(-10px) rotate(var(--tilt, 0deg)); } }
.viz__dash { --tilt: 1.5deg; }
@keyframes vizPulse { 0%,100% { opacity: 1; r: 4; } 50% { opacity: 0.4; r: 5.5; } }

@media (max-width: 1180px) { .hero__viz { display: none; } }

/* Hero viz as generated image (frameless cutout) */
.hero__viz--img { width: min(44vw, 700px); height: auto; top: 130px; }

/* Reserve space so hero text never runs under the graphic */
@media (min-width: 1181px) {
  .hero__inner {
    max-width: none;
    padding-right: calc(max(var(--pad), (100vw - 1280px) / 2) + min(44vw, 700px) + 50px);
  }
}
@media (min-width: 1181px) and (max-width: 1500px) {
  .hero__sub br.br-desk { display: none; }
}
.viz__img {
  position: relative; display: block; width: 100%; height: auto;
  filter: drop-shadow(0 44px 70px rgba(0,0,0,0.55)) drop-shadow(0 0 46px rgba(25,114,245,0.22));
  animation: vizFloat 8s ease-in-out infinite;
}
