/* ========================================
   Variables
======================================== */
/* Colors */
/* Typography */
/* Container */
/* Radius */
/* Shadows */
/* Spacing */
/* Transitions */
/* Z-index */
/* Breakpoints */
/* ========================================
   Mixins
======================================== */
/* ========================================
   Reset
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

/* ========================================
   Typography
======================================== */
body {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.375rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: rgba(255, 255, 255, 0.78);
}

small {
  font-size: 0.875rem;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

/* ========================================
   Globals
======================================== */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at top left, rgba(0, 2, 37, 0.12), transparent 28%), radial-gradient(circle at top right, rgba(25, 0, 151, 0.1), transparent 22%), linear-gradient(180deg, #050b13 0%, #080f1a 45%, #000000 100%);
}

main {
  display: block;
}

section {
  position: relative;
}

iframe {
  border: 0;
}

::-moz-selection {
  background: #2f53ff;
  color: #111111;
}

::selection {
  background: #2f53ff;
  color: #111111;
}

:focus-visible {
  outline: 2px solid #2f53ff;
  outline-offset: 3px;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

/* ========================================
   Utilities
======================================== */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .show-mobile {
    display: block !important;
  }
}

/* ========================================
   Scrollbar
======================================== */
* {
  scrollbar-width: thin;
  scrollbar-color: #2f53ff rgba(255, 255, 255, 0.06);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: #2f53ff;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

*::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, #2f53ff 85%, white 15%);
}

*::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.06);
}

/* ========================================
   Container
======================================== */
.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
}

/* ========================================
   Header
======================================== */
.site-header {
  position: relative;
  z-index: 50;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .site-header {
    padding: 1.25rem 0;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-header__logo {
  display: block;
  max-height: 48px;
  width: auto;
}
@media (min-width: 768px) {
  .site-header__logo {
    max-height: 56px;
  }
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 100%;
}

.site-header__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 768px) {
  .site-header__title {
    font-size: 1.125rem;
  }
}

.site-header__subtitle {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
}
@media (min-width: 768px) {
  .site-header__subtitle {
    font-size: 0.875rem;
  }
}

.site-header__actions {
  display: none;
}
@media (min-width: 768px) {
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ========================================
   Footer
======================================== */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.site-footer__inner {
  display: grid;
  gap: 1.5rem;
}

.site-footer__top {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.site-footer__description {
  max-width: 680px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}
.site-footer__links a:hover {
  color: #2f53ff;
}

.site-footer__bottom {
  display: grid;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__legal,
.site-footer__note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

/* ========================================
   Sections
======================================== */
.section {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.section--hero {
  padding-top: 1rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-image: url(https://framerusercontent.com/images/iFHEC7AZi97QuhyIR5G9cUZ0hTc.webp?height=1007&width=1380);
  background-size: 150%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .section--hero {
    padding-top: 2rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background-image: url("https://framerusercontent.com/images/iFHEC7AZi97QuhyIR5G9cUZ0hTc.webp?height=1007&width=1380");
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
  }
}

.section--highlight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--steps,
.section--faq,
.section--regulation {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section__header {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 2.5rem;
  }
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(47, 83, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 83, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f53ff;
}

.section__title {
  margin-bottom: 0.875rem;
  max-width: 820px;
}

.section__description {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__title,
.section__header--center .section__description {
  margin-inline: auto;
}

.section__content {
  position: relative;
}

.section__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section__grid {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .section__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 768px) {
  .section__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section__grid--hero {
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .section__grid--hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 460px);
    gap: 2.5rem;
  }
}

.section__surface {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 24px;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .section__surface {
    padding: 1.75rem;
  }
}

.section__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 20%, rgba(255, 255, 255, 0.14) 80%, transparent 100%);
}

.section__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section__anchor-offset {
  scroll-margin-top: 100px;
}

/* ========================================
   Legal Pages
======================================== */
.section--legal-page {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(circle at 28% 18%, rgba(47, 83, 255, 0.12), transparent 18%), radial-gradient(circle at 82% 22%, rgba(47, 83, 255, 0.08), transparent 16%), linear-gradient(180deg, #020816 0%, #030d1f 38%, #020816 100%);
}

.legal-hero {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .legal-hero {
    margin-bottom: 2.75rem;
  }
}

.legal-hero__content {
  max-width: 860px;
}

.legal-hero__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}
.legal-hero__back:hover {
  color: #ffffff;
}

.legal-hero__title {
  margin-bottom: 1rem;
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-hero__title strong {
  display: block;
  color: #2f53ff;
}

.legal-hero__description {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.legal-toc {
  display: none;
}
@media (min-width: 992px) {
  .legal-toc {
    display: block;
    position: sticky;
    top: 110px;
  }
}

.legal-toc__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-toc__title {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.legal-toc__nav {
  display: grid;
  gap: 0.35rem;
}

.legal-toc__nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.legal-toc__nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.legal-content-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .legal-content-card {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .legal-content-card {
    padding: 2.5rem;
  }
}

.regulation-content {
  max-width: 880px;
}

.regulation-content > *:first-child {
  margin-top: 0;
}

.regulation-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  padding-top: 0.4rem;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  scroll-margin-top: 110px;
}

.regulation-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.regulation-content p,
.regulation-content li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.regulation-content p + p {
  margin-top: 1rem;
}

.regulation-content ul,
.regulation-content ol {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
}

.regulation-content li + li {
  margin-top: 0.45rem;
}

.regulation-content strong {
  color: #ffffff;
}

.regulation-content hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 20%, rgba(255, 255, 255, 0.16) 80%, transparent 100%);
}

.regulation-content a {
  color: #2f53ff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.regulation-content p:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ========================================
   Legal Pages
======================================== */
.section--legal-page {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(circle at 28% 18%, rgba(47, 83, 255, 0.12), transparent 18%), radial-gradient(circle at 82% 22%, rgba(47, 83, 255, 0.08), transparent 16%), linear-gradient(180deg, #020816 0%, #030d1f 38%, #020816 100%);
}

.legal-hero {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .legal-hero {
    margin-bottom: 2.75rem;
  }
}

.legal-hero__content {
  max-width: 860px;
}

.legal-hero__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease;
}
.legal-hero__back:hover {
  color: #ffffff;
}

.legal-hero__title {
  margin-bottom: 1rem;
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-hero__title strong {
  display: block;
  color: #2f53ff;
}

.legal-hero__description {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.legal-toc {
  display: none;
}
@media (min-width: 992px) {
  .legal-toc {
    display: block;
    position: sticky;
    top: 110px;
  }
}

.legal-toc__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-toc__title {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.legal-toc__nav {
  display: grid;
  gap: 0.35rem;
}

.legal-toc__nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.legal-toc__nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.legal-content-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .legal-content-card {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .legal-content-card {
    padding: 2.5rem;
  }
}

.regulation-content {
  max-width: 880px;
}

.regulation-content > *:first-child {
  margin-top: 0;
}

.regulation-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  padding-top: 0.4rem;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  scroll-margin-top: 110px;
}

.regulation-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.regulation-content p,
.regulation-content li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.regulation-content p + p {
  margin-top: 1rem;
}

.regulation-content ul,
.regulation-content ol {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
}

.regulation-content li + li {
  margin-top: 0.45rem;
}

.regulation-content strong {
  color: #ffffff;
}

.regulation-content hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 20%, rgba(255, 255, 255, 0.16) 80%, transparent 100%);
}

.regulation-content a {
  color: #2f53ff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.regulation-content p:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ========================================
   Buttons
======================================== */
.btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 56px;
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn:disabled, .btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  pointer-events: none;
}

.btn--primary {
  background: linear-gradient(135deg, #2f53ff 0%, #1e37b8 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 83, 255, 0.25);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #2f53ff 0%, #1e37b8 100%);
  box-shadow: 0 18px 36px rgba(47, 83, 255, 0.3);
}

.btn--secondary {
  background: linear-gradient(135deg, #1e37b8 0%, #19eeee 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 59, 59, 0.22);
}
.btn--secondary:hover {
  box-shadow: 0 18px 36px rgba(255, 59, 59, 0.28);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}
.btn--outline:hover {
  border-color: rgba(47, 83, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.78);
}
.btn--ghost:hover {
  color: #2f53ff;
}

.btn--sm {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  min-height: 62px;
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn__text {
  display: inline-block;
}

/* ========================================
   Form
======================================== */
.form {
  display: grid;
  gap: 1rem;
}

.form__header {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.form__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.form__grid {
  display: grid;
  gap: 1rem 1rem;
}

@media (min-width: 768px) {
  .form__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.form__field {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}

.form__error {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #ff9b9b;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.form__control {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.form__control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}
.form__control::placeholder {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}
.form__control:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.form__control:focus {
  border-color: rgba(0, 60, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 190, 11, 0.12);
}

select.form__control {
  color: #ffffff;
}

select.form__control option {
  background: #ffffff;
  color: #111111;
}

.form__control select {
  color: #b7b7b7;
}

textarea.form__control {
  min-height: 120px;
  padding-top: 1rem;
}

select.form__control {
  padding-right: 3rem;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form__help {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
}

.form__error {
  font-size: 0.8125rem;
  color: #ff9b9b;
}

.form__actions {
  display: grid;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.form__notice {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.form__checks {
  display: grid;
  gap: 0.75rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-check__input {
  position: relative;
  top: 0.125rem;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.form-check__input:checked {
  border-color: rgba(11, 145, 255, 0.7);
  background: #2f53ff;
  box-shadow: inset 0 0 0 3px #111111;
}
.form-check__input:focus {
  box-shadow: 0 0 0 4px rgba(11, 145, 255, 0.12);
}

.form-check__label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.form-check__label a {
  color: #2f53ff;
  transition: color 0.3s ease;
}
.form-check__label a:hover {
  color: #2b4ae2;
}

.form__control.is-invalid {
  border-color: rgba(255, 59, 59, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.12);
}

.form__control:-webkit-autofill,
.form__control:-webkit-autofill:hover,
.form__control:-webkit-autofill:focus,
.form__control:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.04) inset;
  border-radius: 18px;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.lead-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.lead-confirm-modal.is-open {
  display: block;
}

.lead-confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 22, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-confirm-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 760px);
  margin: 4vh auto;
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 20%, rgba(47, 83, 255, 0.14), transparent 20%), linear-gradient(180deg, rgba(10, 19, 35, 0.98) 0%, rgba(5, 12, 24, 0.98) 100%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.lead-confirm-modal__content {
  position: relative;
  padding: 2rem 1.25rem;
}
@media (min-width: 768px) {
  .lead-confirm-modal__content {
    padding: 2.5rem;
  }
}

.lead-confirm-modal__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.lead-confirm-modal__logo {
  width: min(180px, 40vw);
  height: auto;
  opacity: 0.95;
}

.lead-confirm-modal__close {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.lead-confirm-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: rotate(90deg);
}

.lead-confirm-modal__state {
  display: grid;
  gap: 1rem;
}

.lead-confirm-modal__state.is-hidden {
  display: none;
}

.lead-confirm-modal__eyebrow {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.875rem;
  border: 1px solid rgba(47, 83, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 83, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.lead-confirm-modal__title {
  text-align: center;
  margin: 0;
}

.lead-confirm-modal__text {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

.lead-confirm-summary {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .lead-confirm-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lead-confirm-summary__item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
  .lead-confirm-summary__item--full {
    grid-column: 1/-1;
  }
}

.lead-confirm-summary__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.lead-confirm-summary__value {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  word-break: break-word;
}

.lead-confirm-alert {
  padding: 1rem 1.125rem;
  border: 1px solid rgba(255, 190, 11, 0.2);
  border-radius: 20px;
  background: rgba(255, 190, 11, 0.08);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.lead-confirm-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.lead-confirm-loading {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.5rem;
}

.lead-confirm-loading__pulse {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 45%), linear-gradient(180deg, rgba(47, 83, 255, 0.22) 0%, rgba(47, 83, 255, 0.08) 100%);
  border: 1px solid rgba(47, 83, 255, 0.28);
  box-shadow: 0 0 30px rgba(47, 83, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: leadConfirmPulse 1s ease-in-out infinite;
}

@keyframes leadConfirmPulse {
  0% {
    transform: scale(0.94);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.7;
  }
}
.lead-confirm-result {
  max-width: 560px;
  margin: 0 auto;
  padding: 1rem 1.125rem;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}

.lead-confirm-result--success {
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.12);
  color: #b8ffd0;
}

.lead-confirm-result--error {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.12);
  color: #ffb3b3;
}

.lead-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lead-confirm-modal.is-open {
  display: block;
}

.lead-confirm-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 22, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-confirm-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
  max-height: calc(100dvh - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 20%, rgba(47, 83, 255, 0.14), transparent 20%), linear-gradient(180deg, rgba(10, 19, 35, 0.98) 0%, rgba(5, 12, 24, 0.98) 100%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
@media (max-width: 767px) {
  .lead-confirm-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 1rem);
    border-radius: 24px;
  }
}

.lead-confirm-modal__content {
  position: relative;
  padding: 2rem 1.25rem;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .lead-confirm-modal__content {
    padding: 2.5rem;
  }
}
@media (max-width: 767px) {
  .lead-confirm-modal__content {
    padding: 1.25rem 1rem 1.5rem;
    max-height: calc(100dvh - 1rem);
  }
}

.lead-confirm-modal__close {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  position: sticky;
  top: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(8, 16, 29, 0.92);
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  z-index: 4;
}
.lead-confirm-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: rotate(90deg);
}

.lead-confirm-modal__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding-right: 2.75rem;
}
@media (max-width: 767px) {
  .lead-confirm-modal__brand {
    margin-top: -2.5rem;
    margin-bottom: 1rem;
  }
}

.lead-confirm-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .lead-confirm-modal__actions {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .lead-confirm-modal__actions .btn {
    width: 100%;
  }
}

.lead-confirm-summary {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .lead-confirm-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .lead-confirm-summary {
    gap: 0.75rem;
  }
}

/* ========================================
   Card
======================================== */
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  border-radius: 24px;
  padding: 1.25rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

.card--soft {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.card--highlight {
  border-color: rgba(11, 145, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 190, 11, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%), rgba(255, 255, 255, 0.04);
}

.card--danger {
  border-color: rgba(11, 145, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%), rgba(255, 255, 255, 0.04);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(11, 129, 255, 0.12);
  color: #2f53ff;
}

.card__title {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.card__value {
  display: block;
  margin-bottom: 0.375rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.card__label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
}

/* ========================================
   Badge
======================================== */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.625rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
}

.badge--primary {
  border-color: rgba(47, 83, 255, 0.28);
  background: rgba(47, 83, 255, 0.1);
  color: #2f53ff;
}

.badge--danger {
  border-color: rgba(255, 59, 59, 0.25);
  background: rgba(255, 59, 59, 0.1);
  color: #ff8f8f;
}

.badge--success {
  border-color: rgba(0, 200, 83, 0.25);
  background: rgba(0, 200, 83, 0.1);
  color: #4caf50;
}

.badge--dark {
  background: rgba(0, 0, 0, 0.18);
}

.badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 1rem;
}
@media (min-width: 992px) {
  .hero-content {
    padding-top: 2rem;
    padding-right: 1rem;
  }
}

.hero-content .badge-list {
  display: none;
}

.hero-content .section__title {
  width: 70%;
  font-size: clamp(2rem, 3vw, 2.5rem);
  z-index: 2;
  position: relative;
}

.hero-content .section__description {
  width: 105px;
}
@media screen and (min-width: 1024px) {
  .hero-content .section__description {
    width: 305px;
  }
}

.hero-content .section__cta-row .btn--primary {
  justify-content: space-between;
  padding-inline: 1.75rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #2f53ff 0%, #2747e6 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(47, 83, 255, 0.28);
}

.hero-content .section__cta-row .btn--ghost {
  min-height: 56px;
  padding-inline: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-content .section__cta-row .btn--ghost:hover {
  color: #ffffff;
}

.hero-badges {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 280px;
}
@media screen and (min-width: 1024px) {
  .hero-badges {
    max-width: 235px;
    margin: 2rem 0 7rem;
  }
}

.hero-badge {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 1rem;
}

.hero-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 45%), linear-gradient(180deg, rgba(47, 83, 255, 0.22) 0%, rgba(47, 83, 255, 0.08) 100%);
  border: 1px solid rgba(47, 83, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 26px rgba(47, 83, 255, 0.18), 0 0 24px rgba(47, 83, 255, 0.14);
  color: #ffffff;
}
.hero-badge__icon svg,
.hero-badge__icon img,
.hero-badge__icon i {
  width: 24px;
  height: 24px;
}

.hero-badge__text {
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
  width: 100%;
  margin-top: -130px;
  z-index: -1;
}
@media (min-width: 1024px) {
  .hero-visual {
    position: absolute;
    bottom: 55px;
    max-width: 580px;
    right: 0px;
  }
}

/* ========================================
   Countdown
======================================== */
.countdown {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 1rem;
  border-radius: 24px;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .countdown {
    padding: 1.5rem;
  }
}

.countdown__header {
  display: grid;
  gap: 0.375rem;
}

.countdown__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.countdown__title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
}

.countdown__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.countdown__item {
  display: grid;
  gap: 0.35rem;
  padding: 0.875rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.countdown__number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.countdown__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

/* ========================================
   FAQ
======================================== */
.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.faq-item.is-active {
  border-color: rgba(11, 145, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item__button {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  text-align: left;
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #2f53ff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-active .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-item__content {
  display: none;
  padding: 0 1.25rem 1.125rem;
}

.faq-item.is-active .faq-item__content {
  display: block;
}

.faq-item__answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.regulation-content h2 {
  margin: 1rem 0;
}

/* ========================================
   Admin Draw Live
======================================== */
.draw-screen-body {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(47, 83, 255, 0.18), transparent 22%), radial-gradient(circle at 80% 15%, rgba(47, 83, 255, 0.1), transparent 18%), linear-gradient(180deg, #030916 0%, #07101d 45%, #030916 100%);
  color: #ffffff;
}

.draw-screen {
  min-height: 100vh;
  padding: 2rem 0 3rem;
}

.draw-screen__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .draw-screen__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.draw-screen__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 0.875rem;
  padding: 0.45rem 0.875rem;
  border: 1px solid rgba(47, 83, 255, 0.28);
  border-radius: 999px;
  background: rgba(47, 83, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.draw-screen__title {
  margin-bottom: 0.5rem;
}

.draw-screen__description {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.draw-screen__panel,
.draw-screen__last-result {
  margin-bottom: 1.5rem;
}

.draw-info-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .draw-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .draw-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.draw-info-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.5rem;
  border-radius: 24px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.draw-info-card__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
}

.draw-info-card__value {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.draw-result-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.draw-result-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.draw-result-card__title {
  margin-bottom: 0.5rem;
}

.draw-result-card__text {
  color: rgba(255, 255, 255, 0.78);
}

/* Modal */
.draw-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.draw-modal.is-open {
  display: block;
}

.draw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 22, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.draw-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 980px);
  margin: 4vh auto;
  min-height: 92vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 25%, rgba(47, 83, 255, 0.14), transparent 20%), linear-gradient(180deg, rgba(10, 19, 35, 0.98) 0%, rgba(5, 12, 24, 0.98) 100%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.draw-modal__content {
  height: 100%;
  padding: 2rem 1.25rem;
}
@media (min-width: 768px) {
  .draw-modal__content {
    padding: 2.5rem;
  }
}

.draw-modal__close {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.draw-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Shared states */
.is-hidden {
  display: none !important;
}

/* Confirm */
.draw-confirm,
.draw-countdown,
.draw-roulette,
.draw-winner {
  min-height: calc(92vh - 5rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.draw-confirm__eyebrow,
.draw-countdown__eyebrow,
.draw-roulette__eyebrow,
.draw-winner__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.draw-confirm__title,
.draw-countdown__title,
.draw-roulette__title,
.draw-winner__title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.draw-confirm__text,
.draw-countdown__text,
.draw-roulette__hint {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
}

.draw-confirm__actions,
.draw-winner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Countdown */
.draw-countdown__number {
  display: grid;
  place-items: center;
  width: min(42vw, 220px);
  height: min(42vw, 220px);
  margin: 1.25rem 0;
  border: 1px solid rgba(47, 83, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 45%), linear-gradient(180deg, rgba(47, 83, 255, 0.18) 0%, rgba(47, 83, 255, 0.08) 100%);
  box-shadow: 0 0 40px rgba(47, 83, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 18px rgba(47, 83, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 48px rgba(47, 83, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 18px rgba(47, 83, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
}
/* Roulette */
.draw-roulette__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 720px);
  min-height: 260px;
  padding: 2rem;
  margin: 1.5rem 0 1rem;
  border: 1px solid rgba(47, 83, 255, 0.22);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.draw-roulette__glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 83, 255, 0.26) 0%, rgba(47, 83, 255, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(12px);
  pointer-events: none;
}

.draw-roulette__pulse {
  position: relative;
  z-index: 1;
  width: min(32vw, 150px);
  height: min(32vw, 150px);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(47, 83, 255, 0.32) 0%, rgba(47, 83, 255, 0.12) 100%);
  border: 1px solid rgba(47, 83, 255, 0.35);
  box-shadow: 0 0 40px rgba(47, 83, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: roulettePulse 0.8s ease-in-out infinite;
}

@keyframes roulettePulse {
  0% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }
}
/* Winner */
.draw-winner__hero {
  display: grid;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .draw-winner__hero {
    grid-template-columns: 100px auto;
    text-align: left;
    justify-content: center;
  }
}

.draw-winner__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 1px solid rgba(47, 83, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 40%), linear-gradient(180deg, rgba(47, 83, 255, 0.28) 0%, rgba(47, 83, 255, 0.1) 100%);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(47, 83, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .draw-winner__avatar {
    margin: 0;
  }
}

.draw-winner__name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.draw-winner__meta {
  margin-top: 0.35rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.draw-winner__grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .draw-winner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.draw-winner__item {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
}

@media (min-width: 768px) {
  .draw-winner__item--full {
    grid-column: 1/-1;
  }
}

.draw-winner__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.draw-winner__value {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  word-break: break-word;
}

.draw-modal__content {
  position: relative;
  height: 100%;
  padding: 2rem 1.25rem;
}
@media (min-width: 768px) {
  .draw-modal__content {
    padding: 2.5rem;
  }
}

.draw-modal__brand {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .draw-modal__brand {
    top: 1.75rem;
  }
}

.draw-modal__logo {
  width: min(180px, 42vw);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 18px rgba(47, 83, 255, 0.14)) drop-shadow(0 0 32px rgba(47, 83, 255, 0.08));
}

.draw-confirm,
.draw-countdown,
.draw-roulette,
.draw-winner {
  min-height: calc(92vh - 5rem);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding-top: 4.5rem;
}
@media (min-width: 768px) {
  .draw-confirm,
  .draw-countdown,
  .draw-roulette,
  .draw-winner {
    padding-top: 5rem;
  }
}

.draw-screen__history {
  margin-top: 1.5rem;
}

.draw-history-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.draw-history-card__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .draw-history-card__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.draw-history-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f53ff;
}

.draw-history-card__title {
  margin-bottom: 0.35rem;
}

.draw-history-card__text {
  color: rgba(255, 255, 255, 0.78);
}

.draw-history-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(7, 13, 24, 0.45);
}

.draw-history-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

.draw-history-table thead th {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
}

.draw-history-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  vertical-align: middle;
}

.draw-history-table tbody tr:last-child td {
  border-bottom: 0;
}

.draw-history-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.draw-history-table__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

.draw-sensitive {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.draw-sensitive__value {
  color: #ffffff;
  word-break: break-word;
}

.draw-sensitive__toggle {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.draw-sensitive__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(47, 83, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}
.draw-sensitive__toggle svg {
  width: 16px;
  height: 16px;
  display: block;
}

.draw-history-table {
  width: 100%;
  min-width: 1320px;
  table-layout: auto;
  border-collapse: collapse;
}

.draw-history-table th,
.draw-history-table td {
  white-space: nowrap;
}

.draw-history-table td {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.draw-sensitive {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.draw-sensitive__value {
  white-space: nowrap;
}

.draw-sensitive__toggle {
  flex: 0 0 auto;
}/*# sourceMappingURL=main.css.map */