:root {
  --color-navy: #19144B;
  --color-deep-violet: #5F19C8;
  --color-violet: #8633E9;
  --color-light-violet: #A04BFF;
  --color-white: #FFFFFF;
  --color-light-gray: #F6F6F6;
  --color-gray: #E8E8E8;
  --color-dark-gray: #C8C8C8;
  --color-bg-black: #1E1E1E;
  --color-bg-secondary: #F2F5F7;
  --color-black: #000000;

  --font-heading: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Aeonik Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-footer: 'Montserrat', sans-serif;

  --container-width: 1285px;
  --side-padding: max(114px, calc((100vw - var(--container-width)) / 2));
  --page-width: 1513px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-navy);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

.atme-page-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* Salient OCM + the_content(): nothing wider than the viewport */
body.atme-landing .ocm-effect-wrap,
body.atme-landing .ocm-effect-wrap-inner {
  max-width: 100%;
  overflow-x: hidden;
}

.atme-page-wrapper > * {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Navbar styles moved to atme-navbar.css */

/* ============================================
   HERO
   ============================================ */

.atme-hero {
  position: relative;
  height: 785px;
  overflow: hidden;
  background: linear-gradient(213deg, rgba(95, 25, 200, 0.8) 14%, rgba(95, 25, 200, 0) 72%), linear-gradient(90deg, #18134B, #18134B);
}

.atme-hero__image {
  position: absolute;
  top: calc(50% + 30px);
  left: max(752px, calc(50% + 752px - 1513px / 2));
  right: auto;
  transform: translateY(-50%);
  width: clamp(600px, 58vw, 881px);
  height: auto;
  overflow: visible;
}

.atme-hero__image picture {
  display: block;
  width: 100%;
  height: auto;
}

.atme-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.atme-hero__content {
  position: absolute;
  top: 50%;
  left: var(--side-padding);
  transform: translateY(-50%);
  width: 680px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.atme-hero__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--color-white);
}

.atme-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
}

.atme-hero__title-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 74px;
  line-height: 1.05;
}

.atme-hero__description {
  font-size: 30px;
  line-height: 1.4;
  padding-right: 30px;
}

body.atme-crypto-landing-page .atme-hero__description {
  padding-bottom: 0;
}

.atme-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light-violet);
  color: var(--color-light-gray);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  padding: 26px 34px;
  border-radius: 47px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.atme-btn-cta:hover {
  opacity: 0.9;
}

.atme-btn-cta--violet {
  background: var(--color-deep-violet);
}

.atme-btn-cta--sm {
  padding: 14px 24px;
  font-size: 16px;
  line-height: 1.25;
}

/* Access to Crypto: габарит кнопки 67px по высоте (Figma, базовый CTA) */
body.atme-crypto-landing-page .atme-btn-cta {
  height: 67px;
  min-height: 67px;
  padding: 0 34px;
  box-sizing: border-box;
  line-height: 1;
}

/* ============================================
   SECTION: WHAT YOU CAN ACCESS
   ============================================ */
.atme-section-access {
  background: var(--color-light-gray);
  padding: 120px 20px 80px;
  min-width: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atme-section-access .atme-section-title {
  max-width: 100%;
}

.atme-section-access__inner {
  /*
   * width:100% заполняет родителя margin:auto не центрирует.
   * min(100%, var(--container-width)) даёт «полосу» нужной ширины; секция центрирует align-items:center.
   */
  width: min(100%, var(--container-width));
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 64px;
}

/*
 * Landing: theme / WP layout / WPBakery may set a “content width” on wrappers.
 * Then width:100% on __inner = 100% of that narrow box → it looks left-heavy vs full viewport.
 * Break the chain: wrapper + section full bleed; __inner stays centered in viewport.
 */
body.atme-landing .atme-page-wrapper .wp-block-atme-section-access {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

body.atme-landing .atme-section-access {
  width: 100%;
  box-sizing: border-box;
}

body.atme-landing .atme-section-access__inner {
  width: min(100%, var(--container-width)) !important;
  max-width: 100% !important;
}

.atme-section-access__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  max-width: 100%;
  gap: 24px;
  text-align: center;
}

.atme-section-access__subtitle {
  display: none;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
}

.atme-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  color: var(--color-navy);
  text-align: center;
}

.atme-cards-row {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.atme-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
}

.atme-coin-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.atme-coin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.atme-coin-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  overflow: hidden;
  flex-shrink: 0;
}

.atme-coin-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.atme-coin-item__name {
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
}

.atme-coin-item__ticker {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
  opacity: 0.4;
  margin-left: 4px;
  flex-shrink: 0;
}

/* ============================================
   DIVIDER
   ============================================ */
.atme-divider {
  background: var(--color-light-gray);
  padding: 0 20px;
}

.atme-divider__line {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background: var(--color-dark-gray);
  opacity: 0.6;
}

/* ============================================
   SECTION: SEAMLESS FIAT
   ============================================ */
.atme-section-fiat {
  background: var(--color-light-gray);
  padding: 80px 20px 24px;
}

.atme-section-fiat__inner {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.atme-section-fiat__header {
  max-width: 850px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.atme-section-fiat__description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-black);
  max-width: 640px;
}

.atme-feature-card {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 333px;
}

.atme-feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atme-feature-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-bg-black);
}

.atme-feature-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-bg-black);
}

.atme-feature-card__icon {
  width: 56px;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}

.atme-feature-card__icon-bg {
  position: absolute;
  inset: 0;
  background: var(--color-light-violet);
  opacity: 0.15;
  border-radius: 10px;
}

.atme-feature-card__icon img {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
}

/* ============================================
   SECTION: CLEAR TERMS
   ============================================ */
.atme-section-terms {
  background: var(--color-light-gray);
  padding: 0 20px 120px;
}

.atme-section-terms__card {
  background: var(--color-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding: 55px 47px;
  gap: 125px;
  min-height: 430px;
}

body.atme-crypto-landing-page .atme-section-terms__card {
  min-height: 318px;
}

.atme-section-terms__left {
  width: 480px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-self: flex-start;
}

.atme-section-terms__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.atme-section-terms__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  color: var(--color-navy);
  max-width: 330px;
}

.atme-section-terms__currencies {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.atme-section-terms__currencies-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
  padding-bottom: 0;
}

.atme-currency-list {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
}

.atme-currency-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.atme-currency-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0.78px solid var(--color-gray);
  overflow: hidden;
  flex-shrink: 0;
}

.atme-currency-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.atme-currency-item__code {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
}

.atme-badge-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-bg-secondary);
  padding: 2px 10px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #999;
}

.atme-badge-more__icon {
  width: 20px;
  height: 20px;
}

.atme-section-terms__note {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
  opacity: 0.4;
  padding-bottom: 0;
  margin-bottom: 0;
}

.atme-section-terms__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.atme-term-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Figma: row flex + items-center; scoped to beat WP/theme paragraph rules */
.atme-section-terms .atme-term-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.atme-term-item__icon {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atme-term-item__icon-bg {
  position: absolute;
  inset: 0;
  background: rgba(134, 51, 233, 0.1);
  border-radius: 10px;
}

.atme-term-item__icon img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  max-width: none;
  flex-shrink: 0;
}

.atme-term-item__text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
  flex: 1;
}

.atme-section-terms .atme-term-item__text {
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}

/* ============================================
   SECTION: INSTITUTIONAL CUSTODY
   ============================================ */
.atme-section-custody {
  background: var(--color-white);
  padding: 120px 20px;
}

.atme-section-custody__inner {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 128px;
}

.atme-section-custody__left {
  width: 524px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-section-custody__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 74px;
  line-height: 1.05;
  color: var(--color-navy);
}

.atme-section-custody__description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-black);
}

.atme-section-custody__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atme-custody-item {
  background: var(--color-light-gray);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  overflow: hidden;
}

.atme-custody-item__icon {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
}

.atme-custody-item__icon-bg {
  position: absolute;
  inset: 0;
  background: var(--color-light-violet);
  opacity: 0.15;
  border-radius: 16px;
}

.atme-custody-item__icon img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
}

.atme-custody-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atme-custody-item__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-deep-violet);
}

.atme-custody-item__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-navy);
  padding-bottom: 0;
}

/* ============================================
   SECTION: EARN STAKING YIELDS
   ============================================ */
.atme-section-staking {
  padding: 0 20px;
}

.atme-section-staking__card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 562px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(204deg, rgba(95, 25, 200, 0.9) 10%, rgba(95, 25, 200, 0) 93%), linear-gradient(90deg, #18134B, #18134B);
}

.atme-section-staking__image {
  position: absolute;
  left: 49px;
  top: 86px;
  width: 582px;
  height: 476px;
  overflow: hidden;
}

.atme-section-staking__img {
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
}

.atme-section-staking__img--desktop {
  width: 100%;
  height: auto;
}

.atme-section-staking__img--mobile {
  display: none;
}

.atme-section-staking__content {
  position: absolute;
  right: 114px;
  top: 50%;
  transform: translateY(-50%);
  width: 499px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.atme-section-staking__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-section-staking__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-light-gray);
  opacity: 0.7;
}

.atme-section-staking__title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-white);
}

.atme-section-staking__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
}

.atme-section-staking__description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
}

/* ============================================
   SECTION: WHY ATME
   ============================================ */
.atme-section-why {
  padding: 120px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 100%);
}

.atme-section-why__inner {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.atme-section-why__title {
  text-align: center;
}

.atme-why-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-why-card {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 311px;
}

.atme-why-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atme-why-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
}

.atme-why-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-bg-black);
}

.atme-why-card__icon {
  width: 56px;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}

.atme-why-card__icon-bg {
  position: absolute;
  inset: 0;
  background: var(--color-light-violet);
  opacity: 0.15;
  border-radius: 10px;
}

.atme-why-card__icon img {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
}

/* ============================================
   SECTION: GET STARTED
   ============================================ */
.atme-section-started {
  position: relative;
  min-height: 695px;
  background: linear-gradient(180deg, rgba(95, 25, 200, 0.2) 0%, rgba(95, 25, 200, 0) 45%), linear-gradient(90deg, #1A154D, #1A154D);
}

.atme-section-started__divider-bottom {
  position: absolute;
  bottom: 0;
  left: var(--side-padding);
  right: var(--side-padding);
  height: 1px;
  background: #454077;
}

.atme-section-started__title,
.atme-section-started h2.atme-section-started__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  color: #FFFFFF !important;
  text-align: center;
  max-width: 673px;
  margin: 0 auto;
  padding-top: 104px;
}

.atme-steps-row {
  display: flex;
  gap: 20px;
  max-width: 1241px;
  margin: 64px auto 0;
}

.atme-step-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.atme-step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-white);
}

.atme-step-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atme-step-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-white);
}

.atme-step-card__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-gray);
  padding-bottom: 0;
}

.atme-step-card__text a {
  text-decoration: underline;
}

.atme-section-started__cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   FOOTER
   ============================================ */
.atme-footer {
  background: var(--color-navy);
  padding: 80px 20px 0;
  position: relative;
}

.atme-footer__inner {
  display: flex;
  gap: 60px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.atme-footer__brand {
  width: 353px;
  flex-shrink: 0;
}

.atme-footer__logo {
  display: block;
  width: 125px;
  max-width: 125px;
  height: 36px;
  margin-bottom: 32px;
  overflow: hidden;
  flex-shrink: 0;
}

.atme-footer__logo img {
  width: 125px;
  max-width: 125px;
  min-width: 125px;
  height: auto;
  object-fit: contain;
}

.atme-footer__license {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: 8px;
}

.atme-footer__license-link {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-dark-gray);
}

.atme-footer__badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 60px;
  max-width: 353px;
  flex-wrap: wrap;
}

.atme-footer__badge-appstore {
  height: 48px;
  width: 144px;
  display: block;
}

.atme-footer__badge-appstore img {
  width: 144px;
  height: 48px;
}

.atme-footer__badge-google {
  height: 48px;
  width: 162px;
}

.atme-footer__badge-google img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.atme-footer__nav {
  flex: 1;
  display: flex;
  gap: 16px;
}

.atme-footer__nav-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atme-footer__nav-heading {
  font-family: var(--font-footer);
  font-weight: 600;
  font-size: 14px;
  line-height: 28.8px;
  color: rgba(200, 200, 200, 0.6);
  text-transform: uppercase;
}

.atme-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.atme-footer__nav-link,
.atme-footer__nav-list li a {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.atme-footer__nav-link:hover,
.atme-footer__nav-list li a:hover {
  opacity: 0.8;
  color: var(--color-white);
}

.atme-footer__social {
  display: flex;
  gap: 16px;
  padding: 8px 0;
}

.atme-footer__social-icon {
  width: 32px;
  height: 32px;
}

.atme-footer__social-icon img {
  width: 100%;
  height: 100%;
}

.atme-footer__bottom {
  margin-top: 40px;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.atme-footer__bottom-line {
  height: 1px;
  background: #454077;
}

.atme-footer__copyright {
  font-family: var(--font-footer);
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--color-white);
  opacity: 0.5;
  text-align: center;
  padding: 24px 0;
}

/* Burger toggle styles moved to atme-navbar.css */

.atme-divider--staking-why {
  display: none;
}

/* ============================================
   MEDIUM DESKTOP (max-width: 1460px)
   ============================================ */
@media (max-width: 1460px) {
  :root {
    --side-padding: max(80px, calc((100vw - var(--container-width)) / 2));
  }

  /* ---- Hero (Figma 1513px * 0.965 = 1460px) ---- */
  .atme-hero {
    height: 757px;
  }

  .atme-hero__image {
    width: 850px;
    left: auto;
    right: -100px;
  }

  .atme-hero__content {
    width: 656px;
    gap: 77px;
  }

  .atme-hero__title {
    font-size: 71px;
  }

  .atme-hero__description {
    font-size: 29px;
  }

  .atme-hero .atme-btn-cta {
    font-size: 21px;
    padding: 25px 33px;
  }

  /* ---- What you can access ---- */
  .atme-section-access__inner {
    gap: 56px;
  }

  .atme-section-access .atme-section-title {
    font-size: 48px;
  }

  /* ---- Seamless fiat ---- */
  .atme-section-fiat__inner {
    gap: 56px;
  }

  .atme-section-fiat .atme-section-title {
    font-size: 48px;
  }

  .atme-section-fiat__description {
    font-size: 20px;
  }

  .atme-feature-card__title {
    font-size: 20px;
  }

  /* ---- Clear terms ---- */
  .atme-section-terms__card {
    gap: 100px;
  }

  .atme-section-terms__left {
    width: 430px;
    gap: 52px;
  }

  .atme-section-terms__right {
    padding-left: 60px;
  }

  .atme-section-terms__info {
    gap: 28px;
  }

  .atme-currency-list {
    gap: 14px;
  }

  .atme-currency-item {
    gap: 6px;
  }

  .atme-currency-item__icon {
    width: 24px;
    height: 24px;
  }

  .atme-badge-more {
    font-size: 14px;
    padding: 2px 8px;
  }

  .atme-badge-more__icon {
    width: 18px;
    height: 18px;
  }

  .atme-section-terms__title {
    font-size: 48px;
  }

  .atme-term-item__text {
    font-size: 20px;
  }

  /* ---- Institutional custody ---- */
  .atme-section-custody__inner {
    gap: 90px;
  }

  .atme-section-custody__left {
    width: 460px;
  }

  .atme-section-custody__title {
    font-size: 64px;
  }

  .atme-section-custody__description {
    font-size: 20px;
  }

  /* ---- Staking (95% от Figma 1440) ---- */
  .atme-section-staking__card {
    min-height: 534px;
  }

  .atme-section-staking__image {
    left: 47px;
    top: 82px;
    width: 553px;
    height: 452px;
  }

  .atme-section-staking__content {
    right: 108px;
    width: 474px;
    gap: 53px;
  }

  .atme-section-staking__text {
    gap: 23px;
  }

  .atme-section-staking__title-group {
    gap: 15px;
  }

  .atme-section-staking__label {
    font-size: 17px;
  }

  .atme-section-staking__title {
    font-size: 51px;
  }

  .atme-section-staking__description {
    font-size: 21px;
  }

  .atme-section-staking .atme-btn-cta {
    padding: 25px 32px;
    font-size: 21px;
  }

  /* ---- Why ATME ---- */
  .atme-section-why__inner {
    gap: 56px;
  }

  .atme-section-why .atme-section-title {
    font-size: 48px;
  }

  /* ---- Get started ---- */
  .atme-section-started__title,
  .atme-section-started h2.atme-section-started__title {
    font-size: 48px;
  }

}

/* Access to Crypto: кнопка Get started — 21px на десктопе на брейкпоинте 1460px (не трогаем мобильные) */
@media (max-width: 1460px) and (min-width: 769px) {
  body.atme-crypto-landing-page .atme-section-started__cta .atme-btn-cta {
    font-size: 21px;
  }
}

/* ============================================
   MEDIUM DESKTOP TIGHT (max-width: 1330px)
   ============================================ */
@media (max-width: 1330px) {
  :root {
    --side-padding: max(60px, calc((100vw - var(--container-width)) / 2));
  }

  /* ---- Hero (Figma 1513px * 0.88 = 1330px) ---- */
  .atme-hero {
    height: 690px;
  }

  .atme-hero__image {
    width: 60vw;
    left: auto;
    right: -100px;
  }

  .atme-hero__content {
    width: 598px;
    gap: 70px;
    top: calc(50% + 20px);
    padding-top: 26px;
  }

  .atme-hero__subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  .atme-hero__title-group {
    gap: 21px;
  }

  .atme-hero__title {
    font-size: 58px;
  }

  .atme-hero__description {
    font-size: 26px;
    line-height: 1.35;
  }

  .atme-hero .atme-btn-cta,
  .atme-section-staking .atme-btn-cta,
  .atme-section-started__cta .atme-btn-cta {
    font-size: 20px;
    line-height: 1;
    padding: 22px 31px;
  }

  /* ---- What you can access ---- */
  .atme-section-access__inner {
    gap: 44px;
  }

  .atme-section-access .atme-section-title {
    font-size: 40px;
  }

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

  .atme-coin-item__name,
  .atme-coin-item__ticker {
    font-size: 18px;
  }

  /* ---- Seamless fiat ---- */
  .atme-section-fiat__inner {
    gap: 44px;
  }

  .atme-section-fiat .atme-section-title {
    font-size: 40px;
  }

  .atme-section-fiat__description {
    font-size: 18px;
  }

  .atme-feature-card__title {
    font-size: 22px;
  }

  .atme-feature-card__text {
    font-size: 18px;
  }

  /* ---- Clear terms ---- */
  .atme-section-terms__card {
    gap: 66px;
  }

  .atme-section-terms__left {
    width: 396px;
    gap: 48px;
  }

  .atme-section-terms__right {
    padding-left: 100px;
  }

  .atme-section-terms__info {
    gap: 26px;
  }

  .atme-currency-list {
    gap: 10px;
  }

  .atme-currency-item {
    gap: 5px;
  }

  .atme-currency-item__icon {
    width: 22px;
    height: 22px;
  }

  .atme-badge-more {
    font-size: 13px;
    padding: 2px 6px;
  }

  .atme-badge-more__icon {
    width: 16px;
    height: 16px;
  }

  .atme-section-terms__title {
    font-size: 40px;
  }

  .atme-section-terms__currencies-label {
    font-size: 22px;
  }

  .atme-currency-item__code {
    font-size: 16px;
  }

  .atme-section-terms__note {
    font-size: 18px;
  }

  .atme-term-item__text {
    font-size: 18px;
  }

  /* ---- Institutional custody ---- */
  .atme-section-custody__inner {
    gap: 55px;
  }

  .atme-section-custody__left {
    width: 418px;
  }

  .atme-section-custody__title {
    font-size: 51px;
  }

  .atme-section-custody__description {
    font-size: 18px;
  }

  .atme-custody-item__title {
    font-size: 22px;
  }

  .atme-custody-item__text {
    font-size: 18px;
  }

  /* ---- Staking (92% от Figma 1440) ---- */
  .atme-section-staking__card {
    min-height: 517px;
  }

  .atme-section-staking__image {
    left: 45px;
    top: 79px;
    width: 536px;
    height: 438px;
  }

  .atme-section-staking__content {
    right: 105px;
    width: 459px;
    gap: 52px;
  }

  .atme-section-staking__text {
    gap: 22px;
  }

  .atme-section-staking__title-group {
    gap: 15px;
  }

  .atme-section-staking__label {
    font-size: 17px;
  }

  .atme-section-staking__title {
    font-size: 50px;
  }

  .atme-section-staking__description {
    font-size: 20px;
  }

  .atme-section-staking .atme-btn-cta {
    padding: 24px 31px;
    font-size: 20px;
  }

  /* ---- Why ATME ---- */
  .atme-section-why__inner {
    gap: 44px;
  }

  .atme-section-why .atme-section-title {
    font-size: 40px;
  }

  .atme-why-card__title {
    font-size: 22px;
  }

  .atme-why-card__text {
    font-size: 18px;
  }

  /* ---- Get started ---- */
  .atme-section-started__title,
  .atme-section-started h2.atme-section-started__title {
    font-size: 40px;
  }

  .atme-step-card__number {
    font-size: 22px;
  }

  .atme-step-card__title {
    font-size: 22px;
  }

  .atme-step-card__text {
    font-size: 18px;
  }

  /* ---- Footer ---- */
  .atme-footer__license {
    font-size: 17px;
  }

  .atme-footer__license-link {
    font-size: 14px;
  }

  .atme-footer__nav-heading {
    font-size: 14px;
  }

  .atme-footer__nav-link,
  .atme-footer__nav-list li a {
    font-size: 17px;
  }

  .atme-footer__copyright {
    font-size: 14px;
  }
}

/* ============================================
   TABLET / SMALL DESKTOP (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --side-padding: max(60px, calc((100vw - var(--container-width)) / 2));
  }

  /* ---- Hero ---- */
  .atme-hero {
    height: 600px;
  }

  .atme-hero__image {
    width: 60vw;
    left: auto;
    right: -100px;
  }

  .atme-hero__content {
    width: 520px;
    gap: 20px;
    padding-top: 24px;
  }

  .atme-hero__subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  .atme-hero__title-group {
    gap: 20px;
  }

  .atme-hero__title {
    font-size: 50px;
  }

  .atme-hero__description {
    font-size: 22px;
    line-height: 1.35;
  }

  /* Все CTA на лендинге одного размера; перебивает .atme-btn-cta--sm у Get started */
  .atme-hero .atme-btn-cta,
  .atme-section-staking .atme-btn-cta,
  .atme-section-started__cta .atme-btn-cta {
    font-size: 18px;
    line-height: 1;
    padding: 20px 28px;
  }

  /* ---- What you can access ---- */
  .atme-section-access__inner {
    gap: 40px;
  }

  .atme-section-access .atme-section-title {
    font-size: 36px;
  }

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

  .atme-coin-item__name,
  .atme-coin-item__ticker {
    font-size: 16px;
  }

  /* ---- Seamless fiat ---- */
  .atme-section-fiat__inner {
    gap: 40px;
  }

  .atme-section-fiat .atme-section-title {
    font-size: 36px;
  }

  .atme-section-fiat__description {
    font-size: 16px;
  }

  .atme-feature-card__title {
    font-size: 20px;
  }

  .atme-feature-card__text {
    font-size: 16px;
  }

  /* ---- Clear terms ---- */
  .atme-section-terms__card {
    gap: 60px;
    min-height: 230px;
  }

  .atme-section-terms__left {
    width: 360px;
    gap: 44px;
  }

  .atme-section-terms__right {
    padding-left: 120px;
  }

  .atme-section-terms__info {
    gap: 24px;
  }

  .atme-currency-list {
    gap: 8px;
  }

  .atme-currency-item {
    gap: 4px;
  }

  .atme-currency-item__icon {
    width: 20px;
    height: 20px;
  }

  .atme-badge-more {
    font-size: 12px;
    padding: 2px 5px;
  }

  .atme-badge-more__icon {
    width: 14px;
    height: 14px;
  }

  .atme-section-terms__title {
    font-size: 36px;
  }

  .atme-section-terms__currencies-label {
    font-size: 20px;
  }

  .atme-currency-item__code {
    font-size: 16px;
  }

  .atme-section-terms__note {
    font-size: 16px;
  }

  .atme-term-item__text {
    font-size: 16px;
  }

  /* ---- Institutional custody ---- */
  .atme-section-custody__inner {
    gap: 50px;
  }

  .atme-section-custody__left {
    width: 380px;
  }

  .atme-section-custody__title {
    font-size: 46px;
  }

  .atme-section-custody__description {
    font-size: 16px;
  }

  .atme-custody-item__title {
    font-size: 20px;
  }

  .atme-custody-item__text {
    font-size: 16px;
  }

  /* ---- Staking (83% от Figma 1440) ---- */
  .atme-section-staking__card {
    min-height: 467px;
  }

  .atme-section-staking__image {
    left: 41px;
    top: 71px;
    width: 484px;
    height: 395px;
  }

  .atme-section-staking__content {
    right: 95px;
    width: 414px;
    gap: 47px;
  }

  .atme-section-staking__text {
    gap: 20px;
  }

  .atme-section-staking__title-group {
    gap: 13px;
  }

  .atme-section-staking__label {
    font-size: 15px;
  }

  .atme-section-staking__title {
    font-size: 45px;
  }

  .atme-section-staking__description {
    font-size: 18px;
  }

  .atme-section-staking .atme-btn-cta {
    padding: 22px 28px;
    font-size: 18px;
  }

  /* ---- Why ATME ---- */
  .atme-section-why__inner {
    gap: 40px;
  }

  .atme-section-why .atme-section-title {
    font-size: 36px;
  }

  .atme-why-card__title {
    font-size: 20px;
  }

  .atme-why-card__text {
    font-size: 16px;
  }

  /* ---- Get started ---- */
  .atme-section-started__title,
  .atme-section-started h2.atme-section-started__title {
    font-size: 36px;
  }

  /* Линия снизу секции — на всю ширину окна, как полоса над копирайтом */
  .atme-section-started__divider-bottom {
    left: 0;
    right: 0;
  }

  .atme-step-card__number {
    font-size: 20px;
  }

  .atme-step-card__title {
    font-size: 20px;
  }

  .atme-step-card__text {
    font-size: 16px;
  }

  /* ---- Footer ---- */
  .atme-footer__license {
    font-size: 15px;
  }

  .atme-footer__license-link {
    font-size: 13px;
  }

  .atme-footer__nav-heading {
    font-size: 13px;
  }

  .atme-footer__nav-link,
  .atme-footer__nav-list li a {
    font-size: 15px;
  }

  .atme-footer__copyright {
    font-size: 13px;
  }

  /* Линия над копирайтом на всю ширину страницы (компенсация padding футера) */
  .atme-footer__bottom {
    max-width: none;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --side-padding: 20px;
  }

  .atme-page-wrapper {
    max-width: 100%;
  }

  /* Mobile navbar styles moved to atme-navbar.css */

  /* --- HERO --- (mobile frame Figma 10545:20963) */
  .atme-hero {
    height: 818px;
    isolation: isolate;
    background: linear-gradient(
        224.305686deg,
        rgba(95, 25, 200, 0.8) 15.573%,
        rgba(95, 25, 200, 0) 97.484%
      ),
      linear-gradient(90deg, #18134b, #18134b);
  }

  .atme-hero__image {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 385px;
    transform: none;
    opacity: 0.6;
  }

  .atme-hero__image img {
    width: 230vw;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: -15vw;
    bottom: 0;
    mix-blend-mode: multiply;
    transform: scale(1.3);
    transform-origin: right bottom;
  }

  .atme-hero__content {
    position: absolute;
    top: 119px;
    bottom: 48px;
    left: 20px;
    width: calc(100% - 40px);
    transform: none;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .atme-hero__subtitle {
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-light-gray);
  }

  .atme-hero__title {
    font-size: 42px;
    line-height: 1.1;
  }

  .atme-hero__description {
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-white);
  }

  .atme-hero__title-group {
    gap: 22px;
  }

  .atme-hero .atme-btn-cta {
    margin-top: auto;
    align-self: stretch;
    text-align: center;
    font-size: 22px;
    padding: 26px 34px;
  }

  /* Access to Crypto: hero (класс atme-crypto-landing-page задаётся в functions.php) */
  body.atme-crypto-landing-page .atme-hero .atme-hero__content {
    position: absolute;
    top: 80px !important;
    bottom: 48px;
    left: 20px;
    width: calc(100% - 40px);
    transform: none !important;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* --- WHAT YOU CAN ACCESS (Figma 10545:20982) --- */
  .atme-section-access {
    padding: 80px 20px 40px;
  }

  .atme-section-access__inner {
    gap: 40px;
  }

  .atme-section-access__header {
    width: 353px;
    max-width: 100%;
    gap: 24px;
  }

  .atme-section-access .atme-section-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .atme-section-access__subtitle {
    display: block;
    font-size: 18px;
    line-height: 1.4;
  }

  .atme-cards-row {
    flex-direction: column;
    gap: 12px;
  }

  .atme-card {
    padding: 32px;
  }

  /* --- DIVIDER --- */
  .atme-divider {
    padding: 0 20px;
  }

  /* --- SEAMLESS FIAT --- */
  .atme-section-fiat {
    padding: 40px 20px 24px;
  }

  .atme-section-fiat__inner {
    gap: 40px;
  }

  .atme-section-fiat__header {
    max-width: 100%;
  }

  .atme-section-fiat .atme-cards-row {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .atme-section-fiat .atme-cards-row::-webkit-scrollbar {
    display: none;
  }

  .atme-feature-card {
    flex: 0 0 266px;
    min-height: 246px;
    padding: 24px 20px;
    scroll-snap-align: start;
  }

  .atme-feature-card__title {
    font-size: 18px;
  }

  .atme-feature-card__text {
    font-size: 16px;
  }

  .atme-feature-card__icon {
    width: 48px;
    height: 48px;
  }

  .atme-feature-card__icon img {
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
  }

  /* --- CLEAR TERMS --- */
  .atme-section-terms {
    padding: 0 20px 80px;
  }

  .atme-section-terms__card {
    flex-direction: column;
    padding: 32px 20px;
    gap: 0;
  }

  .atme-section-terms__left {
    width: 100%;
    gap: 32px;
    display: contents;
  }

  .atme-section-terms__info {
    display: contents;
  }

  .atme-section-terms__title {
    font-size: 38px;
    max-width: 100%;
    text-align: center;
    order: 0;
    margin-bottom: 40px;
  }

  .atme-section-terms__right {
    order: 1;
    margin-bottom: 52px;
    padding-left: 0;
  }

  .atme-section-terms__currencies {
    order: 2;
    margin-bottom: 32px;
  }

  .atme-section-terms__note {
    order: 3;
  }

  .atme-term-item {
    gap: 12px;
    align-items: center;
  }

  .atme-section-terms .atme-term-item {
    gap: 12px;
    align-items: center;
  }

  .atme-term-item__icon {
    width: 40px;
    height: 40px;
  }

  .atme-term-item__icon-bg {
    border-radius: 10px;
  }

  .atme-term-item__icon img {
    width: 24px;
    height: 24px;
  }

  .atme-term-item__text {
    font-size: 18px;
  }

  .atme-section-terms__currencies-label {
    font-size: 18px;
    text-align: center;
  }

  .atme-currency-list {
    justify-content: center;
    gap: 12px 16px;
  }

  .atme-currency-item__icon {
    width: 24px;
    height: 24px;
  }

  .atme-currency-item__code {
    font-size: 16px;
  }

  .atme-section-terms__note {
    font-size: 16px;
    text-align: center;
  }

  /* --- INSTITUTIONAL CUSTODY --- */
  .atme-section-custody {
    padding: 80px 20px;
  }

  .atme-section-custody__inner {
    flex-direction: column;
    gap: 40px;
  }

  .atme-section-custody__left {
    width: 100%;
    text-align: center;
  }

  .atme-section-custody__title {
    font-size: 42px;
  }

  .atme-section-custody__description {
    font-size: 18px;
  }

  .atme-section-custody__right {
    gap: 12px;
  }

  .atme-custody-item {
    padding: 24px 20px;
    gap: 16px;
  }

  .atme-custody-item__icon {
    width: 40px;
    height: 40px;
  }

  .atme-custody-item__icon-bg {
    border-radius: 10px;
  }

  .atme-custody-item__icon img {
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
  }

  .atme-custody-item__title {
    font-size: 18px;
  }

  .atme-custody-item__text {
    font-size: 16px;
  }

  .atme-custody-item__content {
    gap: 8px;
  }

  /* --- EARN STAKING YIELDS (Figma mobile 10545-21048) --- */
  .atme-section-staking {
    padding: 0;
  }

  .atme-section-staking__card {
    border-radius: 0;
    min-height: 695px;
    overflow: hidden;
    background: linear-gradient(241deg, rgba(95, 25, 200, 0.9) 10%, rgba(95, 25, 200, 0) 93%), linear-gradient(90deg, #18134B, #18134B);
  }

  .atme-section-staking__content {
    position: static;
    margin: 80px 20px 0;
    width: 353px;
    max-width: calc(100% - 40px);
    text-align: center;
    gap: 24px;
    transform: none;
  }

  .atme-section-staking__label {
    font-size: 16px;
  }

  .atme-section-staking__title-group {
    gap: 16px;
  }

  .atme-section-staking__title {
    font-size: 38px;
  }

  .atme-section-staking__description {
    font-size: 18px;
  }

  .atme-section-staking__image {
    left: 0;
    top: 295px;
    bottom: auto;
    width: 100%;
    height: 368px;
    overflow: visible;
    pointer-events: none;
  }

  .atme-section-staking__img--desktop {
    display: none !important;
  }

  .atme-section-staking__img--mobile {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: auto !important;
    bottom: 0 !important;
  }

  .atme-section-staking .atme-btn-cta {
    position: absolute;
    top: 548px;
    bottom: auto;
    left: 20px;
    right: auto;
    width: 353px;
    max-width: calc(100% - 40px);
    text-align: center;
    padding: 26px 34px;
    font-size: 22px;
    height: auto;
    min-height: auto;
  }

  .atme-divider--staking-why {
    display: block;
    background: var(--color-light-gray);
  }

  /* --- WHY ATME --- */
  .atme-section-why {
    padding: 80px 20px;
    background: #F7F7F7;
  }

  .atme-section-why__inner {
    gap: 40px;
  }

  .atme-section-why__title {
    font-size: 38px;
  }

  .atme-why-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .atme-why-grid::-webkit-scrollbar {
    display: none;
  }

  .atme-why-grid .atme-cards-row {
    display: contents;
  }

  .atme-why-card {
    flex: 0 0 266px;
    min-height: 275px;
    padding: 24px 20px;
    scroll-snap-align: start;
  }

  .atme-why-card__title {
    font-size: 18px;
  }

  .atme-why-card__text {
    font-size: 16px;
  }

  .atme-why-card__icon {
    width: 48px;
    height: 48px;
  }

  .atme-why-card__icon img {
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
  }

  /* --- GET STARTED --- */
  .atme-section-started {
    min-height: auto;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(95, 25, 200, 0.2) 0%, rgba(95, 25, 200, 0) 100%), linear-gradient(90deg, #1A154D, #1A154D);
  }

  .atme-section-started__title,
  .atme-section-started h2.atme-section-started__title {
    font-size: 38px;
    padding-top: 0;
    max-width: 100%;
  }

  .atme-steps-row {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 40px;
  }

  .atme-step-card {
    padding: 24px 20px;
  }

  .atme-step-card__number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 64px;
  }

  .atme-step-card__title {
    font-size: 18px;
  }

  .atme-step-card__text {
    font-size: 16px;
    line-height: 1.4;
  }

  .atme-section-started__cta {
    margin-top: 40px;
  }

  .atme-section-started__cta .atme-btn-cta {
    width: 100%;
  }

  .atme-section-started__divider-bottom {
    left: 20px;
    right: 20px;
  }

  /* Access to Crypto: CTA 353×67 px (габарит с padding, box-sizing: border-box) */
  body.atme-crypto-landing-page .atme-btn-cta {
    width: 353px;
    max-width: 100%;
    height: 67px;
    min-height: 67px;
    padding: 0 34px;
    box-sizing: border-box;
  }

  body.atme-crypto-landing-page .atme-hero .atme-btn-cta {
    align-self: center;
  }

  body.atme-crypto-landing-page .atme-section-staking .atme-btn-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 353px;
    max-width: calc(100% - 40px);
  }

  body.atme-crypto-landing-page .atme-section-started__cta .atme-btn-cta {
    width: 353px;
    max-width: 100%;
  }

  /* --- FOOTER --- */
  .atme-footer {
    padding: 46px 20px 0;
  }

  .atme-footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .atme-footer__brand {
    width: 100%;
    order: -1;
  }

  .atme-footer__logo {
    width: 138px;
    max-width: 138px;
    height: 40px;
    margin-bottom: 40px;
  }

  .atme-footer__logo img {
    width: 138px;
    max-width: 138px;
    min-width: 138px;
  }

  .atme-footer__nav {
    flex-direction: column;
    gap: 40px;
  }

  .atme-footer__badges {
    margin-top: 40px;
  }

  .atme-footer__bottom {
    margin-top: 40px;
  }
}

/* Access to Crypto — узкая мобилка (≤375px) или низкий экран (≤667px по высоте) */
@media (max-width: 375px), (max-width: 768px) and (max-height: 667px) {
  body.atme-crypto-landing-page .atme-hero {
    height: 628px;
  }

  body.atme-crypto-landing-page .atme-hero__image img {
    transform: scale(1.2);
    transform-origin: right bottom;
  }

  body.atme-crypto-landing-page .atme-hero__description {
    font-size: 20px;
  }

  body.atme-crypto-landing-page .atme-hero__title {
    font-size: 38px;
  }

  body.atme-crypto-landing-page .atme-hero__subtitle {
    padding-bottom: 15px;
    font-size: 15px;
  }

  body.atme-crypto-landing-page .atme-hero__text {
    gap: 0;
  }

  body.atme-crypto-landing-page .atme-btn-cta {
    font-size: 20px;
    height: 57px;
    min-height: 57px;
  }
}

/* ============================================
   BACK TO TOP BUTTON (Custom ATME)
   ============================================ */
.atme-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--color-light-violet, #9B7FE9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.atme-back-to-top:hover {
  background-color: var(--color-deep-violet, #7B5FC9);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.atme-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.atme-back-to-top svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .atme-back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
  
  .atme-back-to-top svg {
    width: 14px;
    height: 14px;
  }
}
