@font-face {
  font-family: "Sora";
  src: url("media/fonts/sora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Sora";
  src: url("media/fonts/sora-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Sora";
  src: url("media/fonts/sora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("media/fonts/bebas-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --off-bg: #050812;
  --off-bg-soft: #0d1220;
  --off-bg-card: #121a2b;
  --off-text: #e8ecf8;
  --off-muted: #a8b0c6;
  --off-accent: #f6b73c;
  --off-accent-2: #f08a23;
  --off-accent-soft: #2a2010;
  --off-border: #263045;
  --off-shadow-1: 0 10px 30px rgba(0, 0, 0, 0.35);
  --off-shadow-2: 0 8px 18px rgba(0, 0, 0, 0.4);
  --off-main-pad: clamp(14px, 2vw, 24px);
  --off-block-gap: clamp(16px, 2vw, 24px);
  --off-sidebar-w: 268px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 500px at 70% -8%, rgba(237, 132, 29, 0.19), transparent 60%),
    radial-gradient(900px 300px at 10% 0%, rgba(241, 63, 29, 0.14), transparent 60%),
    var(--off-bg);
  color: var(--off-text);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.66em;
  line-height: 1.15;
  text-wrap: balance;
}

h2,
h3 {
  color: #ffffff;
}

p,
ul,
ol,
table,
details {
  margin: 0 0 1em;
}

/* Keep a visible gap after heavy visual blocks before the next text node. */
:where(main, [data-main-content], [role="main"], .off-main, .cp-main, .rb-main)
  :is(
    table,
    [data-review-slider],
    [data-cta-banner],
    [data-slots-grid],
    [class*="table"],
    [class*="grid"],
    [class*="review"],
    [class*="banner"],
    [class*="screen"],
    [class*="gallery"],
    [class*="cards"],
    [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]):not([class*="slot__card"])
  )
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

ul,
ol {
  padding-left: 1.2em;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

th {
  color: #f4f7ff;
  font-weight: 600;
}

td {
  color: #d6deee;
}

summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.off-layout {
  display: flex;
  min-height: 100vh;
}

.off-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--off-sidebar-w);
  border-right: 1px solid var(--off-border);
  background: linear-gradient(180deg, #0d1220 0%, #080d18 100%);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  z-index: 70;
}

.off-sidebar__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.off-sidebar__logo img {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.off-sidebar__cta {
  display: grid;
  gap: 10px;
}

.off-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.off-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.off-btn--solid {
  color: #111;
  min-width: 220px;
  background: linear-gradient(135deg, var(--off-accent), var(--off-accent-2));
  box-shadow: 0 8px 22px rgba(246, 183, 60, 0.35);
}

.off-btn--solid:hover {
  transform: translateY(-1px);
}

.off-btn--ghost {
  min-width: 220px;
  color: #e9eefb;
  border-color: #36455f;
  background: rgba(10, 15, 28, 0.85);
}

.off-sidebar-nav {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.off-sidebar-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #d4dcec;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.01);
}

.off-sidebar-nav a:hover,
.off-sidebar-nav a:focus-visible {
  border-color: #3a4863;
  background: #141e31;
}

.off-sidebar__note {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--off-muted);
  border-top: 1px solid #27344b;
  padding-top: 12px;
}

.off-page-shell {
  margin-left: var(--off-sidebar-w);
  width: calc(100% - var(--off-sidebar-w));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.off-main {
  padding: var(--off-main-pad);
  padding-bottom: var(--off-main-pad);
}

.off-main > section {
  margin: var(--off-block-gap) 0;
}

.off-main > section:first-child {
  margin-top: 0;
}

.off-main > section:last-child {
  margin-bottom: 0;
}

.off-hero {
  position: relative;
  border: 1px solid #2e3a54;
  border-radius: 26px;
  min-height: clamp(360px, 44vw, 520px);
  overflow: hidden;
  box-shadow: var(--off-shadow-1);
}

.off-hero__media,
.off-hero__media img {
  width: 100%;
  height: 100%;
}

.off-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.off-hero__media img {
  display: block;
  object-fit: cover;
}

.off-hero__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 94%;
  max-width: none;
  transform: translate(-50%, -50%);
  background: rgba(6, 12, 24, 0.72);
  border: 1px solid #3b4868;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  padding: 22px 24px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  text-align: center;
  overflow: visible;
  z-index: 2;
}

.off-hero__card h1 {
  font-family: "Bebas Neue", "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  margin-bottom: 0.25em;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #ffd86a;
}

.off-hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffbc4a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.off-hero__card p {
  color: #e5ebfb;
  margin-bottom: 0.75em;
  line-height: 1.25;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.off-hero__card .off-btn {
  display: inline-flex;
  width: auto;
  min-width: 220px;
  max-width: 360px;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

.off-nav-accordion {
  border: 1px solid #25314a;
  border-radius: 14px;
  background: #0d1425;
  padding: 12px;
}

.off-nav-accordion__trigger {
  width: 100%;
  border: 1px solid #384662;
  border-radius: 11px;
  background: #141f34;
  color: #f4f7ff;
  min-height: 46px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  padding: 0 14px;
  text-align: left;
  cursor: pointer;
}

.off-nav-accordion__list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.off-nav-accordion__list a {
  display: block;
  border: 1px solid #2f3f5b;
  border-radius: 10px;
  padding: 9px 12px;
  color: #dfe5f7;
  background: #121b2d;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
}

.off-slots {
  border-radius: 22px;
  padding: clamp(10px, 1.5vw, 16px);
  background: #0a101d;
  border: 1px solid #212c44;
}

.off-slot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.off-slot-card {
  position: relative;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  box-shadow: var(--off-shadow-2);
  overflow: hidden;
}

.off-slot-image-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1628;
  aspect-ratio: 432 / 580;
}

.off-slot-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.off-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(6, 11, 20, 0.58);
  cursor: pointer;
  font-size: 1.1rem;
  backdrop-filter: blur(2px);
}

.off-slot-actions {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.off-slot-card.off-slot-card--active .off-slot-reveal,
.off-slot-card.off-slot-card--hover .off-slot-reveal {
  opacity: 0;
  visibility: hidden;
}

.off-slot-card.off-slot-card--active .off-slot-actions,
.off-slot-card.off-slot-card--hover .off-slot-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.off-slot-action {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #394b67;
  color: #0d111d;
  background: linear-gradient(135deg, #ffcc5f, #f28c2a);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(242, 140, 42, 0.32);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0 8px;
}

.off-slot-action--demo {
  color: #e4ebfc;
  background: #19243a;
  border-color: #3b4b68;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.off-slots__intro {
  margin-top: clamp(16px, 2vw, 24px);
}

.off-overview,
.off-login,
.off-calculator,
.off-proscons,
.off-reviews,
.off-content-section,
.off-faq {
  border: 1px solid #25314b;
  border-radius: 18px;
  background: #0d1426;
  padding: clamp(16px, 2vw, 26px);
}

.off-table {
  background: #0a1221;
  border: 1px solid #293651;
  border-radius: 12px;
  overflow: hidden;
}

.off-table a {
  color: #ffd071;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.off-cta-banner {
  position: relative;
  --off-cta-card-gap-inline: clamp(12px, 2vw, 24px);
  --off-cta-card-gap-block: clamp(14px, 2.4vw, 28px);
  min-height: clamp(250px, 31vw, 360px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #2d3954;
  display: flex;
  justify-content: center;
  align-items: center;
}

.off-cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.off-cta-banner__card {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 620px;
  margin: 20px auto;
  text-align: center;
  border: 1px solid #3b4764;
  border-radius: 14px;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(9, 15, 26, 0.68);
  box-shadow: var(--off-shadow-2);
  overflow: visible;
}

.off-cta-banner__card .off-btn {
  margin-top: 12px;
}

.off-login__screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.off-login__screen {
  border: 1px solid #2e3a53;
  border-radius: 14px;
  padding: 8px;
  margin: 0;
  background: #0a1221;
}

.off-login__screen img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.off-login__screen figcaption {
  color: #bbc5dd;
  font-size: 0.9rem;
  margin-top: 8px;
}

.off-calculator__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  column-gap: 12px;
  row-gap: 8px;
  align-items: end;
}

.off-calculator__fields label {
  display: block;
  font-size: 0.92rem;
  color: #dbe3f8;
  margin: 0;
}

.off-calculator__fields input {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #344563;
  background: #081021;
  color: #f2f6ff;
  padding: 0 12px;
  font-size: 1rem;
}

.off-calculator__result {
  margin-top: 20px !important;
  border: 1px solid #3a4c6c;
  border-radius: 12px;
  background: #121e35;
  padding: 14px;
}

.off-calculator__result + p,
[data-calc-result] + p {
  margin-top: clamp(16px, 2vw, 24px);
}

.off-calculator__result output {
  display: block;
  font-family: "Bebas Neue", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #ffd06e;
}

.off-proscons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.off-proscons__grid article {
  border: 1px solid #334462;
  border-radius: 12px;
  background: #0d1729;
  padding: 12px;
}

.off-reviews {
  overflow: hidden;
}

.off-review-slider {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
}

.off-review-slider__viewport {
  overflow: hidden;
}

.off-review-slider__track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.off-review-card {
  min-width: 100%;
  border: 1px solid #33425f;
  border-radius: 14px;
  padding: 14px;
  background: #0e182c;
}

.off-review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.off-review-card__head span {
  color: #ffd17a;
  font-size: 0.9rem;
}

.off-review-slider__arrow {
  width: 42px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid #3a4c6b;
  background: #131f35;
  color: #f5f8ff;
  font-size: 1.5rem;
  cursor: pointer;
}

.off-faq details {
  border: 1px solid #33415f;
  border-radius: 10px;
  background: #0d182c;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.off-faq summary {
  font-weight: 700;
}

.off-footer {
  border-top: 1px solid #24314a;
  background: #070c17;
  padding: clamp(14px, 2vw, 24px);
  padding-top: clamp(18px, 2vw, 26px);
}

.off-footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.off-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.6em;
}

.off-footer p,
.off-footer li,
.off-footer a {
  color: #b9c4da;
}

.off-footer a:hover,
.off-footer a:focus-visible {
  color: #ffd171;
}

.off-slot-demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 12, 0.84);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.off-slot-demo-modal__dialog {
  width: min(1060px, 100%);
  max-height: calc(100vh - 32px);
  border-radius: 16px;
  border: 1px solid #3a4864;
  background: #091223;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.off-slot-demo-modal__close {
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3f4d6a;
  background: #162139;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.off-slot-demo-modal iframe {
  width: 100%;
  min-height: 56vh;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.off-floating-bonus {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 115;
  width: min(980px, calc(100vw - 16px));
  border: 1px solid #3a4660;
  border-radius: 14px;
  background: linear-gradient(120deg, #1a2337, #121a2b 45%, #2c1f0f 100%);
  padding: 14px 16px;
  padding-right: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.off-floating-bonus[data-visible="false"] {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

.off-floating-bonus[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.off-floating-bonus p {
  margin: 0;
}

.off-floating-bonus [data-floating-bonus-close] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #55627f;
  background: #0f1728;
  color: #f2f6ff;
  cursor: pointer;
  line-height: 1;
}

.off-service .off-main {
  max-width: 1100px;
}

.off-service .off-main section {
  border: 1px solid #27334d;
  border-radius: 16px;
  background: #0d1425;
  padding: clamp(16px, 2vw, 24px);
}

.off-contact-form {
  display: grid;
  gap: 10px;
}

.off-contact-form input,
.off-contact-form textarea {
  width: 100%;
  border: 1px solid #344662;
  border-radius: 10px;
  background: #091224;
  color: #f2f5fd;
  min-height: 48px;
  padding: 10px 12px;
}

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

.off-contact-form [data-contact-status] {
  min-height: 24px;
  color: #ffd07e;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .off-slot-card:hover .off-slot-reveal {
    opacity: 0;
    visibility: hidden;
  }

  .off-slot-card:hover .off-slot-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .off-hero__card {
    width: min(78%, 1180px);
    padding: 20px 22px 24px;
    background: rgba(6, 12, 24, 0.82);
    border-color: #44567b;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
  }

  .off-hero__card h1 {
    font-size: clamp(1.9rem, 2.75vw, 3rem);
    line-height: 0.96;
    margin-bottom: 0.26em;
  }

  .off-hero__card p {
    max-width: 58ch;
    width: auto;
    margin-bottom: 0.62em;
  }

  .off-hero__card .off-btn {
    min-width: 260px;
    min-height: 52px;
    font-size: 1.03rem;
  }
}

@media (max-width: 1023px) {
  .off-layout {
    display: block;
  }

  .off-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #24324a;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 10px;
  }

  .off-sidebar__logo {
    padding: 8px;
    margin: 0 auto;
    width: min(100%, 340px);
  }

  .off-sidebar__logo img {
    width: 154px;
    margin: 0 auto;
  }

  .off-sidebar__cta {
    width: min(100%, 380px);
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .off-sidebar .off-btn {
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .off-sidebar-nav,
  .off-sidebar__note {
    display: none;
  }

  .off-page-shell {
    width: 100%;
    margin-left: 0;
  }

  .off-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
  }

  .off-hero__card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(94%, 620px);
    max-width: 620px;
    transform: none;
    padding: 14px 14px 10px;
    overflow: visible;
  }

  .off-hero__card h1 {
    font-size: clamp(1.58rem, 7.4vw, 2.15rem);
    line-height: 0.98;
    letter-spacing: 0.015em;
  }

  .off-hero__eyebrow {
    margin-bottom: 6px;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .off-hero__card p {
    font-size: 1rem;
    margin-bottom: 0.52em;
    line-height: 1.22;
    max-width: 34ch;
  }

  .off-hero__card .off-btn {
    min-width: 0;
    width: auto;
    max-width: 100%;
    min-height: 44px;
    margin-top: 4px;
    padding: 0 22px;
  }

  .off-nav-accordion__trigger {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .off-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .off-login__screens,
  .off-proscons__grid,
  .off-footer__cols {
    grid-template-columns: 1fr;
  }

  .off-calculator__fields {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    row-gap: 8px;
  }

  .off-review-slider {
    grid-template-columns: 28px 1fr 28px;
    gap: 8px;
  }

  .off-review-slider__arrow {
    width: 28px;
    height: 62px;
    border-radius: 8px;
    font-size: 1.2rem;
  }

  th,
  td {
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .off-cta-banner {
    min-height: 280px;
    --off-cta-card-gap-inline: 10px;
    --off-cta-card-gap-block: 12px;
  }

  .off-cta-banner__card {
    padding: 16px;
  }

  .off-slot-demo-modal {
    padding: 0;
  }

  .off-slot-demo-modal__dialog {
    border-radius: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    padding: 12px;
  }

  .off-slot-demo-modal iframe {
    min-height: calc(100vh - 170px);
  }

  .off-floating-bonus {
    width: calc(100vw - 12px);
    bottom: 6px;
    border-radius: 12px;
    grid-template-columns: 1fr;
    padding-right: 56px;
    align-items: start;
  }

  .off-floating-bonus .off-btn {
    width: 100%;
    min-width: 0;
  }

  .off-floating-bonus [data-floating-bonus-close] {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }
}
