.section {
  padding: 112px 0;
}

.section--light {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.product-tour__content h2,
.marketplace-copy h2,
.security-copy h2,
.faq-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(35px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p,
.product-tour__content > p,
.marketplace-copy > p,
.security-copy > p,
.faq-copy > p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 35px rgb(4 48 40 / 5%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.solution-card:hover {
  border-color: #bcd9cf;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.solution-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 22px;
  font-weight: 850;
}

.solution-icon--green {
  color: #087157;
  background: #d8f6eb;
}

.solution-icon--blue {
  color: #235eb3;
  background: #dfebff;
}

.solution-icon--amber {
  color: #9b5b00;
  background: #ffefc8;
}

.solution-icon--violet {
  color: #6b36b1;
  background: #eee4ff;
}

.solution-card h3 {
  margin: 25px 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.solution-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.solution-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.product-tour {
  overflow: hidden;
  background: white;
}

.product-tour__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.product-tour__visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 45%, rgb(84 215 173 / 23%), transparent 50%),
    linear-gradient(135deg, #eaf7f2, #f8fbfa);
}

.mobile-shell {
  position: relative;
  z-index: 2;
  width: 280px;
  min-height: 530px;
  padding: 16px;
  border: 8px solid #092f29;
  border-radius: 38px;
  background: #f6f9f8;
  box-shadow: 0 35px 75px rgb(4 45 38 / 24%);
  transform: rotate(-3deg);
}

.mobile-status,
.mobile-title,
.mobile-row,
.mobile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-status {
  padding: 0 6px 13px;
  font-size: 9px;
  font-weight: 800;
}

.mobile-title {
  padding: 12px 4px;
}

.mobile-title span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #dce7e3;
  border-radius: 10px;
  background: white;
}

.mobile-balance {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
  padding: 24px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, #073a33, #0f6c59);
}

.mobile-balance small {
  color: #b9e8d9;
}

.mobile-balance strong {
  font-size: 28px;
}

.mobile-row {
  margin-top: 9px;
  padding: 15px;
  border: 1px solid #e0e9e6;
  border-radius: 14px;
  background: white;
  font-size: 11px;
}

.mobile-chart {
  height: 90px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid #e0e9e6;
  border-radius: 14px;
  background: white;
}

.mobile-chart i {
  width: 14px;
  border-radius: 5px 5px 2px 2px;
  background: #1a9a79;
}

.mobile-chart i:nth-child(1) {
  height: 34%;
}
.mobile-chart i:nth-child(2) {
  height: 62%;
}
.mobile-chart i:nth-child(3) {
  height: 48%;
}
.mobile-chart i:nth-child(4) {
  height: 76%;
}
.mobile-chart i:nth-child(5) {
  height: 58%;
}
.mobile-chart i:nth-child(6) {
  height: 88%;
}

.mobile-actions {
  margin-top: 10px;
  padding: 12px 8px;
  border-radius: 14px;
  background: white;
}

.mobile-actions > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--green-800);
  font-weight: 900;
}

.mobile-actions small {
  color: #60736e;
  font-size: 8px;
  font-weight: 700;
}

.tour-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid #d9e7e2;
  border-radius: 14px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 18px 45px rgb(4 48 40 / 15%);
  font-size: 12px;
  font-weight: 750;
}

.tour-note b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--green-700);
  background: var(--mint-light);
}

.tour-note--one {
  top: 120px;
  right: 14px;
}

.tour-note--two {
  bottom: 115px;
  left: 14px;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: start;
}

.feature-list > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0da;
  border-radius: 14px;
  color: var(--green-700);
  background: #f6faf8;
  font-size: 12px;
  font-weight: 850;
}

.feature-list div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list strong {
  font-size: 17px;
}

.feature-list small {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.section--dark {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--green-950);
}

.section--dark::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -220px;
  border: 1px solid rgb(84 215 173 / 20%);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgb(84 215 173 / 4%),
    0 0 0 140px rgb(84 215 173 / 3%);
}

.section--dark .section-heading p {
  color: #acc8c0;
}

.eyebrow--mint {
  color: var(--mint);
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 24px;
  background: rgb(255 255 255 / 12%);
}

.feature-grid article {
  min-height: 218px;
  padding: 30px;
  background: #07312b;
  transition: background 170ms ease;
}

.feature-grid article:hover {
  background: #0a4037;
}

.feature-grid article > span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-grid h3 {
  margin: 36px 0 10px;
  font-size: 20px;
}

.feature-grid p {
  margin: 0;
  color: #a8c4bc;
  font-size: 14px;
  line-height: 1.65;
}

.marketplaces {
  background: white;
}

.marketplace-panel {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 65px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 86px);
  border-radius: 34px;
  background: linear-gradient(135deg, #e5f6f0, #f7fbf9 65%);
}

.marketplace-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.marketplace-badges span {
  padding: 9px 13px;
  border: 1px solid #c9dfd7;
  border-radius: 999px;
  color: var(--green-800);
  background: rgb(255 255 255 / 65%);
  font-size: 12px;
  font-weight: 750;
}

.marketplace-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.marketplace-visual::before,
.marketplace-visual::after {
  content: "";
  position: absolute;
  width: 265px;
  height: 265px;
  border: 1px dashed rgb(12 105 85 / 30%);
  border-radius: 50%;
}

.marketplace-visual::after {
  width: 185px;
  height: 185px;
}

.marketplace-hub {
  position: relative;
  z-index: 2;
  width: 122px;
  height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid rgb(255 255 255 / 75%);
  border-radius: 34px;
  color: white;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  box-shadow: 0 24px 55px rgb(4 59 49 / 24%);
}

.marketplace-hub strong {
  font-size: 44px;
}

.marketplace-hub small {
  color: #bce9db;
  font-weight: 750;
}

.marketplace-node {
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid #d3e4de;
  border-radius: 17px;
  color: var(--green-800);
  background: white;
  box-shadow: 0 13px 30px rgb(5 58 49 / 14%);
  font-weight: 900;
}

.node--one {
  top: 16px;
  left: 46%;
}
.node--two {
  top: 88px;
  right: 16px;
}
.node--three {
  right: 44px;
  bottom: 40px;
}
.node--four {
  bottom: 24px;
  left: 23%;
}
.node--five {
  top: 90px;
  left: 4px;
}

.package-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: 0 18px 45px rgb(4 48 40 / 7%);
}

.package-card--featured {
  border-color: var(--green-700);
  box-shadow: 0 28px 60px rgb(4 77 64 / 16%);
}

.popular-label {
  position: absolute;
  top: -15px;
  right: 26px;
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: var(--green-700);
  font-size: 11px;
  font-weight: 800;
}

.package-card__top > span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 10px 0 12px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.package-card__top p {
  min-height: 74px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-card li {
  color: #344f48;
  font-size: 14px;
}

.pricing-note {
  margin: 25px auto 0;
  color: #71827d;
  font-size: 12px;
  text-align: center;
}

.security-section {
  color: white;
  background: linear-gradient(135deg, #062d28, #0a443a);
}

.security-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.security-copy > p {
  color: #afc8c1;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 15px;
  color: var(--mint);
  font-weight: 800;
}

.security-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.security-cards article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 25px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 19px;
  background: rgb(255 255 255 / 5%);
}

.security-cards article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--mint);
  background: rgb(84 215 173 / 12%);
  font-size: 14px;
  font-weight: 900;
}

.security-cards div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.security-cards small {
  color: #a9c2bb;
  font-size: 12px;
  line-height: 1.55;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-copy {
  position: sticky;
  top: 130px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green-800);
  background: #e9f5f1;
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -6px 0 25px;
  padding-right: 48px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  padding: 0 0 80px;
  background: white;
}

.final-cta__inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(38px, 7vw, 80px);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 86% 20%, rgb(84 215 173 / 18%), transparent 32%), var(--green-950);
}

.final-cta__inner > div {
  max-width: 720px;
}

.final-cta p {
  color: #aec7c0;
}

.site-footer {
  padding: 70px 0 24px;
  color: #d6e6e1;
  background: #031f1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  color: #8fa9a2;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: white;
  font-size: 13px;
}

.footer-grid a {
  color: #93ada6;
  font-size: 12px;
}

.footer-note {
  color: #78948c;
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  color: #7d9891;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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