:root {
  --ir-bg: #070b24;
  --ir-bg-2: #0e1641;
  --ir-card: rgba(255, 255, 255, 0.08);
  --ir-card-strong: rgba(255, 255, 255, 0.12);
  --ir-border: rgba(255, 255, 255, 0.14);
  --ir-text: #eef3ff;
  --ir-muted: #a8b2d8;
  --ir-blue: #395cff;
  --ir-blue-light: #6f87ff;
  --ir-pink: #ff4fd8;
  --ir-gold: #ffd36a;
  --ir-green: #43e6a0;
  --ir-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ir-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(57, 92, 255, 0.35), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(255, 79, 216, 0.28), transparent 34%),
    var(--ir-bg);
  color: var(--ir-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.ir-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.ir-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(7, 11, 36, 0.82);
  border-bottom: 1px solid var(--ir-border);
  backdrop-filter: blur(18px);
}

.ir-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ir-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ir-blue), var(--ir-pink));
  box-shadow: 0 12px 28px rgba(57, 92, 255, 0.4);
}

.ir-logo__text {
  font-size: 18px;
}

.ir-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.ir-nav a {
  text-decoration: none;
  color: var(--ir-muted);
  font-weight: 700;
  font-size: 14px;
}

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

.ir-header__cta,
.ir-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.ir-header__cta,
.ir-btn--primary,
.ir-btn--wide {
  color: #07102d;
  background: linear-gradient(135deg, var(--ir-gold), #fff1b4);
  box-shadow: 0 14px 32px rgba(255, 211, 106, 0.28);
}

.ir-btn--secondary {
  color: var(--ir-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ir-border);
}

.ir-btn--wide {
  width: 100%;
  margin-top: 18px;
}

.ir-burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--ir-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.ir-burger span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ir-text);
}

.ir-mobile[hidden] {
  display: none;
}

.ir-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 84px 28px 28px;
  display: grid;
  align-content: start;
  gap: 18px;
  background: rgba(7, 11, 36, 0.96);
}

.ir-mobile a {
  padding: 16px 0;
  border-bottom: 1px solid var(--ir-border);
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
}

.ir-mobile__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--ir-border);
  background: var(--ir-card);
  color: var(--ir-text);
  font-size: 30px;
}

.ir-mobile__cta {
  text-align: center;
  border-bottom: 0 !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ir-gold), #fff1b4);
  color: #07102d;
}

.ir-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 68px;
}

.ir-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.ir-hero__glow--one {
  width: 360px;
  height: 360px;
  left: -140px;
  top: 80px;
  background: rgba(57, 92, 255, 0.35);
}

.ir-hero__glow--two {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -80px;
  background: rgba(255, 79, 216, 0.24);
}

.ir-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
}

.ir-kicker,
.ir-section__eyebrow {
  display: inline-flex;
  color: var(--ir-green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.ir-hero h1,
.ir-simple-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.ir-hero__lead,
.ir-simple-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ir-muted);
  font-size: 18px;
}

.ir-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ir-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ir-hero__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ir-card);
  border: 1px solid var(--ir-border);
  color: var(--ir-muted);
  font-size: 13px;
  font-weight: 700;
}

.ir-offer-card,
.ir-verdict,
.ir-bonus-box,
.ir-steps,
.ir-card {
  background: linear-gradient(180deg, var(--ir-card-strong), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--ir-border);
  border-radius: 30px;
  box-shadow: var(--ir-shadow);
}

.ir-offer-card {
  padding: 30px;
}

.ir-offer-card__label {
  color: var(--ir-green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.ir-offer-card__bonus {
  margin-top: 12px;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.ir-offer-card__sub {
  margin-top: 8px;
  color: var(--ir-muted);
}

.ir-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.ir-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ir-muted);
}

.ir-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ir-green);
  font-weight: 900;
}

.ir-strip {
  padding: 18px 0;
  border-top: 1px solid var(--ir-border);
  border-bottom: 1px solid var(--ir-border);
  background: rgba(255, 255, 255, 0.05);
}

.ir-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ir-strip strong {
  display: block;
  font-size: 20px;
}

.ir-strip span {
  display: block;
  margin-top: 4px;
  color: var(--ir-muted);
  font-size: 13px;
}

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

.ir-section--soft {
  background: rgba(255, 255, 255, 0.035);
}

.ir-section--dark {
  background: rgba(0, 0, 0, 0.22);
}

.ir-section h2 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.ir-section p {
  color: var(--ir-muted);
}

.ir-two-col,
.ir-bonus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ir-verdict {
  padding: 28px;
}

.ir-score {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  color: var(--ir-gold);
  letter-spacing: -0.08em;
}

.ir-score-label {
  margin-top: 6px;
  font-weight: 900;
}

.ir-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.ir-card {
  padding: 24px;
}

.ir-card__icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.ir-card h3,
.ir-steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.ir-card p {
  margin: 0;
  font-size: 14px;
}

.ir-bonus-box {
  padding: 32px;
}

.ir-table {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ir-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ir-border);
}

.ir-table span {
  color: var(--ir-muted);
}

.ir-table strong {
  text-align: right;
}

.ir-steps {
  padding: 28px;
}

.ir-steps ol {
  padding-left: 20px;
  margin: 0;
  color: var(--ir-muted);
}

.ir-steps li + li {
  margin-top: 12px;
}

.ir-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.ir-payment-grid div {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--ir-card);
  border: 1px solid var(--ir-border);
  font-weight: 800;
}

.ir-note {
  margin-top: 24px;
}

.ir-faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.ir-faq details {
  border: 1px solid var(--ir-border);
  border-radius: 20px;
  background: var(--ir-card);
  padding: 20px 22px;
}

.ir-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.ir-faq p {
  margin-bottom: 0;
}

.ir-cta {
  padding: 70px 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(57, 92, 255, 0.28), rgba(255, 79, 216, 0.2)),
    rgba(255, 255, 255, 0.04);
}

.ir-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.06em;
}

.ir-cta p {
  color: var(--ir-muted);
}

.ir-simple-hero {
  padding: 82px 0 56px;
  background:
    radial-gradient(circle at 20% 20%, rgba(57, 92, 255, 0.28), transparent 36%),
    radial-gradient(circle at 84% 0%, rgba(255, 79, 216, 0.2), transparent 36%);
}

.ir-simple-hero .ir-btn {
  margin-top: 28px;
}

.ir-footer {
  padding: 34px 0;
  border-top: 1px solid var(--ir-border);
  background: rgba(0, 0, 0, 0.22);
}

.ir-footer__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.ir-footer__brand {
  font-weight: 900;
  font-size: 18px;
}

.ir-footer p {
  margin: 6px 0 0;
  color: var(--ir-muted);
  font-size: 13px;
}

.ir-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.ir-footer__links a {
  color: var(--ir-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 900px) {
  .ir-header {
    padding: 0 16px;
  }

  .ir-nav,
  .ir-header__cta {
    display: none;
  }

  .ir-burger {
    display: block;
  }

  .ir-hero {
    padding-top: 56px;
  }

  .ir-hero__grid,
  .ir-two-col,
  .ir-bonus-layout {
    grid-template-columns: 1fr;
  }

  .ir-card-grid,
  .ir-strip__grid,
  .ir-payment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ir-footer__inner {
    flex-direction: column;
  }

  .ir-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .ir-hero h1,
  .ir-simple-hero h1 {
    font-size: 44px;
  }

  .ir-card-grid,
  .ir-strip__grid,
  .ir-payment-grid {
    grid-template-columns: 1fr;
  }

  .ir-offer-card,
  .ir-verdict,
  .ir-bonus-box,
  .ir-steps,
  .ir-card {
    border-radius: 22px;
  }

  .ir-table div {
    display: grid;
    gap: 4px;
  }

  .ir-table strong {
    text-align: left;
  }
}