:root {
  --bg: #07131f;
  --bg-deep: #0a1a2c;
  --bg-soft: #11253b;
  --panel: rgba(11, 27, 45, 0.82);
  --panel-strong: rgba(11, 27, 45, 0.94);
  --line: rgba(146, 180, 220, 0.16);
  --line-strong: rgba(146, 180, 220, 0.3);
  --text: #eef5ff;
  --muted: #a8bccf;
  --accent: #93f0c4;
  --accent-strong: #89d7ff;
  --accent-warm: #ffd08f;
  --danger-soft: #ff9d9d;
  --shadow: 0 26px 80px rgba(4, 10, 18, 0.34);
  --radius: 28px;
  --radius-sm: 18px;
  --wrap: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(137, 215, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(147, 240, 196, 0.12), transparent 28%),
    linear-gradient(180deg, #07131f 0%, #0a1727 40%, #0d1d31 100%);
  color: var(--text);
  font-family: "Avenir Next", "Satoshi", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 72%);
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

.shell {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7, 19, 31, 0.74);
  border-bottom: 1px solid rgba(146, 180, 220, 0.08);
}

.site-header.is-scrolled {
  background: rgba(7, 19, 31, 0.92);
  border-bottom-color: rgba(146, 180, 220, 0.18);
}

.topbar {
  width: var(--wrap);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, rgba(137, 215, 255, 0.38), rgba(147, 240, 196, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-mark::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-top-color: transparent;
  transform: rotate(32deg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.language-switcher {
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.language-switcher a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
}

.language-switcher a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.button-primary {
  color: #05111a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(137, 215, 255, 0.24);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-ghost {
  background: transparent;
}

.button:hover,
.button:focus-visible,
.deal-card:hover,
.deal-card:focus-within,
.trust-card:hover,
.route-summary-card:hover,
.upsell-card:hover,
.offer-row:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-link:focus-visible,
.brand:focus-visible,
.language-switcher a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.hero {
  position: relative;
  padding: 1.5rem 0 5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}

.hero::before {
  width: 20rem;
  height: 20rem;
  top: 4rem;
  right: -5rem;
  background: radial-gradient(circle, rgba(137, 215, 255, 0.2), transparent 72%);
}

.hero::after {
  width: 16rem;
  height: 16rem;
  left: -3rem;
  bottom: 1rem;
  background: radial-gradient(circle, rgba(147, 240, 196, 0.18), transparent 72%);
}

.hero-grid,
.split-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy h1,
.signal-board h2,
.section-heading h2,
.telegram-preview h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Book Antiqua", "Palatino Linotype", serif;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-body,
.section-heading p,
.tracker-help,
.tracker-status,
.footer-copy,
.footer-note p,
.reason-item p,
.trust-card p,
.telegram-preview p,
.offer-row p,
.faq-item p,
.route-summary-card p,
.micro-links,
.bridge-shell p {
  color: var(--muted);
}

.hero-body {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.7vw, 1.2rem);
  max-width: 42rem;
}

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

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

.hero-kpis,
.hero-stats,
.tracker-grid,
.deal-grid,
.route-summary-grid,
.trust-grid,
.upsell-grid,
.faq-list,
.reason-list {
  display: grid;
  gap: 1rem;
}

.hero-kpis div,
.hero-panel,
.route-summary-panel,
.deal-card,
.trust-card,
.route-summary-card,
.upsell-card,
.offer-row,
.faq-item,
.signal-board,
.telegram-preview {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 31, 50, 0.82), rgba(10, 24, 40, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel,
.route-summary-panel,
.signal-board,
.telegram-preview {
  border-radius: calc(var(--radius) + 2px);
}

.signal-board,
.route-summary-panel {
  padding: 1.5rem;
}

.signal-board h2 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.signal-board p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.hero-stats {
  margin-top: 1.5rem;
}

.stat-block {
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-block strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.tracker-grid label {
  display: grid;
  gap: 0.45rem;
}

.tracker-grid span,
.metric-label,
.hero-kpis span {
  color: #dce8f7;
  font-size: 0.88rem;
  font-weight: 700;
}

.tracker-grid input,
.tracker-grid select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.tracker-grid option {
  color: #08121f;
}

.tracker-help,
.tracker-status {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.tracker-status.is-success {
  color: var(--accent);
}

.section {
  padding: 4.8rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.9rem;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

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

.deal-card,
.trust-card,
.route-summary-card,
.upsell-card,
.offer-row {
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.deal-card {
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(137, 215, 255, 0.86), rgba(147, 240, 196, 0.86), transparent);
  opacity: 0.9;
}

.deal-card.score-elite {
  border-color: rgba(255, 208, 143, 0.35);
}

.deal-card-top,
.price-block,
.savings-row,
.offer-row,
.hero-kpis {
  display: flex;
  gap: 1rem;
}

.deal-card-top,
.savings-row {
  justify-content: space-between;
  align-items: center;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.score-elite .score-pill {
  color: var(--accent-warm);
}

.score-strong .score-pill {
  color: var(--accent);
}

.score-solid .score-pill {
  color: var(--accent-strong);
}

.score-watch .score-pill {
  color: var(--danger-soft);
}

.deal-offers {
  color: var(--muted);
  font-size: 0.85rem;
}

.route-title {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}

.price-block {
  margin-top: 1.3rem;
  justify-content: space-between;
  align-items: end;
}

.price-block strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.comparison-block {
  text-align: right;
}

.comparison-block span,
.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.comparison-block strong {
  font-size: 1.2rem;
}

.savings-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.savings-row strong {
  color: var(--accent);
}

.savings-percent {
  color: var(--accent-warm);
  font-weight: 700;
}

.card-actions {
  margin-top: 1.2rem;
}

.micro-links {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.micro-links a {
  color: #dbe7f6;
}

.route-summary-card h3,
.offer-row h3,
.upsell-card h3,
.trust-card h3,
.telegram-preview h3 {
  margin: 0.75rem 0 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-kpis {
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.hero-kpis div {
  flex: 1 1 220px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
}

.hero-kpis strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.15rem;
}

.route-grid-shell {
  align-items: start;
}

.telegram-preview {
  margin-top: 1rem;
  padding: 1.2rem;
}

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

.reason-item {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reason-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.offer-list {
  display: grid;
  gap: 1rem;
}

.offer-row {
  flex-direction: column;
}

.offer-row.is-best {
  border-color: rgba(147, 240, 196, 0.28);
}

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

.trust-grid,
.upsell-grid,
.route-summary-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.trust-card,
.upsell-card,
.route-summary-card {
  height: 100%;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent-strong);
  font-size: 1.2rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
}

.site-footer {
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.footer-brand {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-copy,
.footer-note p {
  margin: 0.45rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.retarget-banner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 208, 143, 0.09);
}

.retarget-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 0.7rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.retarget-inner p {
  margin: 0;
  color: #ffe6c3;
}

.retarget-dismiss {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
}

.language-ready-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.language-ready-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.language-ready-card strong {
  display: block;
}

.language-ready-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.language-ready-card.is-live span {
  color: var(--accent);
}

.bridge-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.bridge-shell {
  width: min(720px, calc(100vw - 2rem));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

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

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

@media (min-width: 720px) {
  .header-link,
  .language-switcher {
    display: inline-flex;
  }

  .tracker-grid,
  .hero-stats,
  .deal-grid,
  .route-summary-grid,
  .trust-grid,
  .upsell-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .offer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: calc(100svh - 76px);
    align-items: center;
  }

  .route-grid-shell {
    align-items: start;
  }

  .hero-panel,
  .route-summary-panel {
    position: sticky;
    top: 5.75rem;
  }

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

  .route-summary-grid,
  .trust-grid,
  .upsell-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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