:root {
  --body-font: 16px;
  --ink: #101828;
  --muted: #667085;
  --line: #e8edf5;
  --primary: #1a73e8;
  --primary-dark: #0857c3;
  --soft: #f6f9fd;
  --success-soft: #e8f8f0;
  --danger-soft: #fff1f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  overflow-x:hidden ;
  font-size:var(--body-font);
}

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

.site-nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 237, 245, 0.8);
  backdrop-filter: blur(14px);
  padding: 18px 0;
}

.navbar .nav-link {
  color: #344054;
  font-weight: 600;
  font-size: 15px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.login-link {
  color: var(--primary);
}

.btn {
  font-weight: 400;
  border-width: 1.5px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero {
  position: relative;
  padding: 100px 0 72px;
  background:
    radial-gradient(circle at 84% 16%, rgba(26, 115, 232, 0.14), transparent 34%),
    radial-gradient(circle at 12% 74%, rgba(18, 194, 233, 0.12), transparent 30%),
    #fff;
}

.hero::after {
  content: "";
    position: absolute;
    inset: auto 0 0;
    background: url(../images/blur-a.png);
    pointer-events: none;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.hero .container-xxl {
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}


h1,
h2 {
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1.1;
}

h1 {
  max-width: 680px;
  font-size: clamp(42px, 7vw, 72px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 48px);
}



.lead,
.section-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-art {
  position: relative;
  min-height: 420px;
}

.hero-art img {
  width: min(100%, 520px);
  filter: drop-shadow(0 30px 55px rgba(16, 24, 40, 0.14));
  animation: floaty 5s ease-in-out infinite;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-weight: 700;
}

.video-link i {
  color: var(--primary);
  font-size: 24px;
}

.coin-row {
  position: relative;
  z-index: 2;
  
}

.coin-card,
.feature-card,
.step-card,
.blog-card,
.newsletter,
.market-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.06);
}

.coin-card {
  min-height: 115px;
  padding: 20px 20px 0 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.coin-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.coin-card img {
  width: 48px;
  height: 48px;
}

.coin-card span {
  display: inline-block;
  margin-left: 6px;
  padding: 5px 10px;
  color: var(--primary);
  background: #eaf2ff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.coin-card span.trade {
  color: #17a56b;
  background: var(--success-soft);
}

.coin-card h6 {
  margin: 30px 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.coin-card small {
  color: var(--muted);
  font-weight: 600;
}

.coin-card p {
  margin: 0;
  color: #344054;
  font-size: 17px;
}

.down {
  color: #e5484d;
}

.up {
  color: #12a66a;
}

.partner-band {
  padding: 48px 0;
  background: var(--soft);
}

.partner-band img {
  opacity: 0.72;
  max-height: 36px;
}

.section-pad {
  padding: 80px 0;
}

.bg-soft {
  background: var(--soft);
}

.token-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.token-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344054;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

.token-cloud img {
  width: 30px;
  height: 30px;
}

.feature-card {
  height: 100%;
  padding: 20px;
  border-radius: 8px;
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}

.feature-card h4,
.step-card h4,
.market-grid h4 {
  font-size: 21px;
  font-weight: 800;
}

.feature-card p,
.market-grid p,
.blog-card a,
.footer p,
.footer a,
.footer-bottom {
  color: var(--muted);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16, 24, 40, 0.12);
}

.video-card img {
  display: block;
  width: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(26, 115, 232, 0.35);
  transform: translate(-50%, -50%);
}

.play-button i {
  margin-left: 4px;
  font-size: 42px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  min-height: 190px;
  padding: 20px;
  border-radius: 8px;
}

.step-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
}

.step-card small {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.market-section {
  background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(23, 165, 107, 0.08)),
    #fff;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.market-grid > div {
  padding: 30px;
  border-radius: 8px;
}

.market-grid i {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-size: 26px;
}

.blog-card {
  overflow: hidden;
  border-radius: 8px;
}

.blog-card img {
  object-fit: cover;
}

.blog-large img {
  width: 100%;
  height: 350px;
}

.blog-large div {
  padding: 32px;
}

.blog-large span {
  color: var(--primary);
  font-weight: 800;
}

.blog-large h3 {
  margin: 12px 0 18px;
  font-weight: 800;
}

.blog-small {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px;
}

.blog-small + .blog-small {
  margin-top: 20px;
}

.blog-small img {
  flex: 0 0 150px;
  width: 150px;
  height: 118px;
  border-radius: 6px;
}

.blog-small h5 {
  font-weight: 800;
  line-height: 1.35;
}

.newsletter-section {
  padding: 0 0 100px;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 8px;
}

.newsletter h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.newsletter-form {
  display: flex;
  width: min(100%, 520px);
  gap: 12px;
}

.newsletter-form .form-control {
  min-height: 58px;
  border-color: var(--line);
  border-radius: 999px;
  padding-inline: 24px;
}

.newsletter-form .btn {
  min-width: 138px;
}

.cta-section {
  padding: 80px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #1357d6, #11a39f);
    border-radius: 80px;
}

 

.cta-section p {
  max-width: 620px;
  margin: 18px auto 30px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}

.footer {
  padding: 80px 0 34px;
  background: #fff;
}

.footer h5 {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 800;
}

.footer a {
  display: block;
  margin-bottom: 12px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

#inr-page {
    padding-top: 200px;
}

#inr-page h1 {
    max-width:100%;
    position:relative;
    z-index:2;
}

/* Wrapper */
.inr-page {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.7;
}

/* Container spacing */
.inr-page .container {
  max-width: 900px;
}

/* Headings */
.inr-page h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.inr-page h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

/* Paragraph */
.inr-page p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 10px;
}

/* List */
.inr-page ul {
  padding-left: 20px;
}

.inr-page ul li {
  font-size: 15px;
  margin-bottom: 6px;
  color: #334155;
}

/* Section spacing */
.inr-page .mb-4 ,
.inr-page .policy-content{
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

/* Hero section */
.inr-page .bg-light {
  background: #eef2ff !important;
}

.inr-page .bg-light p {
  font-size: 16px;
}

/* Footer */
.inr-page footer {
  background: #0f172a;
}

.inr-page footer p {
  color: #cbd5f5;
  font-size: 14px;
}

/* Links */
.inr-page a {
  color: #4f46e5;
  text-decoration: none;
}

.inr-page a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .inr-page h1 {
    font-size: 28px;
  }

  .inr-page h4 {
    font-size: 18px;
  }

  .inr-page p,
  .inr-page ul li {
    font-size: 14px;
  }

  .inr-page .mb-4 {
    padding: 15px;
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 991.98px) {
  .site-nav {
    padding: 12px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-art {
    min-height: auto;
    text-align: center;
  }

  .section-pad {
    padding: 76px 0;
  }

  .newsletter {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 40px;
  }

  .lead,
  .section-copy {
    font-size: 16px;
  }

  .coin-row {
    margin-top: 48px;
  }

  .steps-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .blog-small {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-small img {
    flex-basis: auto;
    width: 100%;
    height: 210px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}


