@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #040d19;
  --bg-2: #0a2137;
  --card: rgba(11, 28, 47, 0.76);
  --card-strong: rgba(7, 21, 37, 0.94);
  --line: rgba(148, 201, 255, 0.18);
  --line-strong: rgba(84, 204, 255, 0.35);
  --text: #f5f9ff;
  --muted: #aab9cb;
  --soft: #d9e7f8;
  --blue: #108cff;
  --cyan: #48ebff;
  --green: #38e08a;
  --gold: #ffd155;
  --danger: #ff6b6b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 140, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 88% 10%, rgba(72, 235, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 50% 100%, rgba(255, 209, 85, 0.06), transparent 24rem),
    linear-gradient(145deg, #020812 0%, var(--bg) 44%, #08233b 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 88px;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 76px 0;
}

.section-compact {
  padding-top: 28px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  z-index: 999;
  background: var(--cyan);
  color: #03111e;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 11, 20, 0.72);
  backdrop-filter: blur(22px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 11, 20, 0.94);
  border-color: rgba(72, 235, 255, 0.22);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  display: block;
  width: clamp(142px, 28vw, 206px);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  filter: saturate(1.05);
}

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

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 3px;
  line-height: 1.3;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(3) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  left: 16px;
  right: 16px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 20, 36, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.primary-nav a {
  color: var(--soft);
  font-weight: 800;
  font-size: 0.94rem;
  padding: 12px 14px;
  border-radius: 14px;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-cta {
  text-align: center;
  color: #03111e !important;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 12px 26px rgba(57, 229, 143, 0.18);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 8%;
  right: -180px;
  background: radial-gradient(circle, rgba(67, 230, 255, 0.16), transparent 62%);
}

.hero-glow-two {
  width: 340px;
  height: 340px;
  bottom: 4%;
  left: -170px;
  background: radial-gradient(circle, rgba(57, 229, 143, 0.12), transparent 64%);
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(67, 230, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(67, 230, 255, 0.08);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(57, 229, 143, 0.12);
}

.hero h1,
.section-heading h2,
.promo-panel h2,
.bd-panel h2,
.final-card h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 16px 0 0;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(2.7rem, 13vw, 5.6rem);
  max-width: 820px;
}

.hero h1 span,
.promo-panel h2 span,
.final-card h2 span {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(67, 230, 255, 0.28);
}

.hero-subtitle {
  color: var(--soft);
  font-size: clamp(1.02rem, 4vw, 1.25rem);
  line-height: 1.65;
  max-width: 650px;
  margin: 20px 0 0;
}

.hero-actions,
.final-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  --btn-bg: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 16px;
  color: var(--text);
  background: var(--btn-bg);
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn:focus-visible,
.copy-pill:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(67, 230, 255, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  color: #03111e;
  background: linear-gradient(135deg, #58f0b0 0%, var(--cyan) 45%, #2d95ff 100%);
  box-shadow: 0 18px 36px rgba(72, 235, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-secondary {
  color: #06111f;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  box-shadow: 0 16px 34px rgba(255, 209, 102, 0.18);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(72, 235, 255, 0.08);
}

.btn-xl {
  min-height: 58px;
  border-radius: 18px;
  font-size: 1.02rem;
}

.btn-full {
  width: 100%;
}

.quick-code {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 14px;
  align-items: center;
  width: min(100%, 420px);
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(67, 230, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(67, 230, 255, 0.08), rgba(21, 152, 255, 0.05));
}

.quick-code span,
.quick-code small {
  color: var(--muted);
  font-weight: 800;
}

.quick-code strong {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.trust-row div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 0.86rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  margin-top: 4px;
}

.hero-card {
  position: relative;
}

.phone-frame {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(67, 230, 255, 0.22);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 16%),
    rgba(5, 20, 36, 0.74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 5px 0 16px;
}

.phone-top span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 468px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 16%, rgba(67, 230, 255, 0.28), transparent 24%),
    radial-gradient(circle at 90% 6%, rgba(255, 209, 102, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(7, 27, 48, 0.98), rgba(4, 14, 25, 0.98));
  isolation: isolate;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(67, 230, 255, 0.28);
  border-radius: 28px;
  transform: rotate(18deg);
  background: rgba(67, 230, 255, 0.05);
  z-index: -1;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: auto auto 112px -18%;
  width: 136%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 230, 255, 0.42), transparent);
  transform: rotate(-12deg);
}

.offer-kicker {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.offer-code {
  border: 1px dashed rgba(67, 230, 255, 0.55);
  border-radius: 22px;
  color: var(--cyan);
  background: rgba(67, 230, 255, 0.08);
  padding: 18px;
  font-size: clamp(2rem, 13vw, 4.8rem);
  font-weight: 950;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
}

.copy-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  font-weight: 900;
}

.mini-progress {
  display: grid;
  gap: 8px;
  margin: 6px 0;
}

.mini-progress span {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-progress span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.floating-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(5, 20, 36, 0.88);
  padding: 10px 13px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.chip-one {
  left: -6px;
  top: 22%;
}

.chip-two {
  right: -4px;
  bottom: 22%;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(67, 230, 255, 0.14);
  background: rgba(67, 230, 255, 0.055);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  color: var(--cyan);
  font-weight: 950;
  padding: 14px 24px;
  white-space: nowrap;
}

.promo-panel,
.bd-panel,
.final-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(67, 230, 255, 0.1), transparent 38%),
    rgba(8, 26, 45, 0.72);
  box-shadow: var(--shadow);
}

.promo-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.promo-panel h2,
.bd-panel h2,
.final-card h2,
.section-heading h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
}

.promo-panel p,
.section-heading p,
.bd-panel p,
.final-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
}

.promo-box {
  display: grid;
  gap: 12px;
}

.promo-code {
  display: grid;
  place-items: center;
  min-height: 100px;
  border: 1px dashed rgba(255, 209, 102, 0.42);
  border-radius: 24px;
  color: var(--gold);
  background: rgba(255, 209, 102, 0.08);
  font-size: clamp(2rem, 14vw, 4rem);
  font-weight: 950;
  letter-spacing: 0.1em;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 230, 255, 0.28);
  background: rgba(67, 230, 255, 0.065);
}

.feature-card h3,
.step-item h3 {
  margin: 16px 0 0;
  font-size: 1.12rem;
}

.feature-card p,
.step-item p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--cyan);
  background: rgba(67, 230, 255, 0.1);
  border: 1px solid rgba(67, 230, 255, 0.16);
  font-weight: 950;
}

.steps-section {
  background: linear-gradient(180deg, transparent, rgba(67, 230, 255, 0.04), transparent);
}

.split-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.step-item > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #04111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.step-item h3,
.step-item p {
  margin-top: 0;
}

.step-item p {
  margin-bottom: 0;
}

.highlight-step {
  border-color: rgba(255, 209, 102, 0.34);
  background: rgba(255, 209, 102, 0.075);
}

.highlight-step > span {
  background: linear-gradient(135deg, var(--gold), #fff4bd);
}

.bd-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.bd-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.bd-points span {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.bd-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(57, 229, 143, 0.1);
}

.bd-card {
  display: grid;
  gap: 13px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(67, 230, 255, 0.24);
  border-radius: 28px;
  background: rgba(3, 13, 24, 0.58);
}

.bd-card p,
.bd-card span {
  margin: 0;
  color: var(--muted);
}

.bd-card strong {
  color: var(--cyan);
  font-size: clamp(2.5rem, 15vw, 5rem);
  letter-spacing: 0.08em;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  font-weight: 950;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(67, 230, 255, 0.09);
  transition: transform 180ms ease;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-card {
  text-align: center;
  padding: 34px 22px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 10, 19, 0.64);
  padding: 42px 0 120px;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(67, 230, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(67, 230, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: 28px;
}

.page-hero h1 {
  margin: 16px 0 0;
  max-width: 780px;
  font-size: clamp(2.25rem, 10vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.page-hero p {
  max-width: 680px;
  color: var(--soft);
  line-height: 1.65;
  font-size: 1.06rem;
}

.page-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.content-card {
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.032));
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.content-card h2,
.content-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.68;
}

.content-card ul,
.content-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.content-card li + li {
  margin-top: 8px;
}

.article-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.article-content .content-card {
  overflow: hidden;
}

.article-content h2 {
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  line-height: 1.08;
}

.article-content h3 {
  margin-top: 22px;
  color: var(--soft);
  font-size: 1.16rem;
}

.article-content p {
  margin: 14px 0 0;
}

.article-content a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(67, 230, 255, 0.35);
  text-underline-offset: 4px;
}

.article-content .btn,
.page-hero .btn,
.content-card .btn {
  color: #03111e;
  text-decoration: none;
}

.seo-link-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.seo-link-grid a {
  display: block;
  border: 1px solid rgba(67, 230, 255, 0.18);
  border-radius: 18px;
  background: rgba(67, 230, 255, 0.06);
  padding: 14px;
  text-decoration: none;
}

.seo-link-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  margin-top: 6px;
}

.page-hero-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-top: 24px;
  border: 1px solid rgba(67, 230, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.support-layout {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.support-card {
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.support-card h2,
.support-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 0;
  letter-spacing: -0.03em;
}

.support-card p,
.support-card li {
  color: var(--muted);
  line-height: 1.68;
}

.support-card ul,
.support-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.support-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.support-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(72, 235, 255, 0.18);
  border-radius: 20px;
  background: rgba(72, 235, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.support-button:hover {
  transform: translateY(-2px);
  border-color: rgba(72, 235, 255, 0.35);
  background: rgba(72, 235, 255, 0.09);
}

.support-button strong,
.support-button span {
  display: block;
}

.support-button span {
  color: var(--muted);
  font-size: 0.82rem;
}

.support-button strong {
  font-size: 1rem;
}

.support-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.blog-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.blog-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card p {
  margin: 0;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.62;
}

.toc-card a {
  display: block;
  padding: 8px 0;
}

.inline-cta {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(255, 209, 102, 0.32);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(72, 235, 255, 0.05));
  padding: 18px;
}

.inline-cta strong {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.notice-card {
  border-color: rgba(255, 209, 102, 0.32);
  background: rgba(255, 209, 102, 0.07);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-list > a,
.contact-list > span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 16px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.site-footer a:not(.brand) {
  display: block;
  color: var(--muted);
  padding: 6px 0;
}

.site-footer a:not(.brand):hover {
  color: var(--cyan);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(67, 230, 255, 0.24);
  border-radius: 22px;
  background: rgba(5, 18, 33, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.mobile-sticky-cta span,
.mobile-sticky-cta strong {
  display: block;
}

.mobile-sticky-cta span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.mobile-sticky-cta strong {
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.mobile-sticky-cta .btn {
  min-width: 128px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 94px;
  z-index: 150;
  transform: translate(-50%, 14px);
  opacity: 0;
  pointer-events: none;
  width: max-content;
  max-width: calc(100% - 32px);
  border: 1px solid rgba(57, 229, 143, 0.28);
  border-radius: 999px;
  color: #04111f;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  padding: 12px 16px;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 160ms;
}

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

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

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

@media (min-width: 560px) {
  .hero-actions,
  .final-actions,
  .page-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-xl {
    padding-inline: 24px;
  }

  .promo-box {
    grid-template-columns: 1fr 1fr;
  }

  .promo-code {
    grid-column: 1 / -1;
  }

  .support-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 44px;
  }

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

  .bd-panel {
    grid-template-columns: 1.25fr 0.75fr;
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .seo-link-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 10px 12px;
  }

  .primary-nav .nav-cta {
    margin-left: 6px;
    padding: 13px 18px;
    border-radius: 999px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .hero-card {
    justify-self: end;
  }

  .promo-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 34px;
  }

  .split-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
  }

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

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

  .brand-logo {
    width: 212px;
  }

  .brand-copy {
    display: block;
  }
}

/* Redesign override layer */

.site-header {
  border-bottom-color: rgba(138, 208, 255, 0.12);
}

.nav-shell {
  min-height: 68px;
  gap: 18px;
  padding-block: 10px;
}

.brand {
  gap: 10px;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(88px, 15vw, 124px);
  border-radius: 10px;
  box-shadow: none;
}

.brand-copy {
  max-width: 190px;
}

.brand-title {
  font-size: 0.92rem;
}

.brand-subtitle {
  font-size: 0.69rem;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.primary-nav {
  top: 78px;
  padding: 14px;
  border-radius: 20px;
}

.primary-nav a {
  font-size: 0.9rem;
  padding: 11px 12px;
}

.primary-nav .nav-cta,
.nav-cta {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(72, 235, 255, 0.16);
}

.hero {
  min-height: auto;
  padding-top: 12px;
}

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

.page-hero,
.final-card,
.promo-panel,
.bd-panel {
  padding: 28px;
  border-radius: 28px;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(72, 235, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(72, 235, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.page-hero-article,
.page-hero-blog {
  padding: 32px;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 7vw, 4.2rem);
}

.page-hero p {
  max-width: 62ch;
}

.page-hero-image {
  width: min(100%, 380px);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.meta-pill,
.blog-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 12px;
  border: 1px solid rgba(72, 235, 255, 0.2);
  background: rgba(72, 235, 255, 0.08);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.article-layout {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.article-main {
  display: grid;
  gap: 22px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  position: relative;
}

.article-content {
  gap: 22px;
  margin-top: 0;
}

.content-card,
.support-card,
.blog-card,
.featured-post-card {
  border-color: rgba(168, 219, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.callout-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 209, 85, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(11, 32, 51, 0.9), rgba(12, 22, 36, 0.86));
}

.article-related h2 {
  margin-bottom: 10px;
}

.featured-post {
  margin-top: 22px;
}

.featured-post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(168, 219, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(10, 27, 45, 0.92), rgba(9, 20, 33, 0.88));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.featured-post-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 235, 255, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.featured-post-media,
.blog-card-media {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 18px;
  background:
    radial-gradient(circle at 24% 30%, rgba(72, 235, 255, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(13, 37, 62, 0.96), rgba(9, 20, 34, 0.92));
}

.featured-post-body,
.blog-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.featured-post-body h2,
.blog-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.blog-card h2 {
  font-size: 1.34rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.blog-card-lines,
.featured-post-lines {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 9px;
}

.blog-card-lines span,
.featured-post-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.blog-card-lines span:nth-child(1),
.featured-post-lines span:nth-child(1) {
  width: 76%;
}

.blog-card-lines span:nth-child(2),
.featured-post-lines span:nth-child(2) {
  width: 58%;
}

.blog-card-lines span:nth-child(3),
.featured-post-lines span:nth-child(3) {
  width: 88%;
}

.blog-card-orb {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  border: 1px solid rgba(72, 235, 255, 0.24);
  background: rgba(72, 235, 255, 0.08);
  transform: rotate(18deg);
}

.blog-card-compact .blog-card-media {
  min-height: 132px;
}

.blog-card-compact .blog-card-body {
  padding: 18px;
}

.blog-grid {
  gap: 22px;
  margin-top: 26px;
}

.blog-grid-related {
  margin-top: 18px;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tone-gold .blog-card-media,
.tone-gold .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 209, 85, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(44, 31, 10, 0.94), rgba(18, 20, 30, 0.92));
}

.tone-blue .blog-card-media,
.tone-blue .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(45, 149, 255, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(10, 27, 52, 0.94), rgba(9, 20, 34, 0.92));
}

.tone-cyan .blog-card-media,
.tone-cyan .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(72, 235, 255, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(8, 35, 44, 0.94), rgba(9, 20, 34, 0.92));
}

.tone-sky .blog-card-media,
.tone-sky .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(130, 198, 255, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(12, 30, 48, 0.94), rgba(9, 20, 34, 0.92));
}

.tone-slate .blog-card-media,
.tone-slate .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(182, 196, 214, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(27, 34, 44, 0.94), rgba(9, 20, 34, 0.92));
}

.tone-emerald .blog-card-media,
.tone-emerald .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(56, 224, 138, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(8, 34, 26, 0.94), rgba(9, 20, 34, 0.92));
}

.tone-violet .blog-card-media,
.tone-violet .featured-post-media {
  background:
    radial-gradient(circle at 24% 30%, rgba(179, 134, 255, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(27, 16, 48, 0.94), rgba(9, 20, 34, 0.92));
}

.support-layout {
  gap: 22px;
}

.support-card {
  padding: 24px;
}

.support-actions {
  gap: 14px;
}

.support-button {
  position: relative;
  align-items: stretch;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(15, 39, 62, 0.88), rgba(10, 22, 36, 0.9));
}

.support-button-copy {
  border-style: dashed;
}

.support-button-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-button-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.support-button-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.support-button-telegram {
  color: #c8f5ff;
  border-color: rgba(72, 235, 255, 0.24);
}

.support-button-telegram .support-button-icon {
  color: #48ebff;
  background: rgba(72, 235, 255, 0.14);
}

.support-button-whatsapp {
  color: #d6ffe9;
  border-color: rgba(56, 224, 138, 0.22);
}

.support-button-whatsapp .support-button-icon {
  color: #38e08a;
  background: rgba(56, 224, 138, 0.16);
}

.support-button-copy .support-button-icon {
  color: var(--gold);
  background: rgba(255, 209, 85, 0.14);
}

.support-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 54px 0 112px;
}

.footer-grid {
  gap: 34px;
  align-items: start;
}

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

.footer-brand .brand-logo {
  width: 136px;
}

.footer-brand .brand-copy {
  display: block;
  max-width: 180px;
}

.footer-bottom {
  gap: 14px;
}

@media (max-width: 759px) {
  .brand-copy {
    display: none !important;
  }

  .page-hero,
  .page-hero-article,
  .page-hero-blog,
  .final-card,
  .promo-panel,
  .bd-panel {
    padding: 22px;
  }

  .featured-post-card,
  .blog-card {
    border-radius: 24px;
  }
}

@media (min-width: 760px) {
  .featured-post-card {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .featured-post-media {
    min-height: 100%;
  }

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

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

@media (min-width: 940px) {
  .nav-shell {
    min-height: 72px;
    gap: 24px;
  }

  .primary-nav {
    margin-left: auto;
    gap: 6px;
  }

  .primary-nav a {
    padding: 10px 11px;
  }

  .brand-copy {
    display: block;
  }

  .brand-logo {
    width: 116px;
  }

  .page-hero-article {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
  }

  .page-hero-article .page-hero-image,
  .page-hero-blog .page-hero-image {
    margin-left: auto;
  }

  .article-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .article-sidebar {
    position: sticky;
    top: 92px;
  }

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

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

  .support-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) 0.85fr 0.8fr;
  }
}
