:root {
  --bg: #0b1220;
  --bg2: #0f172a;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --brand: #f59e0b;
  --brand2: #fbbf24;
  --ink: #111827;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(245, 158, 11, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(59, 130, 246, 0.12), transparent 55%),
    var(--bg);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #111827;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}

.skip:focus {
  left: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__more {
  position: relative;
}

.nav__more[open] .nav__morebtn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav__morebtn {
  list-style: none;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.nav__morebtn::-webkit-details-marker {
  display: none;
}

.nav__morebtn::after {
  content: "▾";
  margin-left: 8px;
  opacity: 0.85;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(11, 18, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  width: 260px;
}

.nav__dropdown .nav__link {
  color: var(--text);
  padding: 10px 10px;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.06s ease, filter 0.12s ease, background 0.12s ease;
}

.btn:hover {
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  border-color: rgba(245, 158, 11, 0.55);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
}

.btn--wide {
  padding: 12px 16px;
  min-width: 180px;
}

.hero {
  padding: 58px 0 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.05;
  margin: 14px 0 12px;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.pill__k {
  color: var(--brand2);
  font-weight: 900;
  font-size: 13px;
}

.pill__v {
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.hero__media {
  position: relative;
}

.device {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px;
  box-shadow: var(--shadow);
}

.device__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

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

.stat {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px;
}

.stat__n {
  font-weight: 950;
  color: var(--text);
}

.stat__d {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.35;
}

.section {
  padding: 58px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.section__head h2 {
  margin: 0;
  font-size: 28px;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 42px) / 4);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider__item {
  scroll-snap-align: start;
}

.slider:focus {
  outline: none;
}

.slider:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.65);
  outline-offset: 4px;
  border-radius: 16px;
}

.slider::-webkit-scrollbar {
  height: 10px;
}

.slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

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

.list li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.7);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.split--tight {
  grid-template-columns: 1fr 1fr;
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.checks {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.check {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
}

.note {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(59, 130, 246, 0.10);
  color: #c7d2fe;
  line-height: 1.6;
}

.panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 16px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.panel__hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 14px 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--text);
}

.steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.55;
}

.section--cta {
  padding: 44px 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 22px;
  padding: 22px;
}

.cta__content h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.cta__content p {
  margin: 0;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__q {
  width: 100%;
  text-align: left;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq__a {
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  line-height: 1.6;
}

.faq__q[aria-expanded="true"] + .faq__a {
  display: block;
}

.accordion {
  display: grid;
  gap: 10px;
}

.acc {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.acc__q {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 900;
}

.acc__q::-webkit-details-marker {
  display: none;
}

.acc__q::after {
  content: "▾";
  float: right;
  color: rgba(229, 231, 235, 0.85);
}

.acc[open] .acc__q::after {
  content: "▴";
}

.acc__a {
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 12px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.field__input {
  width: 100%;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 750;
  outline: none;
}

.field__input:focus {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.field__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.field__check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.field__check span {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.field__check a {
  text-decoration: underline;
}

.consent {
  position: fixed;
  z-index: 90;
}

.consent--banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.consent__bar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.consent__copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.consent__title {
  font-weight: 950;
  letter-spacing: 0.02em;
}

.consent__text {
  color: var(--muted);
  line-height: 1.55;
}

.consent__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.consent__links a,
.consent__linkbtn {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.consent__links a:hover,
.consent__linkbtn:hover {
  text-decoration: underline;
}

.consent--overlay {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
}

.consent__modal {
  width: min(640px, 100%);
  background: rgba(11, 18, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.consent__opt {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 14px 0;
  font-weight: 850;
}

.consent__chk {
  width: 18px;
  height: 18px;
}

.consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}

.consent-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  padding: 12px 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(11, 18, 32, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.consent-tab:hover {
  background: rgba(11, 18, 32, 0.95);
}

.consent-tab:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.65);
  outline-offset: 3px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.12);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__linkbtn {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .slider {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
  .consent__bar {
    flex-direction: column;
    align-items: stretch;
  }
  .consent__actions {
    justify-content: stretch;
  }
  .split,
  .split--tight {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 820px) {
  .topbar__cta {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(11, 18, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
    width: min(320px, calc(100vw - 40px));
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__link {
    color: var(--text);
  }

  .nav__morebtn {
    color: var(--text);
  }

  .nav__dropdown {
    position: static;
    width: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 6px;
  }
}

@media (max-width: 680px) {
  .form__row {
    grid-template-columns: 1fr;
  }
  .consent-tab {
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .slider {
    grid-auto-columns: 85%;
  }
}
