:root {
  --bg: #02050a;
  --surface: #030914;
  --telegram: #229ed9;
  --telegram-deep: #0967eb;
  --telegram-bright: #2cc6ff;
  --gold: #f6c56b;
  --gold-soft: #ffe1a7;
  --text: #ffffff;
  --muted: #aab9cc;
  --font: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(7, 91, 220, 0.32), transparent 34rem),
    radial-gradient(circle at 15% 15%, rgba(28, 173, 255, 0.08), transparent 24rem),
    #000000;
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

.capture-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.capture-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 620px);
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 65%, rgba(13, 111, 239, 0.22), transparent 38%),
    linear-gradient(to bottom, #000000 0%, #020711 48%, #031b3d 76%, #0755b8 100%);
  box-shadow: 0 0 100px rgba(4, 73, 174, 0.28);
}

.capture-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 32% -35% -24%;
  background: conic-gradient(from 110deg, transparent, rgba(25, 153, 255, 0.22), transparent 32%, rgba(246, 197, 107, 0.1), transparent 65%);
  filter: blur(42px);
  animation: aurora-spin 18s linear infinite;
}

.ambient-orb {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.42;
}

.ambient-orb-one {
  top: 18%;
  left: -22%;
  width: 240px;
  height: 240px;
  background: #087bdc;
  animation: orb-float-one 9s ease-in-out infinite alternate;
}

.ambient-orb-two {
  right: -30%;
  bottom: 8%;
  width: 280px;
  height: 280px;
  background: #073eac;
  animation: orb-float-two 11s ease-in-out infinite alternate;
}

.telegram-brand {
  position: relative;
  z-index: 10;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 5vw, 30px) 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.83));
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.telegram-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--telegram-bright), var(--telegram-deep));
  box-shadow: 0 0 0 7px rgba(35, 173, 244, 0.07), 0 12px 30px rgba(14, 143, 225, 0.34);
}

.telegram-mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(51, 193, 255, 0.25);
  border-radius: 50%;
  animation: logo-pulse 2.4s ease-out infinite;
}

.telegram-mark svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.telegram-name {
  font-size: clamp(1.8rem, 7vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #ceeaff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.access-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37d796;
  box-shadow: 0 0 0 4px rgba(55, 215, 150, 0.1), 0 0 12px rgba(55, 215, 150, 0.8);
}

.hero-media {
  position: relative;
  height: clamp(310px, 47svh, 470px);
  overflow: hidden;
  background: #03070c;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-media::before {
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent 30%, transparent 69%, rgba(0, 0, 0, 0.76)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 48%, #031933 96%, #052754 100%);
}

.hero-media::after {
  top: -45%;
  left: -28%;
  width: 24%;
  height: 190%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  filter: blur(10px);
  transform: rotate(18deg);
  animation: light-sweep 7s ease-in-out infinite;
}

.hero-media picture,
.hero-media picture::after,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media picture {
  position: relative;
  z-index: 1;
}

.hero-media img {
  object-fit: cover;
  object-position: center 82%;
  filter: saturate(0.82) contrast(1.07) brightness(0.88);
  transform: scale(1.19);
  transform-origin: center 82%;
  animation: hero-breathe 9s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(53, 172, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 172, 255, 0.075) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, transparent, #000 34%, #000 80%, transparent);
  transform: perspective(300px) rotateX(60deg) scale(1.45) translateY(20%);
  transform-origin: bottom;
}

.market-chart {
  position: absolute;
  z-index: 2;
  right: -6%;
  bottom: 6%;
  width: 112%;
  height: 68%;
  overflow: visible;
  opacity: 0.84;
  filter: drop-shadow(0 0 10px rgba(31, 181, 255, 0.52));
  pointer-events: none;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-stroke {
  fill: none;
  stroke: url(#chart-line);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: chart-draw 2.2s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chart-pulse {
  fill: var(--gold-soft);
  stroke: rgba(246, 197, 107, 0.3);
  stroke-width: 12;
  opacity: 0;
  animation: chart-point 1.8s 2.1s ease-out infinite;
}

#money-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.money-asset {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.money-asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.money-note {
  top: 19%;
  left: 3.5%;
  width: 78px;
  aspect-ratio: 2.37;
  overflow: hidden;
  border: 1px solid rgba(239, 240, 219, 0.34);
  border-radius: 3px;
  box-shadow: 0 13px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(137, 183, 154, 0.13);
  transform: rotate(-12deg);
  animation: money-note-float 5.2s ease-in-out infinite;
}

.money-note img {
  filter: saturate(0.78) contrast(1.05) brightness(0.88);
}

.money-bitcoin {
  top: 10%;
  right: 4.5%;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(243, 186, 55, 0.22));
  transform: rotate(12deg);
  animation: money-bitcoin-float 6.1s 0.5s ease-in-out infinite;
}

.market-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 210px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: linear-gradient(110deg, rgba(3, 16, 36, 0.86), rgba(7, 27, 53, 0.58));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.market-card-analysis {
  top: 43%;
  left: 3.5%;
  animation: card-float-left 5.4s ease-in-out infinite;
}

.market-card-risk {
  right: 3.5%;
  bottom: 25%;
  animation: card-float-right 6s 0.7s ease-in-out infinite;
}

.market-card-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #159cf1, #075bc4);
  box-shadow: 0 6px 18px rgba(14, 139, 232, 0.36);
}

.market-card-icon-gold {
  background: linear-gradient(145deg, #f1c266, #b97816);
  box-shadow: 0 6px 18px rgba(229, 167, 54, 0.28);
}

.market-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.market-card small {
  color: #85d8ff;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.market-card-risk small {
  color: var(--gold-soft);
}

.market-card strong {
  overflow: hidden;
  margin-top: 1px;
  font-size: 0.7rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.official-tag {
  position: absolute;
  z-index: 7;
  right: 50%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(2, 12, 28, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  transform: translateX(50%);
}

.official-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--telegram-bright);
  box-shadow: 0 0 0 5px rgba(37, 183, 243, 0.12), 0 0 14px rgba(37, 183, 243, 0.58);
}

.official-tag div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.official-tag strong {
  font-size: 0.78rem;
  line-height: 1.1;
}

.official-tag div span {
  overflow: hidden;
  color: #b9d6ef;
  font-size: 0.61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-tape {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  height: 27px;
  overflow: hidden;
  border-block: 1px solid rgba(67, 189, 255, 0.16);
  background: rgba(2, 14, 30, 0.78);
  backdrop-filter: blur(10px);
}

.market-tape-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
  color: #bce9ff;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: tape-scroll 18s linear infinite;
}

.market-tape-track i {
  color: var(--gold);
  font-size: 0.4rem;
  font-style: normal;
}

.conversion-panel {
  position: relative;
  z-index: 9;
  padding: 15px clamp(18px, 6vw, 38px) max(17px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 0, rgba(23, 142, 247, 0.24), transparent 45%),
    linear-gradient(to bottom, rgba(3, 25, 58, 0.94), rgba(6, 67, 146, 0.82));
  text-align: center;
}

.conversion-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 205, 255, 0.75), transparent);
  transform: translateX(-50%);
}

.value-pills {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 9px;
}

.value-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #c9eaff;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.value-pills i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(246, 197, 107, 0.8);
}

.conversion-panel h1 {
  max-width: 520px;
  margin: 0 auto 14px;
  font-size: clamp(1.2rem, 5vw, 1.55rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.conversion-panel h1 span {
  color: #49d0ff;
  font-weight: 800;
  text-shadow: 0 0 22px rgba(35, 181, 255, 0.32);
}

.conversion-panel h1 span:last-child {
  color: var(--gold-soft);
  text-shadow: 0 0 22px rgba(246, 197, 107, 0.2);
}

.main-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(100deg, #075ee5 0%, #119df4 46%, #0871ed 100%);
  background-size: 180% 100%;
  color: #ffffff;
  font-size: clamp(0.76rem, 3.25vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow:
    0 15px 30px rgba(0, 70, 201, 0.38),
    0 0 0 6px rgba(20, 143, 244, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  animation: cta-gradient 4s ease-in-out infinite;
}

.main-cta > *,
.lead-submit > * {
  pointer-events: none;
}

.main-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -30%;
  width: 20%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  filter: blur(2px);
  transform: rotate(18deg);
  animation: cta-shine 3.8s ease-in-out infinite;
}

.cta-label {
  min-width: 0;
}

.cta-arrow {
  flex: 0 0 auto;
  font-size: 1.35em;
  line-height: 1;
  animation: arrow-nudge 1.6s ease-in-out infinite;
}

.main-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 34px rgba(0, 70, 201, 0.45),
    0 0 0 7px rgba(20, 143, 244, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.main-cta:focus-visible,
.store-links a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.cta-trust {
  margin: 7px 0 0;
  color: rgba(230, 244, 255, 0.78);
  font-size: 0.64rem;
}

.cta-trust span {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
  margin-right: 3px;
  border-radius: 50%;
  background: rgba(55, 215, 150, 0.14);
  color: #70efb9;
  font-size: 0.55rem;
}

.download-label {
  margin: 9px 0 7px;
  color: #e8f2ff;
  font-size: 0.68rem;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.store-links a {
  width: min(43%, 154px);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #e9f0f7);
  color: #111111;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.05;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, filter 180ms ease;
}

.store-links a:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.store-links a > span:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}

.store-links small {
  font-size: 0.47rem;
  font-weight: 500;
}

.store-symbol {
  font-size: 1rem;
}

.play-symbol {
  color: #1aa7ec;
}

.risk-note {
  max-width: 470px;
  margin: 8px auto 0;
  color: rgba(235, 244, 255, 0.61);
  font-size: 0.55rem;
  line-height: 1.3;
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  --iti-border-color: rgba(103, 197, 255, 0.24);
  --iti-country-selector-bg: #071426;
  --iti-hover-color: rgba(41, 167, 245, 0.15);
  --iti-icon-color: #78cfff;
  inset: 0;
  width: min(calc(100% - 28px), 530px);
  max-width: none;
  max-height: min(94svh, 790px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
}

.lead-modal:not([open]) {
  display: none;
}

.lead-modal[open] {
  animation: lead-modal-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead-modal::backdrop {
  background:
    radial-gradient(circle at 50% 43%, rgba(13, 113, 242, 0.3), transparent 34rem),
    rgba(0, 4, 10, 0.82);
  backdrop-filter: blur(11px) saturate(0.8);
  animation: lead-backdrop-in 260ms ease-out both;
}

.lead-modal-shell {
  position: relative;
  isolation: isolate;
  max-height: min(94svh, 790px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(103, 197, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -8%, rgba(28, 174, 255, 0.24), transparent 32%),
    radial-gradient(circle at 92% 68%, rgba(17, 105, 239, 0.14), transparent 38%),
    linear-gradient(155deg, rgba(8, 20, 40, 0.99), rgba(2, 8, 18, 0.995) 56%, rgba(4, 18, 40, 0.995));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 70px rgba(12, 111, 239, 0.22);
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 184, 255, 0.45) transparent;
}

.lead-modal-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(77, 181, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 181, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

.lead-modal-glow {
  position: absolute;
  z-index: -1;
  top: -120px;
  left: 50%;
  width: 330px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(22, 157, 255, 0.22);
  filter: blur(55px);
  transform: translateX(-50%);
}

.lead-modal-close {
  position: absolute;
  z-index: 10;
  top: 13px;
  right: 13px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(231, 243, 255, 0.75);
  font: 300 1.65rem/1 var(--font);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lead-modal-close:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  transform: rotate(4deg);
}

.lead-form-view {
  padding: 24px clamp(20px, 6vw, 34px) 25px;
  text-align: center;
}

.lead-modal-emblem {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 1px auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, #35c7ff, #0870ed 72%);
  box-shadow:
    0 0 0 8px rgba(30, 164, 248, 0.08),
    0 14px 35px rgba(0, 104, 226, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.lead-modal-emblem::before,
.lead-modal-emblem::after,
.lead-modal-ring {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(67, 192, 255, 0.25);
  border-radius: 50%;
  animation: lead-ring 2.3s ease-out infinite;
}

.lead-modal-emblem::after {
  animation-delay: 0.78s;
}

.lead-modal-ring {
  animation-delay: 1.56s;
}

.lead-modal-plane {
  color: #ffffff;
  font: 800 2.35rem/1 system-ui, sans-serif;
  text-shadow: 0 4px 12px rgba(0, 43, 124, 0.28);
  transform: translate(-1px, 1px) rotate(-36deg);
}

.lead-modal-emblem > i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 12px rgba(246, 197, 107, 0.9);
  animation: lead-spark 2.1s ease-in-out infinite;
}

.lead-modal-emblem > i:nth-of-type(1) { top: 4px; right: -12px; }
.lead-modal-emblem > i:nth-of-type(2) { bottom: 2px; left: -11px; animation-delay: 0.6s; }
.lead-modal-emblem > i:nth-of-type(3) { right: -20px; bottom: 16px; animation-delay: 1.2s; }

.lead-modal-eyebrow {
  margin: 0 0 7px;
  color: #78d8ff;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead-modal-eyebrow span {
  margin-inline: 4px;
  color: #54e2a5;
}

.lead-form-view h2,
.lead-success-view h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 6.7vw, 2.05rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.lead-modal-description {
  max-width: 440px;
  margin: 10px auto 14px;
  color: #b9c8db;
  font-size: 0.85rem;
  line-height: 1.43;
  text-wrap: pretty;
}

.lead-progress {
  --lead-progress: 0%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
}

.lead-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.42);
}

.lead-progress-track i {
  width: var(--lead-progress);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #168ef6, #28c4ff 62%, #54e2a5);
  box-shadow: 0 0 13px rgba(35, 187, 255, 0.7);
  transition: width 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-progress small {
  color: #8295ac;
  font-size: 0.6rem;
  white-space: nowrap;
}

.lead-progress b {
  color: #d8efff;
}

.lead-capture-form {
  display: grid;
  gap: 8px;
  text-align: left;
}

.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-field {
  display: grid;
  grid-template-columns: 1fr;
  text-align: left;
}

.lead-field > label {
  margin: 0 0 5px 3px;
  color: #edf7ff;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead-input-shell {
  position: relative;
  min-height: 52px;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 181, 218, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-input-shell:focus-within {
  border-color: rgba(53, 185, 255, 0.76);
  background: rgba(15, 100, 177, 0.12);
  box-shadow: 0 0 0 4px rgba(31, 159, 244, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.lead-input-shell > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 8px;
  background: rgba(37, 166, 244, 0.12);
  color: #5fceff;
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-input-shell input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 9px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: 500 1rem/1 var(--font);
  caret-color: #37c2ff;
}

.lead-input-shell input::placeholder {
  color: #6f8197;
  opacity: 1;
}

.lead-phone-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
}

.lead-country-code-shell {
  position: relative;
  min-width: 0;
  min-height: 52px;
  display: grid;
  grid-template-columns: 38px 13px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(142, 181, 218, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-country-code-shell:focus-within {
  border-color: rgba(53, 185, 255, 0.76);
  background: rgba(15, 100, 177, 0.12);
  box-shadow: 0 0 0 4px rgba(31, 159, 244, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.lead-country-flag {
  position: relative;
  width: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 7px;
  border: 1px solid rgba(67, 183, 248, 0.1);
  border-radius: 9px;
  background: rgba(37, 166, 244, 0.1);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.lead-country-flag::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border: 1px solid rgba(78, 204, 255, 0.28);
  border-radius: 10px;
  opacity: 0;
}

.lead-country-flag .iti__flag {
  transform: scale(1.14);
  transform-origin: center;
  transition: filter 180ms ease, opacity 180ms ease;
}

.lead-country-flag .iti__globe {
  opacity: 0.62;
  filter: brightness(1.45) saturate(0.55);
}

.lead-country-code-shell.has-phone-country .lead-country-flag {
  border-color: rgba(79, 210, 255, 0.28);
  background: linear-gradient(145deg, rgba(34, 174, 242, 0.2), rgba(12, 101, 209, 0.14));
  box-shadow: 0 7px 18px rgba(0, 98, 219, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-country-code-shell.is-country-entering .lead-country-flag::after {
  animation: phone-country-ring 580ms ease-out both;
}

.lead-country-code-shell.is-country-entering .iti__flag:not(.iti__globe) {
  animation: phone-flag-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead-country-plus {
  justify-self: end;
  color: #75d4ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-country-code-shell input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 6px 0 2px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: 600 0.98rem/1 var(--font);
  letter-spacing: 0.02em;
  caret-color: #37c2ff;
}

.lead-country-code-shell input::placeholder {
  color: #6f8197;
  opacity: 1;
}

.lead-phone-input-shell {
  grid-template-columns: minmax(0, 1fr) 34px;
}

.lead-phone-input-shell > input,
.lead-phone-input-shell .iti {
  grid-column: 1;
  grid-row: 1;
}

.lead-phone-input-shell .iti {
  width: 100%;
  height: 50px;
  display: block;
}

.lead-phone-input-shell .iti__tel-input,
.lead-phone-input-shell > input {
  padding-right: 9px !important;
  padding-left: 9px !important;
  direction: ltr;
}

.lead-phone-input-shell .lead-field-check {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
}

.lead-field.has-phone-country .lead-field-help {
  color: #6dcdf5;
}

.lead-field-check {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: rgba(75, 226, 166, 0.14);
  color: #58e5ac;
  font-size: 0.67rem;
  font-style: normal;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 160ms ease, transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-field.is-valid .lead-input-shell,
.lead-field.is-valid .lead-country-code-shell {
  border-color: rgba(76, 225, 168, 0.4);
}

.lead-field.is-valid .lead-field-check {
  opacity: 1;
  transform: scale(1);
}

.lead-field.is-invalid .lead-input-shell,
.lead-field.is-invalid .lead-country-code-shell {
  border-color: rgba(255, 101, 116, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 73, 91, 0.08);
}

.lead-field-help,
.lead-field-error {
  min-height: 15px;
  grid-column: 1;
  grid-row: 3;
  margin: 3px 3px 0;
  font-size: 0.61rem;
  line-height: 1.25;
}

.lead-field-help {
  color: #788ba2;
}

.lead-field-error {
  color: #ff8995;
  visibility: hidden;
}

.lead-field.is-invalid .lead-field-help {
  visibility: hidden;
}

.lead-field.is-invalid .lead-field-error {
  visibility: visible;
}

.lead-submit {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  margin-top: 1px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(105deg, #075fdc, #1399ee 48%, #0871e8);
  background-size: 180% 100%;
  color: #ffffff;
  font: 800 clamp(0.73rem, 3.15vw, 0.88rem)/1.15 var(--font);
  letter-spacing: 0.025em;
  text-transform: uppercase;
  box-shadow: 0 13px 28px rgba(0, 82, 211, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  filter: saturate(0.82) brightness(0.88);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 250ms ease;
  animation: cta-gradient 4s ease-in-out infinite;
}

.lead-submit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -30%;
  width: 24%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  filter: blur(2px);
  transform: rotate(18deg);
  animation: cta-shine 3.6s ease-in-out infinite;
}

.lead-submit.is-ready {
  filter: none;
  box-shadow:
    0 16px 32px rgba(0, 93, 224, 0.42),
    0 0 0 5px rgba(24, 155, 247, 0.09),
    0 0 30px rgba(31, 166, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);
}

.lead-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.lead-submit:disabled {
  cursor: wait;
}

.lead-submit-arrow {
  flex: 0 0 auto;
  font-size: 1.25em;
  animation: arrow-nudge 1.6s ease-in-out infinite;
}

.lead-submit-loader {
  width: 19px;
  height: 19px;
  display: none;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: lead-loader 700ms linear infinite;
}

.lead-submit.is-loading .lead-submit-arrow {
  display: none;
}

.lead-submit.is-loading .lead-submit-loader {
  display: block;
}

.lead-submit-note {
  margin: 0;
  color: #9fb3c9;
  font-size: 0.63rem;
  text-align: center;
}

.lead-submit-note span {
  color: #58e5ac;
}

.lead-form-status {
  min-height: 0;
  margin: -1px 0 0;
  color: #81d8ff;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.lead-form-status:empty {
  display: none;
}

.lead-form-status.is-error {
  color: #ff909b;
}

.lead-submit-recovery {
  text-align: center;
}

.lead-submit-recovery a {
  display: inline-block;
  padding: 5px;
  color: #79d9ff;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-consent {
  max-width: 430px;
  margin: 0 auto;
  color: #647990;
  font-size: 0.56rem;
  line-height: 1.35;
  text-align: center;
}

.lead-success-view {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 46px clamp(22px, 7vw, 42px) 38px;
  text-align: center;
}

.lead-modal [hidden] {
  display: none !important;
}

.lead-success-burst {
  position: relative;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 226, 162, 0.15), transparent 67%);
}

.lead-success-burst::before,
.lead-success-burst::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(78, 231, 174, 0.28);
  border-radius: 50%;
  animation: lead-success-ring 1.7s ease-out infinite;
}

.lead-success-burst::before { inset: 11px; }
.lead-success-burst::after { inset: -6px; animation-delay: 0.52s; }

.lead-success-check {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: linear-gradient(145deg, #62ebb6, #15a976);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(18, 185, 124, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  animation: lead-check-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lead-success-burst > i {
  --spark-x: 0px;
  --spark-y: -70px;
  --spark-rotate: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 12px;
  border-radius: 2px;
  background: #42c8ff;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--spark-rotate));
  animation: lead-confetti 1.1s 170ms cubic-bezier(0.18, 0.89, 0.32, 1.2) both;
}

.lead-success-burst > i:nth-of-type(1) { --spark-x: 4px; --spark-y: -82px; background: #f6c56b; }
.lead-success-burst > i:nth-of-type(2) { --spark-x: 47px; --spark-y: -61px; --spark-rotate: 35deg; background: #4de2a7; }
.lead-success-burst > i:nth-of-type(3) { --spark-x: 79px; --spark-y: -18px; --spark-rotate: 70deg; background: #42c8ff; }
.lead-success-burst > i:nth-of-type(4) { --spark-x: 68px; --spark-y: 37px; --spark-rotate: 105deg; background: #f6c56b; }
.lead-success-burst > i:nth-of-type(5) { --spark-x: 28px; --spark-y: 73px; --spark-rotate: 145deg; background: #4de2a7; }
.lead-success-burst > i:nth-of-type(6) { --spark-x: -28px; --spark-y: 73px; --spark-rotate: 190deg; background: #42c8ff; }
.lead-success-burst > i:nth-of-type(7) { --spark-x: -68px; --spark-y: 36px; --spark-rotate: 220deg; background: #f6c56b; }
.lead-success-burst > i:nth-of-type(8) { --spark-x: -78px; --spark-y: -18px; --spark-rotate: 255deg; background: #4de2a7; }
.lead-success-burst > i:nth-of-type(9) { --spark-x: -48px; --spark-y: -61px; --spark-rotate: 300deg; background: #42c8ff; }
.lead-success-burst > i:nth-of-type(10) { --spark-x: 0px; --spark-y: -91px; --spark-rotate: 340deg; background: #ffffff; }

.lead-success-view .lead-modal-eyebrow {
  color: #59e6ad;
}

.lead-success-view > p:not(.lead-modal-eyebrow) {
  max-width: 370px;
  margin: 11px auto 19px;
  color: #afc1d5;
  font-size: 0.9rem;
  line-height: 1.45;
}

.lead-success-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(77, 226, 169, 0.16);
  border-radius: 999px;
  background: rgba(77, 226, 169, 0.07);
  color: #b9f4dc;
  font-size: 0.69rem;
}

.lead-success-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4de2a7;
  box-shadow: 0 0 0 4px rgba(77, 226, 167, 0.1), 0 0 13px rgba(77, 226, 167, 0.8);
  animation: lead-status-pulse 1.2s ease-in-out infinite;
}

.lead-success-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(105deg, #0868e6, #1aa7f2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 13px 30px rgba(0, 90, 219, 0.32);
  transition: transform 180ms ease, filter 180ms ease;
}

.lead-success-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.lead-modal-close:focus-visible,
.lead-input-shell:has(input:focus-visible),
.lead-submit:focus-visible,
.lead-submit-recovery a:focus-visible,
.lead-success-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@keyframes lead-modal-in {
  from { opacity: 0; transform: translateY(22px) scale(0.965); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lead-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lead-ring {
  0% { opacity: 0.7; transform: scale(0.78); }
  75%, 100% { opacity: 0; transform: scale(1.3); }
}

@keyframes lead-spark {
  0%, 100% { opacity: 0.35; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes lead-loader {
  to { transform: rotate(1turn); }
}

@keyframes lead-check-in {
  from { opacity: 0; transform: scale(0.45) rotate(-16deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes lead-success-ring {
  0% { opacity: 0.75; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.38); }
}

@keyframes lead-confetti {
  0% { opacity: 0; translate: 0 0; scale: 0.45; }
  22% { opacity: 1; }
  100% { opacity: 0; translate: var(--spark-x) var(--spark-y); scale: 1; }
}

@keyframes lead-status-pulse {
  50% { opacity: 0.55; transform: scale(0.78); }
}

@keyframes phone-flag-in {
  0% { opacity: 0; transform: translateY(6px) scale(0.72) rotate(-5deg); }
  58% { opacity: 1; transform: translateY(-1px) scale(1.34) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1.24) rotate(0); }
}

@keyframes phone-country-ring {
  0% { opacity: 0.85; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.32); }
}

@keyframes aurora-spin {
  to { transform: rotate(1turn); }
}

@keyframes orb-float-one {
  to { transform: translate(34px, 45px) scale(1.15); }
}

@keyframes orb-float-two {
  to { transform: translate(-30px, -36px) scale(0.9); }
}

@keyframes logo-pulse {
  0% { opacity: 0.7; transform: scale(0.82); }
  65%, 100% { opacity: 0; transform: scale(1.34); }
}

@keyframes hero-breathe {
  to { transform: scale(1.225); filter: saturate(0.9) contrast(1.08) brightness(0.92); }
}

@keyframes light-sweep {
  0%, 12% { left: -32%; opacity: 0; }
  28% { opacity: 1; }
  58%, 100% { left: 125%; opacity: 0; }
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-point {
  0% { opacity: 0; stroke-width: 16; }
  20% { opacity: 1; }
  100% { opacity: 0; stroke-width: 2; }
}

@keyframes money-note-float {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-12px) rotate(-7deg); }
}

@keyframes money-bitcoin-float {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(13px) rotate(4deg); }
}

@keyframes card-float-left {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(5px, -8px, 0) rotate(1deg); }
}

@keyframes card-float-right {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(-5px, 8px, 0) rotate(-1deg); }
}

@keyframes tape-scroll {
  to { transform: translateX(-50%); }
}

@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes cta-shine {
  0%, 18% { left: -30%; opacity: 0; }
  30% { opacity: 0.85; }
  58%, 100% { left: 120%; opacity: 0; }
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (min-width: 621px) {
  .capture-page {
    padding-block: 24px;
  }

  .capture-card {
    min-height: auto;
    border: 0;
    border-radius: 28px;
  }
}

@media (max-width: 440px) {
  .access-badge {
    padding-inline: 8px;
    font-size: 0.52rem;
  }

  .market-card {
    max-width: 180px;
  }

  .market-card-analysis {
    left: -1%;
  }

  .market-card-risk {
    right: -1%;
  }
}

@media (max-width: 380px) {
  .telegram-brand {
    min-height: 74px;
    gap: 9px;
    padding: 10px 14px 8px;
  }

  .telegram-mark {
    width: 44px;
    height: 44px;
  }

  .telegram-mark svg {
    width: 27px;
    height: 27px;
  }

  .telegram-name {
    font-size: 1.75rem;
  }

  .access-badge {
    gap: 5px;
    padding: 6px 7px;
    font-size: 0.47rem;
    letter-spacing: 0.07em;
  }

  .hero-media {
    height: 285px;
  }

  .money-note {
    left: 3%;
    width: 68px;
  }

  .money-bitcoin {
    right: 3%;
    width: 49px;
    height: 49px;
  }

  .market-card {
    max-width: 164px;
    gap: 7px;
    padding: 6px 8px 6px 6px;
  }

  .market-card-icon {
    width: 28px;
    height: 28px;
  }

  .market-card small {
    font-size: 0.44rem;
  }

  .market-card strong {
    font-size: 0.6rem;
  }

  .market-card-analysis {
    top: 46%;
  }

  .market-card-risk {
    bottom: 28%;
  }

  .official-tag {
    bottom: 36px;
    padding: 7px 10px;
  }

  .conversion-panel {
    padding: 12px 14px max(14px, env(safe-area-inset-bottom));
  }

  .value-pills {
    margin-bottom: 7px;
  }

  .conversion-panel h1 {
    margin-bottom: 11px;
    font-size: 1.08rem;
    line-height: 1.23;
  }

  .main-cta {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }

  .cta-trust {
    margin-top: 6px;
    font-size: 0.59rem;
  }

  .download-label {
    margin-top: 7px;
    font-size: 0.61rem;
  }

  .store-links a {
    width: 46%;
    min-height: 37px;
    font-size: 0.68rem;
  }

  .risk-note {
    margin-top: 6px;
    font-size: 0.51rem;
  }
}

@media (max-width: 340px) {
  .access-badge {
    width: 28px;
    height: 28px;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .access-badge i {
    width: 8px;
    height: 8px;
  }

  .value-pills span {
    padding-inline: 7px;
    font-size: 0.54rem;
  }
}

@media (max-width: 620px) {
  .lead-modal {
    width: 100%;
    max-height: 94svh;
    margin: auto auto 0;
  }

  .lead-modal[open] {
    animation-name: lead-modal-mobile-in;
  }

  .lead-modal-shell {
    max-height: 94svh;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 27px 27px 0 0;
  }

  .lead-modal-shell::after {
    content: "";
    position: absolute;
    z-index: 12;
    top: 8px;
    left: 50%;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.19);
    transform: translateX(-50%);
  }

  .lead-form-view {
    padding-top: 22px;
  }

  .lead-modal-close {
    top: 15px;
  }

  .lead-success-view {
    min-height: min(570px, 82svh);
  }
}

@media (max-width: 380px) {
  .lead-form-view {
    padding: 18px 15px 17px;
  }

  .lead-modal-close {
    top: 12px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lead-modal-emblem {
    width: 61px;
    height: 61px;
    margin-bottom: 11px;
  }

  .lead-modal-plane {
    font-size: 2rem;
  }

  .lead-modal-eyebrow {
    font-size: 0.59rem;
  }

  .lead-form-view h2,
  .lead-success-view h2 {
    font-size: 1.43rem;
  }

  .lead-modal-description {
    margin-block: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .lead-progress {
    margin-bottom: 8px;
  }

  .lead-capture-form {
    gap: 5px;
  }

  .lead-input-shell {
    min-height: 48px;
  }

  .lead-input-shell input {
    height: 46px;
  }

  .lead-phone-input-shell .iti {
    height: 46px;
  }

  .lead-phone-row {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 7px;
  }

  .lead-country-code-shell {
    min-height: 48px;
  }

  .lead-country-code-shell input {
    height: 46px;
    font-size: 0.9rem;
  }

  .lead-country-flag {
    width: 28px;
    height: 32px;
    margin-left: 6px;
  }

  .lead-submit {
    min-height: 50px;
  }

  .lead-consent {
    font-size: 0.52rem;
  }
}

@keyframes lead-modal-mobile-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

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

  .chart-stroke {
    stroke-dashoffset: 0;
  }

}

/* COMPLIANCE FOOTER */
.compliance-footer {
  width: 100%;
  padding: 32px 16px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 48px;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
}

.fb-disclaimer {
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.business-info {
  line-height: 1.4;
}
