:root {
  --bg: #1E1B4B;
  --surface: #312E81;
  --text: #EEF2FF;
  --muted: #A5B4FC;
  --primary: #A855F7;
  --secondary: #4338CA;
  --accent: #D8B4FE;
  --border: rgba(255,255,255,0.1);
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(168, 85, 247, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(67, 56, 202, 0.4), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #15133a 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.disclosure-banner {
  background: #EEF2FF;
  color: #4338CA;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 6px 16px;
  width: 100%;
  line-height: 1.4;
  flex-shrink: 0;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}

.nav-back {
  width: 100%;
  height: 64px;
  background: rgba(49, 46, 129, 0.95);
  backdrop-filter: blur(8px);
}

.nav-front {
  max-width: 1160px;
  margin: -8px auto 0;
  height: 48px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.brand-lockup img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.nav-drawer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  padding: 12px;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  color: var(--text);
  padding: 10px 12px;
  font-weight: 600;
  border-radius: 6px;
}

.nav-drawer a:hover {
  background: rgba(168, 85, 247, 0.2);
}

@media (max-width: 900px) {
  .nav-back {
    display: none;
  }

  .nav-front {
    margin: 0;
    max-width: none;
    border-radius: 0;
    height: 56px;
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.85), rgba(67, 56, 202, 0.55));
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .hero-card {
    max-width: 90%;
    padding: 24px;
  }
}

.startup {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.pitch {
  padding: 56px 0;
  position: relative;
}

.pitch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.investors {
  display: grid;
  gap: 20px;
}

.vision {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.growth {
  color: var(--muted);
  margin-bottom: 12px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.offers-section {
  padding: 48px 0 64px;
  background-image:
    linear-gradient(180deg, rgba(30, 27, 75, 0.92), rgba(30, 27, 75, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15), transparent 60%);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.offers-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.offer-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 16px;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.5);
}

.offer-logo {
  width: 88px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-body {
  min-width: 0;
}

.offer-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.offer-bonus {
  font-weight: 700;
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  color: #fbbf24;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 2px;
  font-weight: 500;
}

.offer-desc {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 6px;
  line-height: 1.4;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: #16a34a;
  color: #fff !important;
}

@media (max-width: 720px) {
  .offer-card {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
  }

  .offer-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .offer-logo {
    width: 64px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .offer-bonus {
    font-size: 0.78rem;
  }
}

.info-block {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 20px;
  position: relative;
}

.info-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.info-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.info-block ul {
  margin: 12px 0 12px 20px;
  color: var(--muted);
}

.info-block li {
  margin-bottom: 6px;
}

.topic-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--text) !important;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topic-cta:hover {
  background: var(--secondary);
  color: var(--text) !important;
  transform: translateY(-1px);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.layout-split.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.layout-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 800;
}

.metric-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  background: rgba(49, 46, 129, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.layout-band {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.layout-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  pointer-events: none;
}

.layout-quote {
  border-left: 4px solid var(--primary);
  padding: 16px 0 16px 24px;
  margin: 20px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.layout-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  counter-reset: step;
}

.layout-steps li {
  list-style: none;
  background: rgba(30, 27, 75, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px 14px 52px;
  position: relative;
  color: var(--muted);
}

.layout-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-zebra {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.layout-zebra > div {
  padding: 16px 20px;
  color: var(--muted);
}

.layout-zebra > div:nth-child(odd) {
  background: rgba(49, 46, 129, 0.5);
}

.layout-zebra > div:nth-child(even) {
  background: rgba(30, 27, 75, 0.4);
}

.layout-zebra strong {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
}

.decor-wrap img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
}

.decor-bg {
  border-radius: 16px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 480px) {
  .decor-wrap,
  .decor-bg {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-wrap img {
    max-width: 100%;
    width: 100%;
    max-height: 200px;
    height: auto;
  }

  .decor-bg {
    min-height: 140px;
    max-height: 200px;
  }

  .layout-rail,
  .layout-split,
  .layout-mosaic {
    max-width: 100%;
    overflow: hidden;
  }
}

.layout-rail {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: start;
}

.layout-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.check-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-item::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 800;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 800px) {
  .layout-split,
  .layout-split.reverse,
  .layout-rail,
  .layout-mosaic,
  .layout-cards,
  .layout-metrics,
  .layout-checklist {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: rgba(15, 12, 40, 0.95);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text);
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-company {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-br-disclosure {
  font-size: 12px;
  color: rgba(165, 180, 252, 0.85);
  margin-bottom: 16px;
  line-height: 1.5;
  max-width: 900px;
}

.footer-notice {
  font-size: 11px;
  color: rgba(165, 180, 252, 0.75);
  line-height: 1.55;
  max-width: 900px;
  margin-bottom: 12px;
}

.footer-notice h3 {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 6px;
  font-weight: 700;
}

.footer-risk {
  font-size: 12px;
  color: rgba(165, 180, 252, 0.8);
  margin-top: 12px;
  max-width: 900px;
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 12, 40, 0.85);
  padding: 20px;
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none !important;
}

.age-modal,
.cookie-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-modal h2,
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.age-modal p,
.cookie-modal p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.age-actions,
.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--secondary);
}

.page-hero {
  padding: 40px 20px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--accent);
}

.page-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 10px;
}

.page-content ul {
  margin: 8px 0 16px 20px;
}

.contact-form {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  max-width: 560px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(30, 27, 75, 0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-bottom: 12px;
  min-height: 1.2em;
}

.form-success {
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 28px;
  color: var(--text);
  max-width: 560px;
  margin-top: 28px;
}

.form-success[hidden] {
  display: none;
}

.contact-form[hidden] {
  display: none;
}

.sub-hero {
  padding: 48px 20px;
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.4), rgba(168, 85, 247, 0.2));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sub-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -40%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.2), transparent 70%);
}

.sub-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.sub-hero p {
  color: var(--muted);
  max-width: 640px;
}

.sub-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.sub-body h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--accent);
}

.sub-body h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.sub-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.sub-body ul,
.sub-body ol {
  margin: 10px 0 18px 22px;
  color: var(--muted);
}

.sub-body li {
  margin-bottom: 6px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat-band > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.pull-quote {
  margin: 28px 0;
  padding: 24px 28px;
  background: rgba(168, 85, 247, 0.12);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
}

.side-rail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 80px;
}

.side-rail h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.side-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-rail li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .sidebar-layout,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
  }
}

.go-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.go-box {
  max-width: 480px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-box h1 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.go-box p {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.go-ad {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card {
  animation: fadeUp 0.7s ease both;
}

.offer-card {
  animation: fadeUp 0.5s ease both;
}

.info-block {
  animation: fadeUp 0.6s ease both;
}
#info-1 {
  background: linear-gradient(180deg, rgba(49, 46, 129, 0.25), transparent);
}

#info-4 .layout-band {
  margin-top: 8px;
}

#info-10 {
  padding-bottom: 64px;
}
