:root {
  --a: rgb(70, 179, 126);
  --b0: #040506;
  --b1: #0A0C10;
  --bc: rgba(255, 255, 255, 0.099);
  --bch: rgba(255, 255, 255, 0.04);
  --t1: #E8EAED;
  --t2: #9CA3AF;
  --t3: #5C6370;
  --br: rgba(255, 255, 255, 0.055);
  --brh: rgba(255, 255, 255, 0.11);
  --fd: 'Anton', sans-serif;
  --fb: 'Outfit', sans-serif;
  --fm: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #222 var(--b0)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--b0)
}

::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 3px
}

body {
  font-family: var(--fb);
  background: var(--b0);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

.secondary-heading {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 3vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero-subheading {
  font-family: var(--fm);
  font-size: 1.4rem;
  color: var(--t1);
  max-width: 560px;
  margin: 0 auto .2rem;
  line-height: 1.75;
  font-weight: 600;
}

.hero-text-block {
  width: 550px;
  margin: 0 auto 2rem;
}

.mint-leaf-icon {
  height: 30px;
  display: flex;
  margin-bottom: 1.1rem;
}

.hero-icon-mint-leaf {
  width: 54px;
  margin: 0 auto 1.5rem;
  display: block;
}

.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.ld {
  position: fixed;
  inset: 0;
  background: var(--b0);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s;
}

.ld.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.lb {
  width: 120px;
  height: 1px;
  background: var(--br);
  overflow: hidden;
  position: relative
}

.lb::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  animation: ls .6s ease-in-out infinite
}

@keyframes ls {
  0% {
    left: -50%
  }

  100% {
    left: 100%
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .7rem 2rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.nav.scrolled {
  background: rgba(4, 5, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--br)
}

.ni {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative
}

.nlogo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0
}

.nlogo img {
  height: 52px
}

.nl {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.nl a,
.dt {
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 400;
  color: var(--t2);
  text-decoration: none;
  padding: .4rem .85rem;
  border-radius: 7px;
  transition: all .25s;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: .3rem
}

.nl a:hover,
.dt:hover {
  color: var(--t1);
  background: rgba(255, 255, 255, 0.035)
}

.dd {
  position: relative
}

.dm {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(10, 12, 16, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--br);
  border-radius: 12px;
  padding: .35rem .35rem .35rem .35rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
  z-index: 100;
  padding-top: .65rem
}

.dm::before {
  content: '';
  position: absolute;
  top: -.5rem;
  left: 0;
  right: 0;
  height: .6rem
}

.dd:hover .dm {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.dm a {
  display: block;
  padding: .5rem .8rem;
  border-radius: 8px;
  font-size: .8rem;
  cursor: pointer
}

.dm a:hover {
  background: rgba(255, 255, 255, 0.04)
}

.nc {
  font-family: var(--fb);
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: var(--b0) !important;
  background: var(--a) !important;
  padding: .45rem 1.2rem !important;
  border-radius: 100px !important;
  transition: all .3s !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center
}

.nc:hover {
  background: #fff !important;
  transform: translateY(-1px)
}

.mt {
  display: none;
  background: none;
  border: none;
  color: var(--t1);
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px
}

.mm {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 6, 0.97);
  backdrop-filter: blur(25px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  overflow-y: auto;
  gap: .8rem;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.mm.active {
  transform: translateX(0);
}

.mm a {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  padding: .5rem 1.5rem;
  border-radius: 9px;
  transition: all .25s;
  cursor: pointer
}

.mm a:hover {
  color: var(--t1)
}

.mc {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--t1);
  cursor: pointer
}

.bp {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.7rem;
  border-radius: 100px;
  background: var(--a);
  color: var(--b0);
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 20px rgba(61, 255, 162, .08)
}

.bp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(61, 255, 162, .18)
}

.btn-shiny {
  position: relative;
  overflow: hidden;
}

.btn-shiny::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shinyEffect 3s infinite;
}

@keyframes shinyEffect {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.bs {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.7rem;
  border-radius: 100px;
  background: transparent;
  color: var(--t1);
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--brh);
  cursor: pointer;
  transition: all .35s cubic-bezier(.16, 1, .3, 1)
}

.bs:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px)
}

.erikx-star-btn {
  position: relative;
  overflow: hidden;
  z-index: 3;
  --duration: 3;
  --light-width: 140px;
  --light-color: var(--a);
  border: none !important;
}

.erikx-star-light {
  position: absolute;
  aspect-ratio: 1 / 1;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, var(--light-color) 0%, transparent 60%, transparent 100%);
  animation: star-btn-path calc(var(--duration) * 1s) linear infinite;
  offset-path: var(--path, path('M 0 0 H 200 V 50 H 0 V 0'));
  offset-distance: 0%;
  width: var(--light-width);
}

.erikx-star-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  border: 1px solid var(--brh);
}

.erikx-star-bg-layer svg {
  width: 100%;
  height: 100%;
}

.erikx-star-text {
  position: relative;
  z-index: 3;
}

@keyframes star-btn-path {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
  background: transparent
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, var(--b0) 100%);
  pointer-events: none;
  z-index: 1
}

.hc {
  position: relative;
  z-index: 2
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.01em;
  max-width: 820px;
  margin: 0 auto 1.3rem;
  animation: fu .7s .1s ease both
}

.hero h1 em {
  font-style: normal;
  color: #fff;
  text-shadow: 0 0 60px rgba(61, 255, 162, 0.12), 0 0 120px rgba(61, 255, 162, 0.05)
}

.logo-inline-wrap {
  display: inline-block;

  overflow: hidden;
  vertical-align: baseline;
  position: relative;
  top: 0;
}

.logo-inline-wrap img.logo-img {
  height: 1.05em;
  display: block;
  width: auto;
}

.logo-leaf-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: circle(6% at 66% 12%);
  transform-origin: 66% 22%;
  animation: leafRustle 10s ease-in-out infinite;
  z-index: 2;
  pointer-events: none
}

.logo-leaf-layer img {
  height: 1.05em;
  display: block;
  width: auto;
}

@keyframes leafRustle {

  0%,
  92%,
  100% {
    transform: rotate(0deg) scale(1)
  }

  93.5% {
    transform: rotate(-5deg) scale(1.06)
  }

  95% {
    transform: rotate(4deg) scale(1.1)
  }

  96.5% {
    transform: rotate(-3deg) scale(1.05)
  }

  98% {
    transform: rotate(2deg) scale(1.02)
  }

  99.5% {
    transform: rotate(-0.5deg) scale(1)
  }
}

.mint-star {
  position: fixed;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  width: 10px;
  height: 10px
}

.mint-star svg {
  width: 100%;
  height: 100%
}

.mint-star.fly {
  animation: starShoot linear forwards
}

@keyframes starShoot {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.5)
  }

  8% {
    opacity: 0.12
  }

  50% {
    opacity: 0.08
  }

  90% {
    opacity: 0.03
  }

  100% {
    opacity: 0;
    transform: translate(calc(100vw + 100px), calc(30vh)) rotate(45deg) scale(0.4)
  }
}

.hsub {
  font-size: clamp(.92rem, 1.3vw, 1.1rem);
  color: var(--t2);
  max-width: 530px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  line-height: 1.7;
  animation: fu .7s .22s ease both
}

.ha {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fu .7s .35s ease both
}

.ha .bp {
  position: relative;
  animation: heroPulsePrimary 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.ha .bs {
  position: relative;
  animation: heroPulseSecondary 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: 1.1s;
}

@keyframes heroPulsePrimary {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 255, 162, 0.6), 0 0 20px rgba(61, 255, 162, 0.08);
  }

  80% {
    box-shadow: 0 0 0 16px rgba(61, 255, 162, 0), 0 0 30px rgba(61, 255, 162, 0.15);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(61, 255, 162, 0), 0 0 20px rgba(61, 255, 162, 0.08);
  }
}

@keyframes heroPulseSecondary {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  80% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.pg {
  position: relative;
  z-index: 2;
  animation: pgIn .45s ease both
}

@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

section {
  position: relative;
  z-index: 2
}

.sp {
  padding: 6rem 2rem
}

.ctr {
  max-width: 1400px;
  margin: 0 auto
}

.sl {
  font-family: var(--fm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .9rem;
  display: block;
}

.sl::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 1px;
  background: var(--t3);
  margin-right: 0.55rem;
  position: relative;
  top: -1px
}

.st {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: .9rem
}

.sd {
  font-size: .98rem;
  color: var(--t2);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300
}

.ct {
  text-align: center
}

.ct .sl {
  justify-content: center
}

.ct .sd {
  margin: 0 auto
}

.ph {
  padding: 9.5rem 2rem 4.5rem;
  text-align: center
}

.ph h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: .9rem;
  animation: fu .7s ease both
}

.ph p {
  font-size: 1rem;
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  animation: fu .7s .12s ease both
}

.tk {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  background: rgba(4, 5, 6, 0.6)
}

.tt {
  display: flex;
  gap: 2.2rem;
  animation: tkk 42s linear infinite;
  width: max-content
}

.ti {
  font-family: var(--fm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--t3);
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .55rem
}

.ti::before {
  content: '';
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--a);
  opacity: .35
}

@keyframes tkk {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.cd {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background: var(--b0);
  border: 1px solid var(--br);
  backdrop-filter: blur(6px);
  transition: all .15s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(61, 255, 162, 0.6)
}

.cd:hover {
  border-color: var(--brh);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(61, 255, 162, 0.4)
}

#pg-industries .cd img {
  margin: -2rem -2rem 1.5rem -2rem !important;
  width: calc(100% + 4rem) !important;
  max-width: none !important;
  border-radius: 0 !important;
  display: block;
}

#pg-industries .g4 {
  gap: 2.2rem !important;
  margin-top: 1rem;
}

.pricing-grid .cd {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.pricing-grid .cd:hover {
  box-shadow: none;
}

.pricing-grid .cd:nth-child(1):hover {
  background: rgba(61, 255, 162, 0.04);
}

.pricing-grid .cd:nth-child(2):hover {
  background: rgba(255, 180, 61, 0.04);
}

.pricing-grid .cd:nth-child(3):hover {
  background: rgba(61, 162, 255, 0.04);
}

.pricing-grid .cd:nth-child(4):hover {
  background: rgba(200, 61, 255, 0.04);
}

.cd h3 {
  font-family: var(--fm);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .55rem
}

.cd p {
  color: var(--t2);
  font-size: .87rem;
  line-height: 1.6;
  font-weight: 300
}

.ci {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--t2)
}

.ctg {
  font-family: var(--fm);
  font-size: .6rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: .7rem
}

.cb {
  margin-top: .7rem;
  padding: .35rem .7rem;
  border-radius: 7px;
  background: rgba(61, 255, 162, .07);
  border: 1px solid rgba(61, 255, 162, .12);
  font-size: .7rem;
  color: var(--a);
  font-weight: 600;
  display: inline-block
}

.cl {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .8rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color .25s;
  cursor: pointer
}

.cl:hover {
  color: var(--t1)
}

.cl svg {
  transition: transform .25s
}

.cl:hover svg {
  transform: translateX(3px)
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.sp2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 2.5rem;
  counter-reset: s
}

.stp {
  position: relative;
  padding: 1.8rem 1.3rem;
  border-radius: 14px;
  background: var(--bc);
  border: 1px solid var(--br);
  counter-increment: s
}

.stp::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: .7rem;
  right: .9rem;
  line-height: 1
}

.stp h4 {
  font-family: var(--fm);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem
}

.stp p {
  color: var(--t2);
  font-size: .8rem;
  line-height: 1.55;
  font-weight: 300
}

.tc {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  padding: 2.8rem;
  border-radius: 20px;
  background: rgba(61, 255, 162, 0.05);
  border: 1px solid var(--br);
  box-shadow: 0 2px 19px rgba(61, 255, 162, 0.6);
  position: relative
}

.tc::before {
  content: '\201C';
  position: absolute;
  top: .5rem;
  left: 50%;
  font-family: var(--fd);
  font-size: 5.4rem;
  color: var(--t2);
  line-height: 1;
}

.tq {
  font-family: var(--fm);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.3rem;
  font-style: italic
}

.ta {
  font-size: .88rem;
  font-weight: 600
}

.tr {
  font-size: .875rem;
  color: var(--t2);
  margin-top: .15rem
}

.cta {
  position: relative;
  padding: 4rem 2.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--br);
  text-align: center;
  box-shadow: 0 0 60px rgba(61, 255, 162, 0.02)
}

.ip-hero {
  font-size: 4rem;
  margin-bottom: 1rem
}

.ip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem
}

.ip-feat {
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--bc);
  border: 1px solid var(--br)
}

.ip-feat h4 {
  font-family: var(--fm);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .3rem
}

.ip-feat p {
  color: var(--t2);
  font-size: .82rem;
  line-height: 1.55;
  font-weight: 300
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--br)
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%)
}

.ft {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2rem 1.5rem;
  background: var(--b0);
  border-top: 1px solid var(--br)
}

.fi {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem
}

.fb p {
  color: var(--t2);
  font-size: .82rem;
  line-height: 1.7;
  margin-top: .8rem;
  max-width: 260px;
  font-weight: 300
}

.fss {
  display: flex;
  gap: .5rem;
  margin-top: 1rem
}

.fss a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  text-decoration: none;
  transition: all .25s
}

.fss a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--t2)
}

.fc h5 {
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--t3);
  margin-bottom: 1rem
}

.fc a {
  display: block;
  color: var(--t2);
  text-decoration: none;
  font-size: .82rem;
  padding: .2rem 0;
  transition: color .25s;
  cursor: pointer
}

.fc a:hover {
  color: var(--t1)
}

.fbot {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--br);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem
}

.fbot p {
  font-size: .750rem;
  color: var(--t3)
}

.fl {
  font-size: .750rem;
  color: var(--t3);
  max-width: 450px;
  text-align: left;
  line-height: 1.4
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.16, 1, .3, 1)
}

.rv.vis {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .4s
}

.d6 {
  transition-delay: .48s
}

.d7 {
  transition-delay: .52s
}

.d8 {
  transition-delay: .56s
}

@media(max-width:1024px) {

  .g2,
  .sp2 {
    grid-template-columns: 1fr
  }

  .g3 {
    grid-template-columns: 1fr 1fr
  }

  .g4 {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .fi {
    grid-template-columns: 1fr 1fr
  }

  .ip-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .nl {
    display: none
  }

  .ni>.nc {
    display: none !important
  }

  .mt {
    display: flex
  }

  .g3,
  .g4 {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .fi {
    grid-template-columns: 1fr
  }

  .fbot {
    flex-direction: column;
    text-align: center
  }

  .fl {
    text-align: center
  }

  /* Hero — compact on mobile */
  .hero {
    padding: 5.5rem 1rem 2.5rem;
    min-height: 100svh
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: normal;
  }

  .hsub {
    font-size: .9rem;
    max-width: 90vw;
    margin: 0 auto 1.6rem
  }

  .ha {
    gap: .6rem
  }

  .ha .bp,
  .ha .bs {
    padding: .62rem 1.2rem;
    font-size: .82rem
  }

  .ph {
    padding: 7.5rem 1.5rem 3rem
  }

  .sp {
    padding: 3.5rem 1.5rem
  }

  /* Touch hint badge */
  .touch-hint {
    display: flex !important
  }
}

@media(max-width:430px) {
  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.6rem)
  }

  .hsub {
    font-size: .85rem
  }

  .ha {
    flex-direction: column;
    align-items: center;
    gap: .5rem
  }

  .ha .bp,
  .ha .bs {
    width: 100%;
    max-width: 260px;
    justify-content: center
  }

  .nlogo img {
    height: 42px
  }
}

/* Touch swipe hint badge — hidden on desktop */
.touch-hint {
  display: none;
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(61, 255, 162, 0.08);
  border: 1px solid rgba(61, 255, 162, 0.18);
  border-radius: 100px;
  padding: .35rem .9rem;
  gap: .4rem;
  align-items: center;
  font-family: var(--fm);
  font-size: .62rem;
  color: rgba(61, 255, 162, 0.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  animation: hintPulse 3s ease-in-out infinite 2s
}

@keyframes hintPulse {

  0%,
  100% {
    opacity: .7
  }

  50% {
    opacity: 1
  }
}

/* --------------- CALCULATOR --------------------------------------------------------  */
.calc-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--br);
  overflow: hidden
}

.calc-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--br)
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.calc-inputs {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--br);
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

.calc-results {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.calc-field label {
  display: block;
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem
}

.calc-field select,
.calc-field input {
  width: 100%;
  padding: .65rem .9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--br);
  color: var(--t1);
  font-family: var(--fb);
  font-size: .88rem;
  outline: none;
  transition: border-color .25s
}

.calc-field select:focus,
.calc-field input:focus {
  border-color: rgba(61, 255, 162, 0.3)
}

.calc-field select option {
  background: var(--b1);
  color: var(--t1)
}

.calc-field input::placeholder {
  color: var(--t3)
}

.calc-row {
  display: flex;
  gap: 1rem
}

.calc-row .calc-field {
  flex: 1
}

.calc-savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  flex: 1
}

.calc-sav {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--br);
  text-align: center;
  transition: all .3s
}

.calc-sav.highlight {
  background: rgba(61, 255, 162, 0.04);
  border-color: rgba(61, 255, 162, 0.15)
}

.calc-sav-label {
  font-family: var(--fm);
  font-size: .55rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .3rem
}

.calc-sav-val {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--t1)
}

.calc-sav.highlight .calc-sav-val {
  color: var(--a)
}

.calc-sav-sub {
  font-size: .68rem;
  color: var(--t3);
  margin-top: .15rem
}

.calc-note {
  font-size: .7rem;
  color: var(--t3);
  line-height: 1.5;
  margin-top: .5rem;
  font-style: italic
}

/* ── POS PAGE ─────────────────────────────────────────── */
.pos-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem
}

.pos-feat {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--br);
  transition: border-color .3s;
  text-align: left;
}

.pos-feat:hover {
  border-color: rgba(61, 255, 162, 0.18)
}

.pos-feat-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 20px;
  display: flex;

}

.pos-feat-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain
}

.pos-feat h3 {
  font-family: var(--fm);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .6rem
}

.pos-feat p {
  color: var(--t2);
  font-size: .85rem;
  line-height: 1.7;
  font-weight: 300
}

/* Growth & Flexibility split panel */
.pos-growth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--br);
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.018)
}

.pos-growth-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.clover-logo-sm {
  height: auto;
  width: auto;
  max-height: 36px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.pos-growth-text .clover-logo-sm {
  max-height: 36px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(1.05)
}

.pos-growth-text h3 {
  font-family: var(--fm);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .9rem
}

.pos-growth-text p {
  color: var(--t2);
  font-size: .88rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem
}

.pos-growth-text .platform-training {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--a);
  text-decoration: none;
  transition: opacity .2s
}

.pos-growth-text .platform-training:hover {
  opacity: .7
}

.pos-growth-img {
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 300px
}

.pos-growth-img img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain
}

/* Clover platform box */
.pos-platform {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--br);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start
}

.pos-pf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .75rem;
  margin-top: .8rem
}

.pos-pf-feat {
  font-size: .8rem;
  color: var(--t2);
  display: block
}

.pos-pf-feat::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a);
  margin-right: 0.4rem;
  position: relative;
  top: -1px
}

/* Clover app marketplace callout */
.pos-apps {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(61, 255, 162, 0.05), rgba(61, 255, 162, 0.02));
  border: 1px solid rgba(61, 255, 162, 0.12);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem
}

.pos-app-cat {
  text-align: center;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--br)
}

.pos-app-cat-icon {
  font-size: 1.8rem;
  margin-bottom: .5rem
}

.pos-app-cat h4 {
  font-family: var(--fm);
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.pos-app-cat p {
  font-size: .75rem;
  color: var(--t2);
  line-height: 1.5
}

@media(max-width:768px) {
  .pos-feats {
    grid-template-columns: 1fr
  }

  .pos-growth {
    grid-template-columns: 1fr
  }

  .pos-growth-img {
    min-height: 220px
  }

  .pos-platform {
    grid-template-columns: 1fr
  }

  .pos-pf-features {
    grid-template-columns: 1fr
  }

  .pos-apps {
    grid-template-columns: 1fr
  }
}

/* ── PAYMENT TERMINALS PAGE ─────────────────────────────── */
.term-hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61, 255, 162, 0.07) 0%, transparent 70%)
}

.term-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 255, 162, 0.3), transparent)
}

.term-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fm);
  font-size: .65rem;
  font-weight: 500;
  color: var(--a);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1.2rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  background: rgba(61, 255, 162, 0.06);
  border: 1px solid rgba(61, 255, 162, 0.15)
}

.term-title {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: normal;
  margin-bottom: 1.2rem
}

.term-title span {
  color: var(--a)
}

.term-sub {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
  font-weight: 300
}

/* Features grid */
.term-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 5rem
}

.term-feat {
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--br);
  transition: border-color .3s
}

.term-feat:hover {
  border-color: rgba(61, 255, 162, 0.2)
}

.term-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(61, 255, 162, 0.07);
  border: 1px solid rgba(61, 255, 162, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--a)
}

.term-feat h3 {
  font-family: var(--fm);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem
}

.term-feat p {
  color: var(--t2);
  font-size: .88rem;
  line-height: 1.65;
  font-weight: 300
}

/* Bundle CTA bar */
.term-bundle {
  background: rgba(61, 255, 162, 0.04);
  border: 1px solid rgba(61, 255, 162, 0.12);
  border-radius: 16px;
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  flex-wrap: wrap
}

.term-bundle-text h4 {
  font-family: var(--fm);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.term-bundle-text p {
  color: var(--t2);
  font-size: .85rem;
  font-weight: 300
}

.term-bundle-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap
}

/* Manufacturer section */
.mfr-section {
  margin-bottom: 5rem
}

.mfr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap
}

.mfr-brand {
  display: flex;
  align-items: center;
  gap: 1rem
}

.mfr-brand img {
  height: 36px;
  filter: brightness(1.1)
}

.mfr-badge {
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .2rem .6rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--br)
}

.mfr-nav {
  display: flex;
  gap: .5rem;
  align-items: center
}

.mfr-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--br);
  color: var(--t2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0
}

.mfr-arrow:hover {
  background: rgba(61, 255, 162, 0.1);
  border-color: rgba(61, 255, 162, 0.3);
  color: var(--a)
}

.mfr-arrow:disabled {
  opacity: .3;
  cursor: default
}

.mfr-dots {
  display: flex;
  gap: .4rem;
  align-items: center
}

.mfr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--br);
  transition: all .3s;
  cursor: pointer
}

.mfr-dot.active {
  background: var(--a);
  width: 18px;
  border-radius: 3px
}

/* Slider track */
.mfr-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px
}

.mfr-slider-wrap::before,
.mfr-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s
}

.mfr-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.7), transparent)
}

.mfr-slider-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(4, 5, 6, 0.7), transparent)
}

.mfr-slider-wrap:hover::before,
.mfr-slider-wrap:hover::after {
  opacity: 1
}

.slider-arrow-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 255, 162, 0.12);
  border: 1px solid rgba(61, 255, 162, 0.3);
  color: var(--a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.mfr-slider-wrap:hover .slider-arrow-overlay {
  opacity: 1
}

.slider-arrow-overlay:hover {
  background: rgba(61, 255, 162, 0.25);
  border-color: rgba(61, 255, 162, 0.5);
  transform: translateY(-50%) scale(1.08)
}

.slider-arrow-overlay.left {
  left: 12px
}

.slider-arrow-overlay.right {
  right: 12px
}

.slider-swipe-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(61, 255, 162, 0.06);
  border: 1px solid rgba(61, 255, 162, 0.15);
  border-radius: 100px;
  padding: .3rem .8rem;
  font-family: var(--fm);
  font-size: .58rem;
  color: rgba(61, 255, 162, 0.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s
}

.mfr-slider-wrap:hover .slider-swipe-hint {
  opacity: 0
}

.mfr-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .5rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch
}

.mfr-slider::-webkit-scrollbar {
  height: 3px
}

.mfr-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03)
}

.mfr-slider::-webkit-scrollbar-thumb {
  background: rgba(61, 255, 162, 0.25);
  border-radius: 2px
}

.mfr-slider.grabbing {
  cursor: grabbing
}

/* Device card */
.dev-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid var(--br);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column
}

.dev-card:hover {
  border-color: rgba(61, 255, 162, 0.25);
  transform: translateY(-2px)
}

.dev-card-img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem
}

.dev-card-img-ph {
  width: 100%;
  height: 210px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem
}

.dev-card-img-ph .ph-model {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: normal;
}

.dev-card-img-ph .ph-icon {
  color: rgba(61, 255, 162, 0.2)
}

.dev-card-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.dev-card-type {
  font-family: var(--fm);
  font-size: .58rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .4rem
}

.dev-card-name {
  font-family: var(--fm);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--t1)
}

.dev-card-desc {
  font-size: .82rem;
  color: var(--t2);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
  flex: 1
}

.dev-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: auto
}

.dev-spec {
  padding: .22rem .55rem;
  border-radius: 6px;
  background: rgba(61, 255, 162, 0.06);
  border: 1px solid rgba(61, 255, 162, 0.14);
  font-family: var(--fm);
  font-size: .6rem;
  color: rgba(61, 255, 162, 0.8);
  white-space: nowrap
}

/* Platform info box */
.platform-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--br);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start
}

.platform-box-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem
}

.platform-feat {
  font-size: .8rem;
  color: var(--t2);
  display: block
}

.platform-feat::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a);
  margin-right: 0.4rem;
  position: relative;
  top: -1px
}

.platform-title {
  font-family: var(--fm);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.platform-sub {
  font-size: .82rem;
  color: var(--t2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem
}

.platform-training {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--a);
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s
}

.platform-training:hover {
  opacity: .75
}

/* CTA footer */
.term-cta {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--br);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 4rem
}

.term-cta h2 {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .7rem
}

.term-cta p {
  color: var(--t2);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
  font-weight: 300
}

.term-cta-btns {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap
}

@media(max-width:768px) {
  .term-feats {
    grid-template-columns: 1fr
  }

  .term-bundle {
    flex-direction: column;
    text-align: center
  }

  .term-bundle-btns {
    justify-content: center
  }

  .platform-box {
    grid-template-columns: 1fr
  }

  .platform-box-features {
    grid-template-columns: 1fr
  }

  .dev-card {
    flex: 0 0 270px
  }

  .term-cta-btns {
    flex-direction: column;
    align-items: center
  }
}

@media(max-width:430px) {
  .dev-card {
    flex: 0 0 82vw
  }
}

/* ── BRANDED PAYMINT TEXT ────────────────────────────── */
.pm {
  white-space: nowrap
}

.pm-m {
  color: var(--a);
  position: relative;
  font-style: normal
}

.pm-m::before {
  content: '🌿';
  position: absolute;
  top: -0.55em;
  left: 0.42em;
  font-size: 0.45em;
  line-height: 1;
  pointer-events: none
}

.calc-summary {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(61, 255, 162, 0.03);
  border: 1px solid rgba(61, 255, 162, 0.1);
  text-align: center
}

.calc-summary p {
  font-size: .82rem;
  color: var(--t2);
  line-height: 1.5
}

.calc-summary strong {
  color: var(--a);
  font-weight: 700
}

@media(max-width:768px) {
  .calc-body {
    grid-template-columns: 1fr
  }

  .calc-inputs {
    border-right: none;
    border-bottom: 1px solid var(--br)
  }

  .calc-savings-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .calc-savings-grid {
    grid-template-columns: 1fr
  }

  .calc-row {
    flex-direction: column;
    gap: 1rem
  }
}

/* Contact Page Split Layout & Form */
.bg-dots {
  position: relative;
  overflow: hidden;
}

.bg-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  background-position: center;
  mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.contact-left h1 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: normal;
}

.contact-left p {
  color: var(--t2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.contact-left .contact-email {
  color: var(--a);
  font-family: var(--fb);
  font-size: 1.1rem;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.contact-left .contact-email:hover {
  text-shadow: 0 0 15px rgba(61, 255, 162, 0.3);
}

.contact-left .contact-email-label {
  color: var(--t3);
  font-size: 0.85rem;
  display: block;
}

.contact-form-card {
  background: var(--b0);
  border: 1px solid var(--br);
  padding: 4.5rem;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(61, 255, 162, 0.6);
}

.contact-form-card:hover {
  box-shadow: 0 5px 15px rgba(61, 255, 162, 0.8);
}



.contact-form-group {
  margin-bottom: 2.2rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #222;
  color: var(--t1);
  font-family: var(--fb);
  font-size: 1.05rem;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-bottom-color: var(--a);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--t2);
  opacity: 1;
}

.contact-textarea {
  resize: vertical;
  min-height: 40px;
}

.btn-outline-mint {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: transparent;
  color: var(--t1);
  border: 1px solid rgba(61, 255, 162, 0.4);
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 1rem;
}

.btn-outline-mint:hover {
  background: rgba(61, 255, 162, 0.05);
  border-color: var(--a);
}

@media (max-width: 992px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1rem;
  }

  .contact-form-card {
    padding: 2rem;
  }
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

/* Backlight Glow Effect */
.faq-accordion::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(61, 255, 162, 0.08) 0%, rgba(61, 255, 162, 0) 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.faq-item {
  background: var(--b0);
  border: 1px solid var(--br);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.1, 1, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  border-color: rgba(61, 255, 162, 0.3);
  box-shadow: 0 6px 25px rgba(61, 255, 162, 0.05);
  transform: translateY(-2px);
}

.faq-item.active {
  background: var(--b0);
  border-color: rgba(61, 255, 162, 0.5);
  box-shadow: 0 8px 32px rgba(61, 255, 162, 0.12), inset 0 0 20px rgba(61, 255, 162, 0.03);
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  background: none;
  border: none;
  color: var(--t1);
  font-family: var(--fm);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--a);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--t3);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  color: var(--a);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.1, 1, 0.2, 1);
}

.faq-item.active .faq-answer {
  /* Using a large max-height for CSS transition hack */
  max-height: 800px;
}

.faq-answer-inner {
  padding: 0 1.8rem 1.8rem 1.8rem;
  color: var(--t2);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.faq-answer-inner p {
  margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  color: var(--t2);
}

.faq-answer-inner strong {
  color: var(--t1);
  font-weight: 600;
}

/* FUNNEL CTA SECTION */
.funnel-cta {
  background: #F2F2F2 !important;
  color: #18181A !important;
  text-align: center;
  padding: 6rem 1.5rem;
}

.funnel-ctr {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funnel-icon {
  height: 60px;
  margin-bottom: 1.2rem;
}

.funnel-ctr h2 {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: #151515;
}

.funnel-ctr p {
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.funnel-acts {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.funnel-phone {
  color: #18181A !important;
  font-family: var(--fb);
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.funnel-phone:visited {
  color: #18181A !important;
}

/* ── MERCHANT DASHBOARD SECTION ──────────────────────────────── */
.merchant-dashboard {
  background: var(--b1);
  padding: 6rem 2rem;
  overflow: hidden;
  position: relative;
}

.md-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: top;
}

.md-content {
  max-width: 600px;
}

.md-content h2 {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: .6rem;
}

.md-content p {
  color: var(--t2);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.md-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.md-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.md-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a);
}

.md-feature span {
  font-size: 0.95rem;
  color: var(--t1);
  font-weight: 400;
}

/* Dashboard Visual UI */
.md-visual {
  position: relative;
  width: 100%;
}

@media(max-width: 968px) {
  .md-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .md-visual {
    max-width: 900px;
    margin: 0 auto;
  }

  #dual-pricing-intro .d1,
  #cash-discount-intro .d1,
  #surcharging-intro .d1 {
    order: 2;
  }
}


.funnel-phone:hover {
  color: #5EAE7B !important;
}

/* Smart Choice Section */
.smart-choice-section {
  background: #09090b;
  padding: 6rem 1.5rem;
}

.smart-choice-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.smart-choice-leaf {
  width: 54px;
  margin: 0 auto 1.5rem;
  display: block;
}

.smart-choice-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.smart-choice-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 650px;
  margin: 0 auto;
}

.smart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.smart-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.smart-card:hover {
  background-color: rgba(94, 174, 123, 0.04);
  border-color: rgba(94, 174, 123, 0.15);
  transform: translateY(-3px);
}

.smart-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 2rem;
  object-fit: contain;
}

.smart-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.smart-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #a1a1aa;
}

@media(max-width: 768px) {
  .smart-choice-header h2 {
    font-size: 2.8rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  background: var(--b0);
  padding: 6rem 1.5rem;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.how-it-works-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
}

.hiw-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-item {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e4e4e7;
}

.hiw-item strong {
  color: var(--a);
  font-weight: 500;
}

@media(max-width: 768px) {
  .how-it-works-header h2 {
    font-size: 2.2rem;
  }
}

#pg-industries .ctr {
  max-width: 1200px;
}

/* INDUSTRY CARDS (OVERLAID) */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.icard {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: var(--b1);
}

.icard-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
}

.icard-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(.25, 1, .5, 1);
  /* Full color base state as requested earlier */
  z-index: 1;
}

.icard:hover .icard-bg {
  transform: scale(1.06);
}

.icard-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 65%);
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition: background-color 0.4s ease;
}

.icard:hover .icard-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.icard-content {
  position: relative;
  z-index: 3;
  text-align: left;
}

.icard h3 {
  font-family: var(--fm);
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.icard p {
  font-size: 0.95rem;
  color: #d1d5db;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 85%;
}

.icard-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  z-index: 3;
  transition: all 0.4s cubic-bezier(.25, 1, .5, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.icard-arrow svg {
  width: 20px;
  height: 20px;
}

.icard:hover .icard-arrow {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.15);
}

/* INDUSTRIES INTRO */
.industries-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
  margin-bottom: 4.5rem;
  align-items: center;
}

.ii-left h2 {
  font-family: var(--fm);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  border-left: 5px solid var(--a);
  padding-left: 2rem;
  letter-spacing: -0.02em;
}

.ii-right p {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.ii-right p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .industries-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .ii-left h2 {
    font-size: 2rem;
    padding-left: 1.5rem;
  }
}

/* BLOG PAGE REDESIGN */
#pg-blog {
  text-align: center;
  padding: 10rem 2rem 8rem;
  background: var(--b0);
  min-height: 100vh;
}

.blog-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid rgba(61, 255, 162, 0.15);
  background: rgba(61, 255, 162, 0.04);
  color: var(--a);
  margin-bottom: 2rem;
  font-family: var(--fm);
  letter-spacing: 0.02em;
}

#pg-blog h1 {
  font-family: var(--fm);
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

#pg-blog .subtitle {
  font-size: 1rem;
  color: var(--t2);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

#pg-blog .explore-link {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 5rem;
  transition: opacity 0.2s;
}

#pg-blog .explore-link:hover {
  opacity: 0.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: left;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.bcard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s;
}

.bcard:hover {
  transform: translateY(-4px);
}

.bcard-img {
  background: linear-gradient(150deg, var(--b1) 0%, var(--b0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 1.5rem;
}

.bcard:hover .bcard-img {
  border-color: rgba(61, 255, 162, 0.25);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.bcard-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.bcard-content h3 {
  font-family: var(--fm);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.bcard-content p {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* BLOG CATEGORY FILTERS */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.b-filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--t2);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.b-filter-btn:hover,
.b-filter-btn.active {
  background: var(--a);
  color: #000;
  border-color: var(--a);
}

/* BLOG FEATURED POST */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
  align-items: center;
  text-align: left;
  text-decoration: none;
}

.bf-img {
  background: linear-gradient(150deg, var(--b1) 0%, var(--b0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.blog-featured:hover .bf-img {
  border-color: rgba(61, 255, 162, 0.25);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.bf-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.b-cat {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.70rem;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--t2);
  font-family: var(--fm);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.bf-content h2 {
  font-family: var(--fm);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.bf-content p {
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.7;
}

.blog-section-title {
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
  font-family: var(--fm);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bf-img {
    height: 300px;
  }
}

/* BLOG POST TEMPLATE */
#pg-blog-post {
  padding: 10rem 2rem 5rem;
  background: var(--b0);
  min-height: 100vh;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.article-sidebar {
  position: sticky;
  top: 120px;
}

.back-link {
  font-size: 0.85rem;
  color: var(--t2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
  font-weight: 500;
}

.back-link:hover {
  color: var(--a);
}

.article-sidebar h1 {
  font-family: var(--fm);
  font-size: 2.8rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--a);
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-text strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.author-text span {
  color: var(--t2);
  font-size: 0.85rem;
}

.article-featured-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  background: linear-gradient(150deg, var(--b1) 0%, var(--b0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.article-content {
  color: #d1d5db;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
}

.article-content h2 {
  font-family: var(--fm);
  font-size: 2.2rem;
  color: #fff;
  margin: 3.5rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.article-content h3 {
  font-family: var(--fm);
  font-size: 1.6rem;
  color: #fff;
  margin: 2.5rem 0 1rem;
}

.article-content p {
  margin-bottom: 1.8rem;
  color: var(--t2);
}

.article-content ul,
.article-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
  color: var(--t2);
}

.article-content li {
  margin-bottom: 0.8rem;
}

.article-content blockquote {
  border-left: 4px solid var(--a);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(61, 255, 162, 0.03);
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  border-radius: 0 12px 12px 0;
  line-height: 1.6;
}

.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 2.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-sidebar {
    position: relative;
    top: 0;
  }

  .article-sidebar h1 {
    font-size: 2.4rem;
  }

  .article-content {
    font-size: 1.05rem;
  }

  .article-content blockquote {
    font-size: 1.15rem;
  }
}

/* Navigation Menu Overlay */
.mmo {
  position: fixed;
  inset: 0;
  background: var(--b0);
  z-index: 1000;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  flex-direction: column;
}

.mmo.active {
  opacity: 1;
  pointer-events: auto;
}

.mmo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mmo-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--t1);
  cursor: pointer;
  padding: 0.5rem;
}

.mmo-brand {
  margin-bottom: 3rem;
  text-align: center;
}

.mmo-brand img {
  height: 48px;
}

.mmo-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mmo-links>a {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 600;
  color: var(--t0);
  text-decoration: none;
  line-height: 1.1;
}

.mmo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mmo-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--t2);
  margin-bottom: 0.5rem;
}

.mmo-section a {
  color: var(--t1);
  text-decoration: none;
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .mmo {
    display: none !important;
  }
}

.mt .icon-close { display: none; }
.mt.active .icon-open { display: none; }
.mt.active .icon-close { display: block; }

.mc { display: none !important; }
.nav { z-index: 1001 !important; }
.mm, .mmo { z-index: 1000 !important; }

.mm-accordion-btn {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--t2);
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem 1.5rem;
  width: 100%;
  text-align: left;
}
.mm-accordion-btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2px;
}
.open .mm-accordion-btn svg {
  transform: rotate(180deg);
}
.mm-accordion-content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.open .mm-accordion-content {
  max-height: 500px;
}

.pos-eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.pos-eco-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
}
@media (max-width: 800px) {
  .pos-eco-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 450px) {
  .pos-eco-grid-list { grid-template-columns: 1fr; gap: 0.5rem; }
}

.mm a.mm-sub {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 1.25rem;
  padding: 0.35rem 1.5rem;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  color: var(--t2);
}
.mm a.mm-sub svg {
  opacity: 0.5;
  width: 14px;
  height: 14px;
}
.mm a.mm-sub:hover {
  color: var(--t1);
  opacity: 1;
}
.mm a.mm-sub:hover svg {
  opacity: 1;
  color: var(--a);
}