.locked-scroll {
  overflow: hidden;
}
:root {
  color-scheme: dark only;
  --font-base: "Manrope", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Sora", "Noto Sans JP", "Manrope", system-ui, sans-serif;
  --color-bg: #0c0f16;
  --color-surface: rgba(18, 26, 41, 0.9);
  --color-card: rgba(22, 28, 43, 0.85);
  --color-primary: #f34c44;
  --color-primary-soft: rgba(243, 76, 68, 0.18);
  --color-highlight: #04c48b;
  --color-text: #f5f7fc;
  --color-muted: #9ba3b5;
  --color-border: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 30px 70px rgba(0, 0, 0, 0.6);
  --color-nav-bg: #f7f9fe;
  --color-nav-text: #1b2333;
  --color-nav-muted: #5c6677;
  --color-nav-border: rgba(20, 26, 39, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-family: var(--font-base);
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.container {
  width: min(1440px, 94vw);
  margin: 0 auto;
}

.hero > .container {
  width: min(1760px, 96vw);
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
  --topbar-height: 48px;
  box-shadow: 0 4px 16px rgba(10, 14, 20, 0.12);
}

.top-bar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 16px;
  padding: 8px 32px;
  min-height: var(--topbar-height);
}

.brand {
  font-family: var(--font-heading);
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
}

.brand img {
  display: block;
  height: 32px;
  max-height: 32px;
  width: auto;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-nav-muted);
  font-weight: 500;
  justify-content: center;
  grid-area: nav;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  min-width: 0;
}
.nav-links a {
  padding: 4px 8px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  color: inherit;
  line-height: 1.2;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--color-nav-text);
  background: rgba(4, 196, 139, 0.12);
  box-shadow: inset 0 0 0 1px rgba(4, 196, 139, 0.15);
}
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-area: actions;
  flex-wrap: nowrap;
}

.top-bar .btn.ghost,
.top-bar .btn.outline {
  color: var(--color-nav-text);
}

.top-bar .btn.outline {
  border-color: rgba(0, 0, 0, 0.08);
}

.top-bar .btn.outline:hover {
  border-color: rgba(4, 196, 139, 0.6);
}

.top-bar .btn {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  min-height: 32px;
}

.top-bar .btn.primary {
  box-shadow: 0 8px 18px rgba(195, 43, 46, 0.25);
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f34c44, #c42c2e);
  color: var(--color-bg);
  box-shadow: 0 10px 24px rgba(195, 43, 46, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--color-text);
}

.btn.outline {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
}

.btn.outline:hover {
  border-color: rgba(124, 92, 255, 0.4);
}


.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  gap: 3px;
  white-space: nowrap;
}

.lang-switch button {
  border: none;
  background: transparent;
  color: var(--color-nav-muted);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-switch button.active {
  background: rgba(4, 196, 139, 0.2);
  color: var(--color-nav-text);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  grid-area: actions;
  justify-self: end;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-nav-text);
  transition: all 0.3s ease;
  border-radius: 2px;
}


.mobile-menu {
  display: none;
  position: fixed;
  top: var(--topbar-height, 56px);
  left: 0;
  right: 0;
  background: var(--color-nav-bg);
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--color-nav-border);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu.active {
  max-height: 90vh;
}
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--topbar-height, 56px);
  left: 0;
  right: 0;
  background: var(--color-nav-bg);
  padding: 0 clamp(16px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}

.mobile-menu.active {
  max-height: 90vh;
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--color-nav-border);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 4px;
}

.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-nav-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.mobile-lang-switch {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.mobile-lang-switch button {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-nav-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-lang-switch button.active {
  background: rgba(4, 196, 139, 0.18);
  color: var(--color-nav-text);
  border-color: rgba(4, 196, 139, 0.3);
}

.hero {
  padding: clamp(70px, 9vw, 110px) 0 clamp(60px, 7vw, 90px);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 3.6vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content {
  margin-top: 0;
  align-self: flex-start;
  max-width: 720px;
}

.hero-content p {
  color: var(--color-highlight);
  margin-bottom: 24px;
  max-width: 600px;
  font-size: clamp(1.02rem, 1.9vw, 1.25rem);
  font-weight: 500;
}


.hero-supporting-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.hero-supporting-row .hero-badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.trust-badges {
  margin-top: 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.trust-badges {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding-right: 0;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
}

.hero-image {
  position: relative;
  width: min(520px, 90vw);
  aspect-ratio: 5 / 6;
  overflow: hidden;
  margin-right: 0;
  margin-top: 0;
  background: #0b0b0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.hero-image::before {
  content: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: transparent;
  mix-blend-mode: normal;
  opacity: 0;
}

.ticker {
  padding: 40px 0;
}

.ticker-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.ticker-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(14, 17, 34, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item .pair {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.ticker-item .price {
  font-size: 1.35rem;
}

.ticker-item .change {
  font-size: 0.88rem;
}

.ticker-item .meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.change.positive {
  color: #2ce38f;
}

.change.negative {
  color: #ff6b6b;
}

.features {
  padding: 90px 0;
}

.section-lead {
  color: var(--color-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--color-card);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.feature-card .icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-speed {
  color: #2ce38f;
  box-shadow: 0 10px 30px rgba(44, 227, 143, 0.2);
}

.icon-security {
  color: #28c5ff;
  box-shadow: 0 10px 30px rgba(40, 197, 255, 0.2);
}

.icon-analytics {
  color: #f8c77e;
  box-shadow: 0 10px 30px rgba(248, 199, 126, 0.2);
}

.icon-support {
  color: #f34c44;
  box-shadow: 0 10px 30px rgba(243, 76, 68, 0.25);
}

.platform {
  padding: clamp(55px, 7vw, 75px) 0;
}

.platform .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.platform-highlights {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(19, 25, 38, 0.9);
  border: 1px solid var(--color-border);
  align-items: center;
}

.highlight .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(4, 196, 139, 0.15);
  display: grid;
  place-items: center;
  color: var(--color-highlight);
}

.highlight .icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.highlight h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.highlight p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}



.platform-visual {
  margin-top: clamp(12px, 3vw, 50px);
}

.platform-visual .screen {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.platform-image {
  margin: 0;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.platform-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.steps {
  padding: clamp(55px, 7vw, 75px) 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.step {
  background: rgba(18, 24, 36, 0.9);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 28px;
  position: relative;
}

.step .badge {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f34c44, #c42c2e);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  border: 3px solid var(--color-bg);
  box-shadow: 0 8px 24px rgba(195, 43, 46, 0.4),
              0 0 40px rgba(195, 43, 46, 0.25);
  color: #ffffff;
}

.payments {
  padding: clamp(55px, 7vw, 75px) 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-note {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: rgba(19, 25, 38, 0.9);
  border: 1px solid var(--color-border);
  padding: 14px 20px;
  border-radius: 999px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.crypto-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(19, 25, 38, 0.85);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.crypto-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 196, 139, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.crypto-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.crypto-chip:hover .crypto-icon {
  transform: scale(1.1);
}

.crypto-chip span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.payment-chip {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonials,
.news-section {
  padding: 90px 0 110px;
}

.testimonial-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial {
  background: rgba(19, 25, 38, 0.85);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  padding: 28px;
  color: var(--color-muted);
}

.testimonial .name {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: var(--color-text);
}

/* News Cards */
.news-card {
  background: var(--color-card);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(4, 196, 139, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.news-thumbnail {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-thumbnail img {
  transform: scale(1.05);
}

.news-source {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(12, 18, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-highlight);
  border: 1px solid rgba(4, 196, 139, 0.35);
}

.news-content {
  padding: 24px;
}

.news-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 75px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.news-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-highlight);
  text-decoration: none;
  transition: color 0.2s;
}

.news-link:hover {
  color: #2ce38f;
  text-decoration: underline;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
  background: rgba(5, 7, 18, 0.92);
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy p {
  margin: 6px 0 0;
  max-width: 420px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-text);
}

@media (max-width: 1200px) {
  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: 100%;
  }

  .payment-note {
    font-size: 0.88rem;
    justify-content: center;
    padding: 12px 16px;
  }
  .top-bar .container {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand nav actions";
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero .container {
    grid-template-columns: minmax(320px, 1fr);
    justify-items: center;
    text-align: center;
  }

  .hero-content {
    justify-self: center;
    max-width: 640px;
  }

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .cta-group {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .top-bar .container {
    padding: 0px 3vw 2px 0px;
    align-items: flex-end;
  }

  .brand {
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-left: 0px;
  }

  .brand img {
    height: 52px;
    max-height: 52px;
  }



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

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

  .hero-visual {
    justify-content: center;
    padding-right: 0;
  }

  .hero-image {
    width: min(420px, 92%);
  }
}

@media (max-width: 768px) {
  .top-bar {
    --topbar-height: 56px;
  }
  .platform {
    padding: 60px 0 !important;
  }

  .steps {
    padding: 60px 0 !important;
  }

  .payments {
    padding: 60px 0 !important;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    gap: 16px !important;
  }

  .payment-note {
    font-size: 0.85rem;
    justify-content: center;
    max-width: 90%;
  }

  .container {
    max-width: 92vw !important;
    padding: 0 4vw;
  }

  .top-bar .container {
    padding: 12px 5vw !important;
    gap: 10px;
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .brand {
    min-height: 44px;
  }

  .brand img {
    height: 42px;
  }

  .nav-links {
    justify-content: flex-start;
    padding-top: 6px;
    border-top: 1px solid var(--color-nav-border);
    order: 3;
    width: 100%;
    font-size: 0.92rem;
    gap: 14px;
  }

  .nav-links a {
    padding: 8px 14px;
  }

  .hero {
    padding: 80px 0 50px !important;
  }

  .hero .container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 30px !important;
    align-items: center !important;
  }

  .hero-content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: center;
    order: 1;
    max-width: 100%;
  }

  .hero-supporting-row {
    justify-content: center;
    margin-bottom: 8px !important;
    width: 100%;
  }

  .hero-supporting-row .hero-badge {
    font-size: 0.68rem !important;
    padding: 5px 10px !important;
    letter-spacing: 0.12em !important;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .hero-content p {
    font-size: clamp(0.92rem, 2.8vw, 1.1rem) !important;
    max-width: 94% !important;
    margin: 0 auto 18px !important;
  }

  .hero-visual {
    order: 2;
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-image {
    width: 82vw !important;
    max-width: 330px !important;
    height: auto !important;
    aspect-ratio: 5 / 6 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    transform: none !important;
  }

  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
    display: block !important;
  }

  .trust-badges {
    font-size: 0.7rem !important;
    margin-top: 14px !important;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .feature-grid,
  .platform-grid,
  .step-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-thumbnail {
    height: 200px;
  }

  .platform-image {
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .crypto-chip {
    padding: 24px 16px;
  }

  .crypto-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 600px) {
  .top-bar {
    --topbar-height: 56px;
  }
  body {
    font-size: 0.95rem;
  }

  .container {
    max-width: 94vw !important;
    padding: 0 3vw !important;
  }

  .top-bar .container {
    padding: 0px 3vw 2px 0px !important;
    align-items: flex-end !important;
  }

  .brand {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 8px !important;
    margin-left: 0px !important;
  }

  .brand img {
    height: 52px !important;
    max-height: 52px !important;
  }

  .mobile-menu {
    padding: 14px 6vw;
  }

  .mobile-menu.active {
    padding: 14px 6vw;
  }

  .mobile-nav a {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .mobile-lang-switch button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 65px 0 38px !important;
  }
  .platform {
    padding: 55px 0 !important;
  }

  .steps {
    padding: 55px 0 !important;
  }

  .payments {
    padding: 55px 0 !important;
  }

  .hero .container {
    gap: 25px !important;
    padding: 0 3vw !important;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2rem) !important;
    line-height: 1.25 !important;
  }

  .hero-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    margin: 12px auto 20px !important;
  }

  .hero-badge {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    max-width: 100% !important;
    padding: 13px 20px !important;
    font-size: 0.95rem !important;
  }

  .hero-image {
    width: 85vw !important;
    max-width: 340px !important;
  }

  .hero-image img {
    border-radius: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ticker {
    padding: 12px 8px;
  }

  .ticker-pair {
    padding: 12px 16px;
    min-width: 140px;
  }

  section {
    padding: 60px 0;
  }

  .payment-note {
    font-size: 0.82rem;
    justify-content: center;
    padding: 10px 14px;
  }

  .news-section,
  .testimonials {
    padding: 60px 0 80px;
  }

  .news-thumbnail {
    height: 180px;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .crypto-chip {
    padding: 20px 12px;
  }

  .crypto-chip span {
    font-size: 0.95rem;
  }

  .step .badge {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

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

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .platform-point {
    padding: 20px;
  }

  h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
  }

  h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.3rem) !important;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  .container {
    max-width: 96vw !important;
    padding: 0 2vw !important;
  }

  .top-bar .container {
    padding: 10px 2vw !important;
  }

  .brand {
    font-size: 1.2rem !important;
  }

  .hero {
    padding: 55px 0 32px !important;
  }

  .platform,
  .steps,
  .payments {
    padding: 50px 0 !important;
  }

  .hero .container {
    gap: 20px !important;
    padding: 0 2vw !important;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 1.8rem) !important;
  }

  .hero-content p {
    font-size: 0.9rem !important;
  }

  .hero-badge {
    font-size: 0.7rem !important;
    padding: 5px 10px !important;
  }

  .hero-actions .btn {
    padding: 12px 18px !important;
    font-size: 0.9rem !important;
  }

  .hero-image {
    width: 90vw !important;
    max-width: 300px !important;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .payment-note {
    font-size: 0.78rem;
    padding: 9px 12px;
    justify-content: center;
  }

  .crypto-chip {
    padding: 16px 8px;
    gap: 12px;
  }

  .crypto-icon {
    width: 48px;
    height: 48px;
  }

  .crypto-chip span {
    font-size: 0.85rem;
  }

  .news-grid {
    gap: 20px;
  }

  .news-thumbnail {
    height: 160px;
  }

  .news-content {
    padding: 16px;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.85rem;
  }

  .step .badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
}
