:root {
  --blue: #0c74f7;
  --blue-soft: #a5cdff;
  --ink: #212233;
  --muted: #9c9da4;
  --surface: #f6f7f9;
  --white: #ffffff;
  --hero-top: rgba(33, 34, 51, 1);
  --hero-bot: rgba(8, 9, 28, 1);
  --radius-hero: 32px;
  --radius-card: 20px;
  --radius-header: 14px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tap-size: 48px;
  --max-app: 430px;
  --header-float: calc(12px + env(safe-area-inset-top));
  --header-bar-h: 56px;
  --section-pad-y: 38px;
  --section-pad-x: 20px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

#how,
.feature-card[id],
#download,
#faq {
  scroll-margin-top: calc(var(--header-float) + var(--header-bar-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(12, 116, 247, 0.15);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

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

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

.app {
  position: relative;
  max-width: var(--max-app);
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding-top: 0;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.header {
  position: fixed;
  top: var(--header-float);
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 24px);
  max-width: calc(var(--max-app) - 24px);
  pointer-events: none;
}

.header > * {
  pointer-events: auto;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-bar-h);
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-header);
  box-shadow: 0 4px 24px rgba(33, 34, 51, 0.1), 0 0 0 1px rgba(33, 34, 51, 0.06);
}

.header__logo {
  display: flex;
  align-items: center;
  min-height: 36px;
  flex-shrink: 0;
}

.header__logo img {
  width: auto;
  height: 36px;
  display: block;
}

.header__burger {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap-size);
  height: var(--tap-size);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header__burger:active {
  background: rgba(33, 34, 51, 0.06);
}

.header__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  flex-shrink: 0;
  border-radius: 1px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__scrim {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(8, 9, 28, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.header__sheet {
  position: fixed;
  top: calc(var(--header-float) + var(--header-bar-h) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 280;
  width: calc(100% - 24px);
  max-width: calc(var(--max-app) - 24px);
  max-height: min(70vh, 520px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 12px;
  background: var(--white);
  border-radius: var(--radius-header);
  box-shadow: 0 16px 48px rgba(8, 9, 28, 0.25);
}

.header__sheet[hidden] {
  display: none !important;
}

.header__sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(33, 34, 51, 0.08);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-header) var(--radius-header) 0 0;
}

.header__sheet-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.header__close {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.header__sheet-nav {
  padding: 8px 8px 4px;
}

.header__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  display: flex;
  align-items: center;
  min-height: var(--tap-size);
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.15s ease;
}

.header__link:active {
  background: var(--surface);
}

.hero {
  position: relative;
  margin: 0;
  padding: 0;
  background: linear-gradient(0.5turn, var(--hero-top) 0%, var(--hero-bot) 100%);
}

.hero__card {
  position: relative;
  border-radius: 0;
  padding: 0 22px;
  padding-top: calc(var(--header-float) + var(--header-bar-h) + 36px);
  padding-bottom: 8px;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  text-align: center;
}

.hero__content {
  max-width: 25rem;
  margin: 0 auto;
  padding-bottom: 24px;
}

.hero__title {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero__line1,
.hero__line2 {
  display: block;
  font-size: 36px;
  line-height: 1.16;
  color: var(--white);
}

.hero__typed-wrap {
  min-height: 2em;
  margin: 0 auto 8px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--blue-soft);
  text-align: center;
}

.hero__typed {
  display: inline;
  word-break: break-word;
}

.hero__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--blue-soft);
  vertical-align: -0.1em;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cursor {
    animation: none;
    opacity: 0;
  }
}

.hero__sub {
  margin: 0 auto 26px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 23rem;
  text-align: center;
}

.hero__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.hero__cta-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-btns .btn--wide {
  width: 100%;
}

.btn--hero__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.btn--hero__label {
  padding-top: 1px;
  font-weight: 800;
}

.hero__shot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 12px 4px 0;
  margin: 0;
  box-sizing: border-box;
}

.hero__shot-stack {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__shot-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
}

.hero__obvodka {
  position: absolute;
  left: 50%;
  bottom: min(9%, 36px);
  z-index: 2;
  width: 86%;
  max-width: 320px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__pay-hud {
  position: absolute;
  left: 50%;
  bottom: min(13%, 44px);
  transform: translateX(-50%);
  width: 84%;
  max-width: 305px;
  z-index: 3;
  pointer-events: none;
}

.hero__pay-hud-inner {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__pay-qr {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.hero__pay-mid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}

.hero__pay-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero__pay-merchant {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__pay-amt {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  text-align: right;
}

.hero__pay-rub {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__pay-usdt {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #d4e8ff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero__shot.has-fallback .hero__pay-hud {
  bottom: 10px;
}

.hero__shot.has-fallback {
  width: calc(100% - 8px);
  max-width: none;
  min-height: min(40vw, 200px);
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(12, 116, 247, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(30, 33, 56, 0.6) 0%, rgba(13, 15, 34, 0.9) 100%);
  border-radius: 20px;
}

.hero__shot.has-fallback .hero__shot-img {
  display: none;
}

.hero__shot.has-fallback .hero__obvodka {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 82%;
  max-width: 300px;
  margin: 12px auto 0;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-size);
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn.btn--primary.btn--hero {
  gap: 11px;
  min-height: 56px;
  padding: 0 24px 0 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 15px;
  box-shadow:
    0 4px 14px rgba(12, 116, 247, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.12);
}

.btn--wide {
  width: 100%;
  max-width: 340px;
}

.cta__btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.cta__btns .btn--wide {
  width: 100%;
  display: inline-flex;
}

.btn--overlay {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
  width: calc(100% - 32px);
  max-width: 280px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__subtract {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__subtract > img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}


.hero__subtract .currency-marquee {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  bottom: 0;
  z-index: 2;
  line-height: 1;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 0;
  box-sizing: border-box;
  pointer-events: none;
}

.currency-marquee__inner {
  position: absolute;
  left: 0;
  width: max-content;
  height: 16px;
  min-height: 0;
  display: flex;
  align-items: center;
  bottom: clamp(5px, 32%, 11px);
  animation: currency-marquee-scroll 52s linear infinite;
  will-change: transform;
}

.currency-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0 6px;
  height: 100%;
}

.currency-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(33, 34, 51, 0.08);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hero__subtract .currency-marquee__flag.fi {
  display: inline-block;
  width: 14px;
  height: 10px;
  line-height: 1;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  background-size: cover !important;
  background-position: center !important;
}

.currency-marquee__code {
  font-variant-numeric: tabular-nums;
}

@keyframes currency-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .currency-marquee__inner {
    animation: none;
    left: 0;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .currency-marquee__inner::-webkit-scrollbar {
    display: none;
  }

  .currency-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .currency-marquee__group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    padding: 0 6px;
  }
}

.section {
  padding: var(--section-pad-y) var(--section-pad-x) calc(var(--section-pad-y) + 4px);
}

.stats {
  padding-top: 30px;
  background: var(--white);
  border-radius: 0;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.stats__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat {
  text-align: center;
}

.stat__value {
  margin: 0 0 6px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}

.stat__label {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.45;
}

.features {
  background: var(--white);
}

.section-head {
  margin-bottom: 26px;
  text-align: center;
  max-width: 23rem;
  margin-left: auto;
  margin-right: auto;
}

.section-head__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.28;
}

.section-head__sub {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f2f3f4;
  border: 1px solid rgba(33, 34, 51, 0.06);
  box-shadow: 0 2px 14px rgba(33, 34, 51, 0.04);
}

.feature-card__body {
  padding: 22px 20px 12px;
  text-align: center;
  background: transparent;
}

.feature-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.feature-card__desc {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card__visual {
  position: relative;
  min-height: 200px;
  background: transparent;
  pointer-events: none;
}

.feature-card__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

.feature-card__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f2f3f4;
}

.feature-card__visual.has-fallback img {
  display: none;
}

.feature-card__visual .btn.btn--feature {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 50px;
  padding: 0 24px;
  width: calc(100% - 40px);
  max-width: 300px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.feature-card__visual .btn.btn--feature:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}

.how {
  background: linear-gradient(180deg, #f5f7fc 0%, #ffffff 45%, #ffffff 100%);
  border-top: 1px solid rgba(33, 34, 51, 0.05);
}

.how__head {
  text-align: center;
  margin-bottom: 32px;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.how__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: var(--ink);
}

.how__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how__step {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding-bottom: 26px;
}

.how__step:last-child {
  padding-bottom: 0;
}

.how__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  flex-shrink: 0;
}

.how__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0c74f7 0%, #4f96ff 100%);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(12, 116, 247, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.how__badge-num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.how__line {
  flex: 1;
  width: 3px;
  min-height: 22px;
  margin-top: 11px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(12, 116, 247, 0.55) 0%, rgba(12, 116, 247, 0.12) 100%);
}

.how__panel {
  flex: 1;
  min-width: 0;
  padding: 18px 20px 20px;
  background: #fff;
  border-radius: 19px;
  border: 1px solid rgba(12, 116, 247, 0.1);
  box-shadow:
    0 2px 12px rgba(33, 34, 51, 0.05),
    0 8px 28px rgba(12, 116, 247, 0.06);
}

.how__text {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.how__panel:has(.how__hint) .how__text {
  margin-bottom: 0;
}

.how__hint {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 13px;
  margin-top: 11px;
  border-top: 1px dashed rgba(33, 34, 51, 0.12);
}

.cta {
  text-align: center;
  background: linear-gradient(0turn, rgba(211, 226, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-top: 1px solid rgba(33, 34, 51, 0.06);
}

.cta.section {
  padding-bottom: 0;
}

.cta__title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.38;
  color: var(--ink);
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
}

.cta__visual {
  margin-top: 26px;
  margin-bottom: 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.cta__img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

.secure {
  background: linear-gradient(180deg, #f4f7fd 0%, #ffffff 55%);
  border-top: 1px solid rgba(12, 116, 247, 0.1);
  color: var(--ink);
}

.secure__inner {
  max-width: 25rem;
  margin: 0 auto;
}

.secure__title {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.secure__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.secure__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 17px;
  border: 1px solid rgba(33, 34, 51, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 20px rgba(12, 116, 247, 0.06);
}

.secure__icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(160deg, #e8f1ff 0%, #f4f7fc 100%);
  border: 1px solid rgba(12, 116, 247, 0.12);
}

.secure__icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.secure__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.48;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fc 100%);
  border-top: 1px solid rgba(33, 34, 51, 0.06);
}

.faq__head {
  text-align: center;
  margin-bottom: 24px;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.faq__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: var(--ink);
}

.faq__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.faq__list {
  max-width: 26rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border-radius: 18px;
  border: 1px solid rgba(12, 116, 247, 0.12);
  background: #fff;
  box-shadow:
    0 2px 12px rgba(33, 34, 51, 0.05),
    0 4px 20px rgba(12, 116, 247, 0.05);
  overflow: hidden;
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 16px 18px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease;
}

.faq__trigger:active {
  background: rgba(12, 116, 247, 0.06);
}

.faq__trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.faq__q {
  flex: 1;
  min-width: 0;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(12, 116, 247, 0.1);
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
  border-radius: 1px;
  background: var(--blue);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__icon {
  background: rgba(12, 116, 247, 0.18);
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq__panel {
  border-top: 1px solid rgba(33, 34, 51, 0.07);
}

.faq__panel[hidden] {
  display: none !important;
}

.faq__body {
  padding: 14px 18px 18px;
}

.faq__p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.faq__p:last-child {
  margin-bottom: 0;
}

.faq__ol,
.faq__ul {
  margin: 0 0 12px;
  padding-left: 1.35em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.faq__ol:last-child,
.faq__ul:last-child {
  margin-bottom: 0;
}

.faq__ol li,
.faq__ul li {
  margin-bottom: 8px;
}

.faq__ol li:last-child,
.faq__ul li:last-child {
  margin-bottom: 0;
}

.faq__ul--compact li {
  margin-bottom: 6px;
}

.footer {
  padding: 32px 22px calc(36px + env(safe-area-inset-bottom));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.footer__logo {
  display: block;
  width: 196px;
  height: auto;
  margin-bottom: 20px;
}

.footer__addr {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.78);
}

.footer__note {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.48);
}

.footer__copy {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
}

@media (min-width: 480px) {
  body {
    background: linear-gradient(180deg, #e4e7ec 0%, #f0f2f5 100%);
  }

  .app {
    margin-top: 12px;
    margin-bottom: 24px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }
}
