:root {
  --site-accent: #c68f57;
  --site-bg: #000000;
  --site-text: #ffffff;
  --site-muted: rgba(255, 255, 255, 0.62);
  --site-card: rgba(32, 33, 40, 0.92);
  --site-border: rgba(255, 255, 255, 0.08);
}



* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--site-bg);
  color: var(--site-text);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
          radial-gradient(circle at 75% 45%, rgba(198, 143, 87, 0.14), transparent 34%),
          linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.52) 100%);
}

.hero__container {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 80px));
  min-height: 650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__content {
  width: 52%;
  max-width: 650px;
  padding-top: 20px;
}

.hero__title {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.12;
  letter-spacing: 0.025em;
  font-weight: 900;
  color: #fff;
}

.hero__form {
  width: min(390px, 100%);
  height: 50px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 9px;
  background: var(--site-card);
  border: 1px solid var(--site-border);
}

.hero__input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.hero__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.hero__button {
  position: relative;
  flex: 0 0 auto;
  height: 40px;
  min-width: 96px;
  padding: 0 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: var(--site-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 8px 20px rgba(198, 143, 87, 0.18);
  transition:
          transform 0.28s ease,
          box-shadow 0.28s ease,
          background 0.28s ease;
}

.hero__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
          120deg,
          transparent,
          rgba(255, 255, 255, 0.34),
          transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.hero__button-text {
  position: relative;
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.28s ease;
}

.hero__button-arrow {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 10px;
  margin-left: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition:
          opacity 0.28s ease,
          transform 0.28s ease,
          margin-left 0.28s ease;
}

.hero__button-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateY(-50%);
}

.hero__button-arrow::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow:
          0 14px 30px rgba(198, 143, 87, 0.28),
          0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: #d09a61;
}

.hero__button:hover::before {
  left: 125%;
}

.hero__button:hover .hero__button-text {
  transform: translateX(-4px);
}

.hero__button:hover .hero__button-arrow {
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.hero__button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 18px rgba(198, 143, 87, 0.2);
}

.hero__button:focus-visible {
  outline: 2px solid rgba(198, 143, 87, 0.65);
  outline-offset: 4px;
}

.hero__stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 42px;
}



.hero__stat-value {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.hero__stat-label {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--site-muted);
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  width: 48%;
  min-height: 500px;
}

.hero__phone {
  position: absolute;
  right: 72px;
  top: 50%;
  width: min(405px, 84%);
  max-height: 540px;
  object-fit: contain;
  transform: translateY(-50%);
  z-index: 4;
}

.hero__coin {
  position: absolute;
  z-index: 5;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.hero__coin--eth {
  width: 82px;
  left: 5%;
  top: 16%;
}

.hero__coin--btc {
  width: 66px;
  left: 2%;
  bottom: 28%;
}

.hero__coin--usdt {
  width: 78px;
  right: -2%;
  top: 37%;
}

@media (min-width: 993px) {
  .hero {
    min-height: max(720px, 100vh);
  }

  .hero__container {
    min-height: max(720px, 100vh);
  }

  .hero__content {
    padding-top: 0;
    transform: translateY(-18px);
  }

  .hero__visual {
    transform: translateY(-8px);
  }
}

@media (max-width: 1200px) {
  .hero__container {
    width: min(1080px, calc(100% - 48px));
    gap: 32px;
  }

  .hero__phone {
    right: 38px;
    width: min(375px, 84%);
  }

  .hero__stats {
    gap: 28px;
  }

  .hero__stat-value {
    font-size: 24px;
  }

  .hero__stat-label {
    font-size: 13px;
  }

  .hero__coin--eth {
    width: 74px;
  }

  .hero__coin--btc {
    width: 60px;
  }

  .hero__coin--usdt {
    width: 70px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

  .hero__container {
    min-height: auto;
    padding: 92px 0 66px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(44px, 9vw, 66px);
  }

  .hero__stats {
    margin-top: 48px;
  }

  .hero__visual {
    width: 100%;
    min-height: 340px;
    margin-top: 4px;
  }

  .hero__phone {
    right: 16%;
    top: 50%;
    width: min(285px, 64%);
    max-height: 370px;
  }

  .hero__coin--eth {
    width: 62px;
    left: 18%;
    top: 12%;
  }

  .hero__coin--btc {
    width: 52px;
    left: 16%;
    bottom: 21%;
  }

  .hero__coin--usdt {
    width: 60px;
    right: 18%;
    top: 35%;
  }
}

@media (max-width: 768px) {
  .hero__container {
    width: min(100%, calc(100% - 32px));
    padding: 76px 0 48px;
    gap: 24px;
  }

  .hero__title {
    font-size: clamp(38px, 11.5vw, 56px);
    letter-spacing: 0.015em;
  }

  .hero__form {
    margin-top: 24px;
    height: 48px;
  }

  .hero__button {
    height: 38px;
    padding: 0 16px;
  }

  .hero__stats {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 22px;
    width: 100%;
  }

  .hero__stat-value {
    font-size: 22px;
  }

  .hero__stat-label {
    font-size: 13px;
    white-space: normal;
  }

  .hero__visual {
    display: none;
    min-height: 260px;
    margin-top: 14px;
  }

  .hero__phone {
    right: 13%;
    width: min(215px, 60%);
    max-height: 270px;
  }

  .hero__coin--eth {
    width: 46px;
    left: 16%;
    top: 9%;
  }

  .hero__coin--btc {
    width: 40px;
    left: 14%;
    bottom: 19%;
  }

  .hero__coin--usdt {
    width: 46px;
    right: 15%;
    top: 35%;
  }
}

@media (max-width: 560px) {
  .hero__container {
    padding: 68px 0 42px;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero__stats {
    margin-top: 36px;
    gap: 22px 16px;
  }

  .hero__visual {
    min-height: 220px;
    margin-top: 12px;
  }

  .hero__phone {
    right: 10%;
    width: min(180px, 58%);
    max-height: 230px;
  }

  .hero__coin--eth {
    width: 40px;
    left: 13%;
    top: 10%;
  }

  .hero__coin--btc {
    width: 36px;
    left: 11%;
    bottom: 20%;
  }

  .hero__coin--usdt {
    width: 40px;
    right: 11%;
    top: 36%;
  }
}

@media (max-width: 480px) {
  .hero__container {
    width: min(100%, calc(100% - 28px));
    padding: 64px 0 40px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__form {
    width: 100%;
    height: 46px;
  }

  .hero__input {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero__button {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }

  .hero__stat-value {
    font-size: 20px;
  }

  .hero__stat-label {
    font-size: 12px;
  }

  .hero__visual {
    min-height: 205px;
    margin-top: 10px;
  }

  .hero__phone {
    right: 8%;
    width: min(165px, 56%);
    max-height: 215px;
  }

  .hero__coin--eth {
    width: 35px;
    left: 10%;
    top: 11%;
  }

  .hero__coin--btc {
    width: 32px;
    left: 8%;
    bottom: 21%;
  }

  .hero__coin--usdt {
    width: 35px;
    right: 8%;
    top: 37%;
  }
}

@media (max-width: 380px) {
  .hero__container {
    width: min(100%, calc(100% - 24px));
    padding: 58px 0 36px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__stats {
    margin-top: 34px;
    gap: 20px 12px;
  }

  .hero__stat-value {
    font-size: 19px;
  }

  .hero__stat-label {
    font-size: 11px;
  }

  .hero__visual {
    min-height: 190px;
    margin-top: 8px;
  }

  .hero__phone {
    right: 7%;
    width: min(150px, 54%);
    max-height: 200px;
  }

  .hero__coin--eth {
    width: 32px;
    left: 9%;
    top: 12%;
  }

  .hero__coin--btc {
    width: 29px;
    left: 7%;
    bottom: 22%;
  }

  .hero__coin--usdt {
    width: 32px;
    right: 7%;
    top: 38%;
  }
}

.opportunities {
  position: relative;
  padding: 74px 0 86px;
  background: #ffffff;
  color: #17202b;
}

.opportunities__container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.opportunities__title {
  margin: 0 0 50px;
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1d2530;
}

.opportunities__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.opportunities__side {
  display: grid;
  gap: 18px;
}

.market-card {
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(23, 32, 43, 0.06);
  box-shadow: 0 18px 45px rgba(20, 27, 38, 0.04);
}

.market-card--trending {
  min-height: 560px;
}

.market-card__head {
  margin-bottom: 22px;
}

.market-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1d2530;
}

.market-table {
  width: 100%;
}

.market-table__row {
  display: grid;
  grid-template-columns: 1.55fr 1fr 0.9fr 88px;
  align-items: center;
  column-gap: 20px;
}

.market-table__row--small,
.market-table__item--small {
  grid-template-columns: 1.45fr 0.95fr 0.8fr;
}

.market-table__row > div,
.market-table__row > button,
.market-table__item > div,
.market-table__item > button {
  min-width: 0;
}

.market-table__header {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.2;
  color: #949ba8;
}

.market-table__item {
  min-height: 58px;
  font-size: 15px;
  color: #121a24;
}

.market-table__coin {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.market-table__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.market-table__symbol {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-table__price {
  white-space: nowrap;
}

.market-table__change {
  white-space: nowrap;
  color: #149c58;
}

.market-table__change.is-negative {
  color: #f04438;
}

.market-table__trade {
  width: 66px;
  height: 32px;
  border: 1px solid var(--site-accent);
  border-radius: 5px;
  background: transparent;
  color: var(--site-accent);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.market-table__trade:hover {
  background: var(--site-accent);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .opportunities__container {
    width: min(100%, calc(100% - 48px));
  }

  .opportunities__grid {
    grid-template-columns: 1fr;
  }

  .market-card--trending {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .opportunities {
    padding: 58px 0 66px;
  }

  .opportunities__container {
    width: min(100%, calc(100% - 32px));
  }

  .opportunities__title {
    margin-bottom: 34px;
    font-size: 28px;
    letter-spacing: 0.04em;
  }

  .market-card {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .market-card__title {
    font-size: 22px;
  }

  .market-table__row {
    grid-template-columns: 1.45fr 0.9fr 0.85fr;
    column-gap: 12px;
  }

  .market-table__row--small,
  .market-table__item--small {
    grid-template-columns: 1.45fr 0.9fr 0.85fr;
  }

  .market-table__row > div:nth-child(4),
  .market-table__trade {
    display: none;
  }

  .market-table__item {
    min-height: 50px;
    font-size: 14px;
  }

  .market-table__header {
    font-size: 12px;
  }

  .market-table__icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 520px) {
  .opportunities {
    padding: 48px 0 56px;
  }

  .opportunities__title {
    font-size: 24px;
    line-height: 1.25;
  }

  .market-card {
    padding: 20px 14px;
  }

  .market-card__head {
    margin-bottom: 18px;
  }

  .market-card__title {
    font-size: 20px;
  }

  .market-table__row,
  .market-table__row--small,
  .market-table__item--small {
    grid-template-columns: 1.35fr 0.85fr 0.75fr;
    column-gap: 8px;
  }

  .market-table__item {
    min-height: 48px;
    font-size: 13px;
  }

  .market-table__coin {
    gap: 9px;
  }

  .market-table__icon {
    width: 25px;
    height: 25px;
  }

  .market-table__header {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .opportunities__container {
    width: min(100%, calc(100% - 24px));
  }

  .market-table__row,
  .market-table__row--small,
  .market-table__item--small {
    grid-template-columns: 1.25fr 0.78fr 0.72fr;
  }

  .market-table__item {
    font-size: 12px;
  }
}

.possibilities {
  position: relative;
  padding: 72px 0 86px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.possibilities__container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.possibilities__title {
  margin: 0 0 82px;
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.possibilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  align-items: start;
}

.possibility-card {
  position: relative;
  display: block;
  min-height: 360px;
  padding: 26px 22px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  border: 1px solid transparent;
  background:
          linear-gradient(#000, #000) padding-box,
          linear-gradient(135deg, transparent, rgba(198, 143, 87, 0.22), transparent) border-box;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0);
  transition:
          transform 0.35s ease,
          border-color 0.35s ease,
          background 0.35s ease,
          box-shadow 0.35s ease;
}

.possibility-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
          radial-gradient(circle at 50% 0%, rgba(198, 143, 87, 0.18), transparent 42%),
          linear-gradient(180deg, rgba(198, 143, 87, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.possibility-card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--site-accent), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
          opacity 0.35s ease,
          transform 0.35s ease;
}

.possibility-card:hover {
  transform: translateY(-10px);
  border-color: rgba(198, 143, 87, 0.28);
  box-shadow:
          0 22px 70px rgba(198, 143, 87, 0.12),
          0 18px 45px rgba(0, 0, 0, 0.45);
}

.possibility-card:hover::before {
  opacity: 1;
}

.possibility-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.possibility-card:active {
  transform: translateY(-5px) scale(0.985);
}

.possibility-card:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 5px;
}

.possibility-card__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.possibility-card__image {
  max-width: 240px;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 0 0 rgba(198, 143, 87, 0));
  transition:
          transform 0.35s ease,
          filter 0.35s ease;
}

.possibility-card:hover .possibility-card__image {
  transform: translateY(-8px) scale(1.045);
  filter: drop-shadow(0 18px 24px rgba(198, 143, 87, 0.18));
}

.possibility-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  transition: color 0.35s ease;
}

.possibility-card:hover .possibility-card__title {
  color: var(--site-accent);
}

.possibility-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.35s ease;
}

.possibility-card:hover .possibility-card__text {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
  .possibilities__container {
    width: min(100%, calc(100% - 48px));
  }

  .possibilities__grid {
    gap: 42px;
  }

  .possibility-card {
    min-height: 340px;
    padding: 24px 18px 28px;
  }

  .possibility-card__image {
    max-width: 210px;
  }

  .possibility-card__title {
    font-size: 23px;
  }

  .possibility-card__text {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .possibilities {
    padding: 62px 0 72px;
  }

  .possibilities__title {
    margin-bottom: 58px;
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .possibilities__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .possibility-card {
    min-height: auto;
    padding: 28px 22px 30px;
  }

  .possibility-card__image-wrap {
    height: 145px;
    margin-bottom: 28px;
  }

  .possibility-card__image {
    max-width: 210px;
    max-height: 145px;
  }

  .possibility-card__text br {
    display: none;
  }

  .possibility-card__text {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .possibilities {
    padding: 52px 0 62px;
  }

  .possibilities__container {
    width: min(100%, calc(100% - 32px));
  }

  .possibilities__title {
    margin-bottom: 46px;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .possibilities__grid {
    gap: 22px;
  }

  .possibility-card {
    padding: 24px 16px 26px;
    border-radius: 18px;
  }

  .possibility-card__image-wrap {
    height: 120px;
    margin-bottom: 24px;
  }

  .possibility-card__image {
    max-width: 175px;
    max-height: 120px;
  }

  .possibility-card__title {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .possibility-card__text {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .possibilities__container {
    width: min(100%, calc(100% - 24px));
  }

  .possibilities__title {
    font-size: 22px;
  }

  .possibility-card__image {
    max-width: 155px;
  }

  .possibility-card__title {
    font-size: 20px;
  }
}

.security {
  position: relative;
  padding: 72px 0 84px;
  background: #ffffff;
  color: #17202b;
  overflow: hidden;
}

.security__container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.security__title {
  margin: 0 0 72px;
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #1d2530;
}

.security__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.security__list {
  display: grid;
  gap: 44px;
}

.security-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px 18px 0;
  border: none;
  outline: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  border-radius: 18px;
  color: inherit;
  transform: translateX(0);
  transition:
          transform 0.35s ease,
          background 0.35s ease,
          padding-left 0.35s ease,
          box-shadow 0.35s ease;
}

.security-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
          radial-gradient(circle at 0% 50%, rgba(198, 143, 87, 0.14), transparent 42%),
          linear-gradient(90deg, rgba(198, 143, 87, 0.08), transparent 72%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.security-item:hover,
.security-item.is-active {
  padding-left: 18px;
  transform: translateX(8px);
}

.security-item:hover::before,
.security-item.is-active::before {
  opacity: 1;
}

.security-item__line {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 3px;
  height: 0;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--site-accent);
  box-shadow: 0 0 22px rgba(198, 143, 87, 0.45);
  transition: height 0.35s ease;
}

.security-item:hover .security-item__line,
.security-item.is-active .security-item__line {
  height: 74px;
}

.security-item__content {
  position: relative;
  z-index: 1;
  display: block;
}

.security-item__title {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #17202b;
  transition: color 0.35s ease;
}

.security-item:hover .security-item__title,
.security-item.is-active .security-item__title {
  color: var(--site-accent);
}

.security-item__text {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #9097a3;
  transition: color 0.35s ease;
}

.security-item:hover .security-item__text,
.security-item.is-active .security-item__text {
  color: #6f7784;
}

.security__visual {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security__visual::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
          radial-gradient(circle, rgba(198, 143, 87, 0.16), transparent 62%);
  filter: blur(6px);
  opacity: 0.85;
}

.security__image-box {
  position: relative;
  width: min(460px, 100%);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security__image {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  filter: blur(8px);
  transition:
          opacity 0.38s ease,
          transform 0.38s ease,
          filter 0.38s ease;
}

.security__image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .security__container {
    width: min(100%, calc(100% - 48px));
  }

  .security__content {
    gap: 40px;
  }

  .security-item__title {
    font-size: 22px;
  }

  .security__image-box {
    width: min(400px, 100%);
    height: 320px;
  }
}

@media (max-width: 860px) {
  .security {
    padding: 62px 0 72px;
  }

  .security__title {
    margin-bottom: 48px;
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .security__content {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .security__visual {
    order: -1;
    min-height: 280px;
  }

  .security__image-box {
    height: 270px;
  }

  .security__list {
    gap: 24px;
  }

  .security-item {
    padding: 18px 16px;
    background: #fafafa;
    border: 1px solid rgba(23, 32, 43, 0.06);
  }

  .security-item:hover,
  .security-item.is-active {
    padding-left: 16px;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(20, 27, 38, 0.06);
  }

  .security-item__text br {
    display: none;
  }
}

@media (max-width: 520px) {
  .security {
    padding: 52px 0 62px;
  }

  .security__container {
    width: min(100%, calc(100% - 32px));
  }

  .security__title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 38px;
  }

  .security__visual {
    min-height: 220px;
  }

  .security__visual::before {
    width: 280px;
    height: 280px;
  }

  .security__image-box {
    height: 220px;
  }

  .security-item {
    border-radius: 16px;
    gap: 14px;
  }

  .security-item__title {
    margin-bottom: 11px;
    font-size: 19px;
  }

  .security-item__text {
    font-size: 13px;
    line-height: 1.5;
  }

  .security-item:hover .security-item__line,
  .security-item.is-active .security-item__line {
    height: 62px;
  }
}

@media (max-width: 380px) {
  .security__container {
    width: min(100%, calc(100% - 24px));
  }

  .security__title {
    font-size: 22px;
  }

  .security__image-box {
    height: 190px;
  }

  .security-item {
    padding: 16px 14px;
  }

  .security-item:hover,
  .security-item.is-active {
    padding-left: 14px;
  }

  .security-item__title {
    font-size: 18px;
  }

  .security-item__text {
    font-size: 12px;
  }
}

.faq {
  position: relative;
  padding: 62px 0 72px;
  background: #ffffff;
  color: #17202b;
}

.faq__container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1d2530;
}

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

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: 1px solid transparent;
  transition:
          background 0.3s ease,
          border-color 0.3s ease,
          box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
  background: #fafafa;
  border-color: rgba(23, 32, 43, 0.06);
  box-shadow: 0 16px 42px rgba(20, 27, 38, 0.04);
}

.faq-item__button {
  width: 100%;
  min-height: 58px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #17202b;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-item__question,
.faq-item.is-open .faq-item__question {
  color: var(--site-accent);
}

.faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #17202b;
  transform: translate(-50%, -50%);
  transition:
          transform 0.3s ease,
          background 0.3s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item:hover .faq-item__icon::before,
.faq-item:hover .faq-item__icon::after,
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--site-accent);
}

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

.faq-item__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.34s ease;
}

.faq-item__answer-inner {
  max-width: 920px;
  padding: 0 72px 24px 30px;
  font-size: 15px;
  line-height: 1.65;
  color: #7f8793;
}

@media (max-width: 900px) {
  .faq__container {
    width: min(100%, calc(100% - 48px));
  }

  .faq__title {
    font-size: 30px;
    letter-spacing: 0.05em;
  }

  .faq-item__button {
    padding: 0 22px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__answer-inner {
    padding: 0 56px 22px 22px;
  }
}

@media (max-width: 560px) {
  .faq {
    padding: 48px 0 58px;
  }

  .faq__container {
    width: min(100%, calc(100% - 32px));
  }

  .faq__title {
    margin-bottom: 34px;
    font-size: 25px;
    line-height: 1.25;
  }

  .faq-item {
    border-radius: 13px;
  }

  .faq-item__button {
    min-height: 56px;
    padding: 0 16px;
    gap: 18px;
  }

  .faq-item__question {
    font-size: 15px;
  }

  .faq-item__icon {
    width: 16px;
    height: 16px;
  }

  .faq-item__answer-inner {
    padding: 0 16px 20px;
    font-size: 13px;
    line-height: 1.55;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition:
          opacity 0.38s ease,
          transform 0.38s ease,
          filter 0.38s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero__title.reveal,
.hero__title.reveal.is-visible,
.hero__form.reveal,
.hero__form.reveal.is-visible,
.hero__stat.reveal,
.hero__stat.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.hero__phone.reveal,
.hero__phone.reveal.is-visible {
  opacity: 1;
  transform: translateY(-50%);
  filter: none;
  transition: none;
}

.hero__coin {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero__coin.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero__phone.reveal,
  .hero__phone.reveal.is-visible {
    transform: translateY(-50%);
  }
}

.logo-section {
  width: 100%;
  background: #f4f5f6;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 32px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.04);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-section {
    padding: 18px 0;
  }

  .logo-item {
    margin: 0 28px;
  }

  .logo-item img {
    max-height: 26px;
    max-width: 130px;
  }

  .logo-track {
    animation-duration: 20s;
  }
}

.trading-app-section {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 24px 20px 86px;
  overflow: hidden;
}

.trading-app-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.trading-app-title {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 400;
  color: #fff;
  margin: 0 0 60px;
  letter-spacing: -0.8px;
}

.trading-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1736 / 887;
  margin: 0 auto 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trading-phone-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 110%;
  height: 42%;
  transform: translateX(-50%);
  background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0.78) 48%,
          #000 100%
  );
  pointer-events: none;
  z-index: 2;
}

.trading-phone-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.trading-app-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trading-store-btn {
  min-width: 176px;
  height: 59px;
  padding: 0 20px;
  border-radius: 9px;
  background: #1c1d24;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.trading-store-btn:hover {
  background: #242631;
  transform: translateY(-2px);
}

.store-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  display: block;
}

.apple-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .trading-app-section {
    padding: 28px 16px 62px;
  }

  .trading-app-title {
    font-size: 30px;
    margin-bottom: 42px;
    letter-spacing: -0.5px;
  }

  .trading-phone-wrap {
    max-width: 520px;
    margin-bottom: 42px;
  }

  .trading-app-buttons {
    gap: 12px;
  }

  .trading-store-btn {
    min-width: 150px;
    height: 54px;
    padding: 0 16px;
    font-size: 17px;
    gap: 11px;
  }

  .store-icon {
    width: 30px;
    height: 30px;
  }

  .apple-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .trading-app-section {
    padding: 26px 14px 54px;
  }

  .trading-app-title {
    font-size: 25px;
    margin-bottom: 34px;
  }

  .trading-phone-wrap {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .trading-phone-wrap::after {
    height: 46%;
  }

  .trading-app-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .trading-store-btn {
    width: 200px;
    min-width: 200px;
  }
}