/*======================================
    CryptoLand — Project Sections
    Extends assets/css/main.css
========================================*/

:root {
  --cl-primary: #3E80FF;
  --cl-primary-dark: #2f6ae0;
  --cl-deep: #24126A;
  --cl-heading: #081828;
  --cl-body: #727272;
  --cl-light: #F4F7FA;
  --cl-border: #e5eaf3;
  --cl-white: #fff;
  --cl-radius: 20px;
  --cl-radius-sm: 10px;
  --cl-shadow: 0px 0px 30px rgba(81, 94, 125, 0.082);
  --cl-shadow-lg: 0px 15px 45px rgba(36, 18, 106, 0.1);
  --cl-ease: all 0.4s ease;
  --cl-font-head: 'Spartan', sans-serif;
  --grid-gap: 30px;
}

/*======================================
    Shared helpers
========================================*/
.section-title.title-left {
  text-align: left;
  padding: 0;
  margin-bottom: 40px;
}

.section-title.title-narrow {
  padding: 0 180px;
}

.bg-light-gray {
  background-color: var(--cl-light);
}

.section-button {
  margin-top: 50px;
  text-align: center;
}

.block-spaced {
  margin-top: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cl-primary);
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #17b26a;
  background-color: rgba(23, 178, 106, 0.1);
  border-radius: 30px;
  padding: 6px 14px;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #17b26a;
}

.icon-tumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(62, 128, 255, 0.12), rgba(36, 18, 106, 0.08));
  color: var(--cl-primary);
  font-size: 32px;
  transition: var(--cl-ease);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cl-primary);
  transition: var(--cl-ease);
}

.link-arrow i {
  font-size: 13px;
  transition: var(--cl-ease);
}

.link-arrow:hover {
  color: var(--cl-deep);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title.title-narrow {
    padding: 0 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title.title-narrow {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .section-title.title-narrow {
    padding: 0;
  }
}

/*======================================
    Page hero (inner pages)
========================================*/
.breadcrumbs {
  overflow: hidden;
  background-image: linear-gradient(120deg, #24126A 0%, #2d1a7d 45%, #3E80FF 140%);
}

.breadcrumbs::after {
  position: absolute;
  content: "";
  right: -80px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 128, 255, 0.45) 0%, rgba(62, 128, 255, 0) 70%);
  z-index: -1;
}

.breadcrumbs .breadcrumbs-content .page-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 28px;
  margin: 0 auto;
  margin-top: 18px;
  max-width: 720px;
}

/*======================================
    Hero additions
========================================*/
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Keep the underline swoosh a consistent height — the SVG is 6:1, so a wide
   headline word would otherwise scale it up across the text. */
.hero-area .hero-content h1 span .text-shape {
  height: 16px;
  bottom: 2px;
  object-fit: fill;
}

.hero-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.25);
}

.hero-area .hero-content .hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 26px;
  margin-top: 15px;
}

/* Inner-page hero: centered, no illustration, larger type */
.hero-area.hero-area--page {
  padding: 220px 0 200px;
}

.hero-area.hero-area--page .hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-area.hero-area--page .hero-badge {
  margin-bottom: 28px;
}

.hero-area.hero-area--page .hero-content h1 {
  font-size: 52px;
  line-height: 68px;
}

.hero-area.hero-area--page .hero-content h1 span .text-shape {
  height: 22px;
  bottom: 4px;
}

.hero-area.hero-area--page .hero-content p {
  max-width: 640px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-area.hero-area--page .hero-content .button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.hero-area.hero-area--page .hero-content .button .btn {
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area.hero-area--page {
    padding: 170px 0 150px;
  }

  .hero-area.hero-area--page .hero-content {
    padding: 0;
  }

  .hero-area.hero-area--page .hero-content h1 {
    font-size: 40px;
    line-height: 52px;
  }
}

@media (max-width: 767px) {
  .hero-area.hero-area--page {
    padding: 140px 0 120px;
  }

  .hero-area.hero-area--page .hero-content {
    padding: 0 10px;
  }

  .hero-area.hero-area--page .hero-content h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-area.hero-area--page .hero-content p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 20px;
  }

  .hero-area.hero-area--page .hero-content .button {
    margin-top: 32px;
  }

  .hero-area.hero-area--page .hero-content .button .btn {
    width: auto;
    margin: 0;
  }
}

/* Hero aside — "What you get" list */
.hero-aside {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--cl-radius);
  padding: 40px;
  backdrop-filter: blur(6px);
}

.hero-aside .hero-aside-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-aside ul li {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-aside ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.hero-aside ul li i {
  flex-shrink: 0;
  color: var(--cl-primary);
  font-size: 20px;
  line-height: 26px;
}

.hero-aside ul li h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-aside ul li p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 991px) {
  .hero-aside {
    padding: 30px;
    margin-top: 50px;
  }
}

/*======================================
    Metrics strip
========================================*/
.metrics-strip {
  padding-top: 70px;
  padding-bottom: 0;
}

.metrics-panel {
  background-color: var(--cl-white);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
  padding: 55px 20px;
}

.metric-card {
  position: relative;
  text-align: center;
  padding: 10px 20px;
}

.metric-card::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background-color: var(--cl-border);
}

.metric-card.is-last::after,
.metric-card:last-child::after {
  display: none;
}

.metric-value {
  font-family: var(--cl-font-head);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cl-primary);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--cl-heading);
}

.metric-note {
  font-size: 13px;
  color: var(--cl-body);
  margin-top: 6px;
}

@media (max-width: 991px) {
  .metric-value {
    font-size: 30px;
  }
  .metric-card {
    padding: 20px 10px;
  }
  .metric-card::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .metrics-panel {
    padding: 30px 10px;
  }
  .metric-value {
    font-size: 28px;
  }
}

/*======================================
    Feature box variants (icon based)
========================================*/
.feature .feature-box .icon-tumb {
  margin-bottom: 5px;
}

.feature .feature-box:hover .icon-tumb {
  background: var(--cl-primary);
  color: #fff;
}

.feature .feature-box .card-status {
  display: block;
  margin-bottom: 25px;
}

.feature .feature-box.text-start {
  text-align: left;
}

/*======================================
    Strategy allocation cards
========================================*/
.strategy-card {
  --ring-value: 0%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: var(--grid-gap);
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 40px;
  transition: var(--cl-ease);
}

.strategy-card.p-55 {
  --ring-value: 55%;
}

.strategy-card.p-30 {
  --ring-value: 30%;
}

.strategy-card.p-15 {
  --ring-value: 15%;
}

.strategy-card:hover {
  border-color: var(--cl-primary);
  box-shadow: var(--cl-shadow-lg);
  transform: translateY(-6px);
}

.strategy-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.strategy-ring {
  position: relative;
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(var(--cl-primary) var(--ring-value), var(--cl-light) 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-ring::before {
  position: absolute;
  content: "";
  inset: 9px;
  border-radius: 50%;
  background-color: var(--cl-white);
}

.strategy-ring span {
  position: relative;
  font-family: var(--cl-font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--cl-deep);
}

.strategy-code {
  font-family: var(--cl-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--cl-primary);
  display: block;
  margin-bottom: 8px;
}

.strategy-focus {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cl-body);
}

.strategy-card h4 {
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.strategy-card p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 28px;
}

.strategy-bar {
  height: 6px;
  border-radius: 6px;
  background-color: var(--cl-light);
  margin-top: auto;
  overflow: hidden;
}

.strategy-bar span {
  display: block;
  height: 100%;
  width: var(--ring-value);
  border-radius: 6px;
  background: linear-gradient(90deg, var(--cl-primary), var(--cl-deep));
}

.pricing-disclaimer {
  margin-top: 45px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--cl-body);
}

@media (max-width: 767px) {
  .strategy-card {
    padding: 30px 25px;
  }
}

/*======================================
    Journey timeline
========================================*/
.journey-timeline {
  position: relative;
  padding-left: 90px;
}

.journey-timeline::before {
  position: absolute;
  content: "";
  left: 29px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--cl-primary), rgba(62, 128, 255, 0.15));
}

.journey-step {
  position: relative;
  padding-bottom: 55px;
}

.journey-step:last-child {
  padding-bottom: 0;
}

.journey-num {
  position: absolute;
  left: -90px;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--cl-white);
  border: 2px solid var(--cl-primary);
  color: var(--cl-primary);
  font-family: var(--cl-font-head);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-step.is-live .journey-num {
  background-color: var(--cl-primary);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(62, 128, 255, 0.15);
}

.journey-body {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: var(--cl-ease);
}

.journey-body:hover {
  box-shadow: var(--cl-shadow-lg);
  border-color: var(--cl-primary);
}

.journey-visual {
  min-height: 220px;
  background-color: var(--cl-light);
}

.journey-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-copy {
  padding: 35px 40px;
}

.journey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.journey-head h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.journey-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 6px 14px;
  background-color: rgba(23, 178, 106, 0.1);
  color: #17b26a;
}

.journey-badge.is-live {
  background-color: rgba(62, 128, 255, 0.1);
  color: var(--cl-primary);
}

.journey-body p {
  font-size: 15px;
  line-height: 26px;
}

.journey-progress {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.journey-track {
  flex: 1;
  height: 6px;
  border-radius: 6px;
  background-color: var(--cl-light);
  overflow: hidden;
}

.journey-track span {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--cl-primary), var(--cl-deep));
}

.journey-track span.p-100 {
  width: 100%;
}

.journey-track span.p-62 {
  width: 62%;
}

.journey-percent {
  font-family: var(--cl-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--cl-deep);
}

.journey-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--cl-border);
}

.journey-milestones li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--cl-body);
}

.journey-milestones li i {
  color: var(--cl-primary);
  font-size: 14px;
}

.journey-milestones li.is-pending i {
  color: #d0d5dd;
}

@media (max-width: 991px) {
  .journey-body {
    grid-template-columns: 1fr;
  }
  .journey-visual {
    min-height: 200px;
    max-height: 220px;
  }
}

@media (max-width: 767px) {
  .journey-timeline {
    padding-left: 0;
  }
  .journey-timeline::before {
    display: none;
  }
  .journey-num {
    position: static;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .journey-copy {
    padding: 28px 25px;
  }
}

/*======================================
    Split cards (team / traders)
========================================*/
.split-card {
  height: 100%;
  margin-top: var(--grid-gap);
  background-color: var(--cl-white);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow);
  overflow: hidden;
  transition: var(--cl-ease);
}

.split-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cl-shadow-lg);
}

.split-card-visual {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, var(--cl-deep) 0%, #3a2394 55%, var(--cl-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-card-visual::after {
  position: absolute;
  content: "";
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
}

.split-card-visual i {
  position: relative;
  font-size: 54px;
  color: #fff;
}

.split-card-body {
  padding: 35px 40px 40px;
}

.split-card-body h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.split-card-body p {
  font-size: 15px;
  line-height: 26px;
}

@media (max-width: 767px) {
  .split-card-body {
    padding: 30px 25px;
  }
}

/*======================================
    Why grid (text + mini cards)
========================================*/
.why-content {
  padding-right: 40px;
}

.why-content .title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-content p {
  margin-bottom: 30px;
}

.mini-card {
  height: 100%;
  margin-top: var(--grid-gap);
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  padding: 30px 28px;
  transition: var(--cl-ease);
}

.mini-card:hover {
  border-color: var(--cl-primary);
  box-shadow: var(--cl-shadow-lg);
}

.mini-card i {
  display: block;
  font-size: 26px;
  color: var(--cl-primary);
  margin-bottom: 18px;
}

.mini-card h5 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mini-card p {
  font-size: 14px;
  line-height: 25px;
}

@media (max-width: 991px) {
  .why-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

/*======================================
    Zigzag rows (promise / directives)
========================================*/
.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.zigzag-row.is-reverse {
  flex-direction: row-reverse;
}

.zigzag-visual {
  flex: 0 0 42%;
  position: relative;
  min-height: 320px;
  border-radius: var(--cl-radius);
  background: linear-gradient(135deg, var(--cl-deep) 0%, #3a2394 55%, var(--cl-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zigzag-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zigzag-visual:has(img) {
  background: var(--cl-light);
}

.zigzag-visual::after {
  position: absolute;
  content: "";
  left: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
}

.zigzag-visual:has(img)::after {
  display: none;
}

.zigzag-visual i {
  position: relative;
  font-size: 64px;
  color: #fff;
}

.zigzag-body {
  flex: 1;
}

.zigzag-num {
  font-family: var(--cl-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cl-primary);
  display: block;
  margin-bottom: 15px;
}

.zigzag-body h3 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .zigzag-row,
  .zigzag-row.is-reverse {
    flex-direction: column;
    gap: 35px;
    margin-bottom: 55px;
  }
  .zigzag-visual {
    flex: none;
    width: 100%;
    min-height: 260px;
  }
  .zigzag-body h3 {
    font-size: 24px;
    line-height: 34px;
  }
}

/*======================================
    Info table (what we offer / global reach)
========================================*/
.info-table {
  width: 100%;
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  overflow: hidden;
}

.info-table th {
  font-family: var(--cl-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cl-deep);
  background-color: var(--cl-light);
  padding: 22px 35px;
  text-align: left;
}

.info-table td {
  padding: 26px 35px;
  font-size: 15px;
  line-height: 26px;
  color: var(--cl-body);
  border-top: 1px solid var(--cl-border);
  vertical-align: top;
}

.info-table td:first-child {
  width: 32%;
  font-weight: 600;
  color: var(--cl-heading);
}

@media (max-width: 767px) {
  .info-table th {
    display: none;
  }
  .info-table td,
  .info-table td:first-child {
    display: block;
    width: 100%;
    padding: 0 25px;
  }
  .info-table td:first-child {
    padding-top: 25px;
    border-top: 1px solid var(--cl-border);
  }
  .info-table td:last-child {
    padding-bottom: 25px;
    border-top: none;
  }
  .info-table tr:first-child td:first-child {
    border-top: none;
  }
}

/*======================================
    Notice block (risk disclaimer)
========================================*/
.notice-block {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-left: 4px solid var(--cl-primary);
  border-radius: var(--cl-radius-sm);
  padding: 35px 40px;
  display: flex;
  gap: 22px;
}

.notice-block i {
  flex-shrink: 0;
  font-size: 26px;
  color: var(--cl-primary);
}

.notice-block h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.notice-block p {
  font-size: 15px;
  line-height: 26px;
}

.notice-block.is-alert {
  border-left-color: #f79009;
}

.notice-block.is-alert i {
  color: #f79009;
}

@media (max-width: 767px) {
  .notice-block {
    padding: 28px 25px;
    flex-direction: column;
    gap: 15px;
  }
}

/*======================================
    Node grid (market analysis / telemetry)
========================================*/
.node-card {
  height: 100%;
  margin-top: var(--grid-gap);
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 28px 32px;
  transition: var(--cl-ease);
}

.node-card:hover {
  border-color: var(--cl-primary);
  box-shadow: var(--cl-shadow-lg);
}

.node-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.node-card .icon-tumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 14px;
  font-size: 22px;
}

.node-card h4 {
  font-size: 19px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.node-card p {
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .node-card {
    padding: 24px 22px;
  }

  .node-card-head {
    gap: 14px;
    margin-bottom: 10px;
  }

  .node-card .icon-tumb {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .node-card h4 {
    font-size: 17px;
    line-height: 26px;
  }
}

/*======================================
    Device cards (environment / tools)
========================================*/
.device-card {
  height: 100%;
  margin-top: var(--grid-gap);
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  padding: 32px 30px;
  overflow: hidden;
  transition: var(--cl-ease);
}

.device-card:hover {
  border-color: var(--cl-primary);
  transform: translateY(-6px);
  box-shadow: var(--cl-shadow-lg);
}

.device-card:has(.device-visual) {
  padding: 0 0 28px;
}

.device-visual {
  aspect-ratio: 1 / 1;
  background-color: var(--cl-light);
  overflow: hidden;
}

.device-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.device-card:hover .device-visual img {
  transform: scale(1.04);
}

.device-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}

.device-card:has(.device-visual) .device-meta {
  margin: 20px 24px 12px;
}

.device-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cl-primary);
}

.device-num {
  font-family: var(--cl-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--cl-border);
}

.device-card i.device-icon {
  display: block;
  font-size: 30px;
  color: var(--cl-primary);
  margin-bottom: 20px;
}

.device-card h5 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.device-card p {
  font-size: 14px;
  line-height: 25px;
}

.device-card:has(.device-visual) h5,
.device-card:has(.device-visual) p {
  padding: 0 24px;
}

/*======================================
    FAQ accordion
========================================*/
.faq-banner {
  height: 100%;
  min-height: 420px;
  border-radius: var(--cl-radius);
  overflow: hidden;
  background-color: var(--cl-light);
}

.faq-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .faq-banner {
    min-height: 240px;
    max-height: 280px;
    margin-bottom: 30px;
  }
}

.faq-accordion .faq-item {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--cl-ease);
}

.faq-accordion .faq-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .faq-item:hover {
  border-color: var(--cl-primary);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 32px;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--cl-font-head);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--cl-deep);
  cursor: pointer;
  transition: var(--cl-ease);
}

.faq-btn i {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--cl-primary);
  transition: var(--cl-ease);
}

.faq-btn[aria-expanded="true"] {
  color: var(--cl-primary);
}

.faq-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer-inner {
  padding: 0 32px 28px;
  font-size: 15px;
  line-height: 27px;
  color: var(--cl-body);
}

@media (max-width: 767px) {
  .faq-btn {
    padding: 22px 22px;
    font-size: 15px;
  }
  .faq-answer-inner {
    padding: 0 22px 24px;
  }
}

/*======================================
    Lead form
========================================*/
.lead-form-panel {
  background-color: var(--cl-white);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-shadow-lg);
  padding: 45px 45px 40px;
}

.lead-form-title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lead-form-lead {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 30px;
}

.register-field {
  margin-bottom: 20px;
}

.register-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--cl-heading);
  margin-bottom: 9px;
}

.register-field .req {
  color: var(--cl-primary);
}

.register-field input,
.register-field select,
.register-field textarea {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--cl-heading);
  background-color: var(--cl-light);
  border: 1px solid transparent;
  border-radius: var(--cl-radius-sm);
  transition: var(--cl-ease);
}

.register-field input::placeholder {
  color: #a3aab8;
}

.register-field input:focus {
  background-color: var(--cl-white);
  border-color: var(--cl-primary);
  box-shadow: 0 0 0 4px rgba(62, 128, 255, 0.1);
}

.register-field input.valid {
  border-color: #17b26a;
}

.register-field input.invalid {
  border-color: #f04438;
}

/* Autofill — keep the light field background instead of the browser default */
.register-field input:-webkit-autofill,
.register-field input:-webkit-autofill:hover,
.register-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--cl-light) inset;
  -webkit-text-fill-color: var(--cl-heading);
  caret-color: var(--cl-heading);
}

.register-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--cl-white) inset, 0 0 0 4px rgba(62, 128, 255, 0.1);
}

.register-required-note {
  font-size: 13px;
  color: var(--cl-body);
  margin-bottom: 22px;
}

.register-required-note .req {
  color: var(--cl-primary);
}

.btn-primary.register-submit {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: var(--cl-primary);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--cl-ease);
}

.btn-primary.register-submit:hover {
  background-color: var(--cl-deep);
}

.btn-primary.register-submit.disabled,
.btn-primary.register-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.register-legal {
  font-size: 13px;
  line-height: 22px;
  color: var(--cl-body);
  text-align: center;
  margin-top: 18px;
}

.register-legal a {
  color: var(--cl-primary);
  font-weight: 500;
}

.register-legal a:hover {
  text-decoration: underline;
}

.form-msg {
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 767px) {
  .lead-form-panel {
    padding: 32px 25px 30px;
  }
  .lead-form-title {
    font-size: 22px;
    line-height: 32px;
  }
}

/* intl-tel-input — align the CDN widget with the light CryptoLand theme */
.register-field .iti {
  width: 100%;
}

.register-field .iti__tel-input,
.register-field .iti input[type="tel"] {
  padding-left: 52px;
}

.iti__country-list,
.iti__dropdown-content {
  background-color: var(--cl-white) !important;
  border: 1px solid var(--cl-border) !important;
  border-radius: var(--cl-radius-sm) !important;
  box-shadow: var(--cl-shadow-lg) !important;
  color: var(--cl-heading) !important;
}

.iti__country {
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: var(--cl-heading) !important;
}

.iti__country.iti__highlight,
.iti__country:hover {
  background-color: var(--cl-light) !important;
}

.iti__dial-code {
  color: var(--cl-body) !important;
}

.iti__search-input,
.lf-iti-search {
  width: 100% !important;
  padding: 12px 14px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  color: var(--cl-heading) !important;
  background-color: var(--cl-light) !important;
  border: none !important;
  border-bottom: 1px solid var(--cl-border) !important;
}

/*======================================
    CTA section (start today)
========================================*/
.cta-section {
  background-color: var(--cl-light);
}

.cta-info .cta-title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-info > p {
  margin-bottom: 35px;
}

.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cl-body);
  margin-bottom: 15px;
}

.partner-markets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.partner-markets li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: 10px;
}

.partner-markets li img {
  display: block;
  width: auto;
  height: 20px;
}

.partner-markets li img[alt="OKX"] {
  height: 18px;
}

.partner-markets li img[alt="dYdX"] {
  height: 28px;
}

.partner-markets li.is-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--cl-body);
  border-radius: 30px;
}

.seal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-bottom: 40px;
}

.seal-list li i {
  display: block;
  font-size: 24px;
  color: var(--cl-primary);
  margin-bottom: 12px;
}

.seal-list li h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.seal-list li span {
  font-size: 13px;
  color: var(--cl-body);
}

.requirement-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 14px;
}

.requirement-list li:last-child {
  margin-bottom: 0;
}

.requirement-list li i {
  flex-shrink: 0;
  color: var(--cl-primary);
  font-size: 15px;
  line-height: 26px;
}

@media (max-width: 991px) {
  .lead-form-panel {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .cta-info .cta-title {
    font-size: 26px;
    line-height: 36px;
  }
  .seal-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/*======================================
    Register page
========================================*/
.register-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 35px 0;
}

.register-perks li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-sm);
  padding: 22px 24px;
}

.register-perk-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cl-body);
}

.register-perk-value {
  font-family: var(--cl-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--cl-primary);
}

.register-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cl-body);
}

.register-secure i {
  color: #17b26a;
  font-size: 16px;
}

@media (max-width: 767px) {
  .register-perks {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/*======================================
    Legal documents
========================================*/
.legal-doc {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  padding: 60px 70px;
}

.legal-updated {
  font-size: 14px;
  color: var(--cl-body);
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--cl-border);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.legal-section p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 18px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0 0 18px;
  padding-left: 0;
}

.legal-section ul li {
  position: relative;
  font-size: 15px;
  line-height: 28px;
  padding-left: 26px;
  margin-bottom: 10px;
}

.legal-section ul li::before {
  position: absolute;
  content: "";
  left: 6px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cl-primary);
}

.legal-section ul li strong {
  color: var(--cl-heading);
  font-weight: 600;
}

.legal-section a {
  color: var(--cl-primary);
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .legal-doc {
    padding: 45px 40px;
  }
}

@media (max-width: 767px) {
  .legal-doc {
    padding: 35px 25px;
  }
  .legal-section h2 {
    font-size: 19px;
    line-height: 29px;
  }
}

/*======================================
    Footer adjustments
========================================*/
.footer .single-footer.f-about .risk-note {
  font-size: 13px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .copyright-area .copyright-links {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
}

.footer .copyright-area .copyright-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--cl-ease);
}

.footer .copyright-area .copyright-links a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer .copyright-area .copyright-links {
    justify-content: center;
    margin-top: 12px;
  }
}

/*======================================
    Slide-out lead drawer
========================================*/
.terminal-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.terminal-drawer-root.is-open {
  pointer-events: auto;
  visibility: visible;
}

.terminal-drawer-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(8, 24, 40, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.terminal-drawer-root.is-open .terminal-drawer-overlay {
  opacity: 1;
}

.terminal-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background-color: var(--cl-white);
  box-shadow: -20px 0 60px rgba(36, 18, 106, 0.18);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.terminal-drawer-root.is-open .terminal-drawer {
  transform: translateX(0);
}

.terminal-drawer__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: var(--cl-light);
  color: var(--cl-deep);
  cursor: pointer;
  transition: var(--cl-ease);
}

.terminal-drawer__close:hover {
  background-color: var(--cl-primary);
  color: #fff;
}

.terminal-drawer__inner {
  padding: 70px 45px 50px;
}

.terminal-drawer__brand {
  display: inline-block;
  font-family: var(--cl-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cl-deep);
  margin-bottom: 28px;
}

.terminal-drawer__brand span {
  color: var(--cl-primary);
}

.terminal-drawer__title {
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 12px;
}

.terminal-drawer__lead {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 30px;
}

body.terminal-drawer-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .terminal-drawer__inner {
    padding: 65px 25px 40px;
  }
  .terminal-drawer__title {
    font-size: 21px;
    line-height: 31px;
  }
}
