:root {
  color-scheme: dark;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(44, 180, 89, .08), transparent 35%),
    #030912;
}
::selection {
  background: rgba(69, 212, 90, .35);
  color: white;
}
.logo-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: .8rem;
  background: linear-gradient(145deg, #61e276, #1b9f48);
  color: #03110a;
  font-weight: 1000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 0 26px rgba(69,212,90,.18);
  transform: skewY(-4deg);
}
.logo-mark-small {
  width: 2rem;
  height: 2rem;
  border-radius: .6rem;
}
.nav-link {
  position: relative;
  color: #c7d0da;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: white;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.6rem;
  height: 2px;
  background: #45d45a;
  border-radius: 999px;
}
.text-gradient {
  background: linear-gradient(90deg, #6ee781, #2dbd53);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #45d45a;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow {
  border: 1px solid rgba(69, 212, 90, .18);
  border-radius: 999px;
  background: rgba(69, 212, 90, .07);
  padding: .55rem .85rem;
}
.section-title {
  margin-top: .75rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
}
.section-copy {
  margin-top: 1rem;
  color: #93a4b5;
  font-size: 1.05rem;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: .8rem;
  padding: .85rem 1.35rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.primary-button {
  background: linear-gradient(90deg, #54df68, #29bd57);
  color: #04110a;
  box-shadow: 0 14px 40px rgba(69, 212, 90, .16);
}
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}
.secondary-button {
  border: 1px solid rgba(255,255,255,.24);
  color: white;
}
.secondary-button:hover {
  border-color: rgba(69,212,90,.6);
  background: rgba(69,212,90,.06);
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}
.orb-one { width: 30rem; height: 30rem; right: -12rem; top: 3rem; background: rgba(33, 190, 90, .12); }
.orb-two { width: 25rem; height: 25rem; left: 20%; top: -12rem; background: rgba(33, 190, 90, .10); }
.orb-three { width: 34rem; height: 34rem; right: 5%; top: 0; background: rgba(33, 190, 90, .08); }
.orb-four { width: 36rem; height: 36rem; left: calc(50% - 18rem); top: 16rem; background: rgba(33, 190, 90, .12); }
.dashboard-shell,
.market-card {
  overflow: hidden;
  border: 1px solid rgba(115, 153, 178, .19);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(11,24,36,.96), rgba(5,14,24,.94));
}
.dashboard-shell {
  transform: perspective(1400px) rotateY(-2deg);
}
.stat-box {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: .25rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .65rem;
  background: rgba(255,255,255,.025);
  padding: .75rem;
}
.stat-box span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #93a4b5; font-size: .58rem; text-transform: uppercase; }
.stat-box strong { font-size: .92rem; }
.feature-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(11,24,36,.9), rgba(7,17,27,.85));
  padding: 1.6rem;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(69,212,90,.35); }
.feature-card h3 { margin-top: 1.1rem; font-size: 1.05rem; font-weight: 800; }
.feature-card p { margin-top: .65rem; color: #93a4b5; font-size: .92rem; line-height: 1.65; }
.icon-box {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(69,212,90,.16);
  border-radius: .9rem;
  background: rgba(69,212,90,.08);
  color: #45d45a;
  font-size: 1.25rem;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(69,212,90,.3);
  border-radius: 1.15rem;
  background: linear-gradient(90deg, rgba(10,27,34,.96), rgba(12,52,35,.85));
  padding: 1.6rem;
}
.feature-row {
  display: grid;
  align-items: center;
  gap: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 2rem 0 3rem;
}
.feature-copy h2 {
  margin-top: .5rem;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -.025em;
}
.feature-copy p { margin-top: 1rem; color: #93a4b5; line-height: 1.8; }
.feature-number { color: #45d45a; font-weight: 900; letter-spacing: .06em; }
.check-list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .7rem; color: #d3dbe3; font-size: .94rem; }
.check-list li::before { content: "✓"; margin-right: .65rem; color: #45d45a; font-weight: 900; }
.market-card { padding: 1.25rem; box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.filter-box {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .8rem;
  background: rgba(255,255,255,.02);
  padding: 1rem;
}
.filter-box span { display: block; color: #93a4b5; font-size: .7rem; text-transform: uppercase; }
.filter-box strong { display: block; margin-top: .35rem; font-size: .82rem; }
.range-line { height: 3px; margin-top: 1rem; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.12); }
.range-line i { display: block; height: 100%; background: #45d45a; }
.benefit-line { display: flex; gap: 1rem; }
.benefit-line > span { color: #45d45a; font-size: 1.5rem; }
.benefit-line strong { color: white; }
.benefit-line p { margin-top: .3rem; color: #93a4b5; font-size: .9rem; line-height: 1.55; }
.pricing-card {
  position: relative;
  display: flex;
  min-height: 45rem;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(11,24,36,.96), rgba(6,16,26,.94));
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.pricing-card.featured { border-color: rgba(69,212,90,.7); }
.popular-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #45d45a;
  padding: .45rem 1rem;
  color: #04110a;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.pricing-card h2 { margin-top: 1rem; text-align: center; font-size: 1.7rem; font-weight: 850; }
.pricing-subtitle { margin: .6rem auto 0; max-width: 24rem; text-align: center; color: #93a4b5; line-height: 1.6; }
.price-wrap { margin-top: 1.8rem; display: flex; align-items: baseline; justify-content: center; gap: .35rem; color: #cbd5df; }
.price { color: white; font-size: 3.25rem; font-weight: 900; letter-spacing: -.05em; }
.billing-note { margin-top: .3rem; text-align: center; color: #768899; font-size: .78rem; }
.pricing-list { margin: 2rem 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.7rem; }
.faq-card { border: 1px solid rgba(255,255,255,.08); border-radius: 1rem; background: rgba(255,255,255,.02); padding: 1.25rem; }
.faq-card h3 { font-weight: 750; }
.faq-card p { margin-top: .55rem; color: #93a4b5; font-size: .9rem; line-height: 1.6; }
.notify-card {
  border: 1px solid rgba(69,212,90,.55);
  border-radius: 1.35rem;
  background: rgba(5,14,24,.88);
  padding: 2rem;
  box-shadow: 0 0 70px rgba(69,212,90,.12), 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}
.input-shell {
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .85rem;
  background: rgba(255,255,255,.025);
  padding: 0 1rem;
}
.input-shell:focus-within { border-color: rgba(69,212,90,.7); box-shadow: 0 0 0 3px rgba(69,212,90,.08); }
.input-shell span { color: #93a4b5; }
.input-shell input {
  width: 100%;
  height: 3.5rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}
.input-shell input::placeholder { color: #718293; }
.form-message.success { display: block; background: rgba(69,212,90,.1); color: #88ef97; }
.form-message.error { display: block; background: rgba(239,68,68,.1); color: #fda4af; }

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: .78fr 1.22fr; gap: 4rem; padding: 3.5rem 0; }
  .feature-row-reverse { grid-template-columns: 1.22fr .78fr; }
  .feature-row-reverse .feature-copy { order: 2; }
  .feature-row-reverse > div:last-child { order: 1; }
}
@media (max-width: 767px) {
  .dashboard-shell { transform: none; }
  .cta-panel { align-items: stretch; flex-direction: column; }
  .cta-panel .primary-button { width: 100%; }
  .pricing-card { min-height: auto; padding: 1.4rem; }
}


/* High-resolution PNG mockups taken from the approved ScanCoin drafts */
.png-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(120, 159, 185, .20);
  border-radius: 1.25rem;
  background: #07111b;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .42), 0 0 45px rgba(69, 212, 90, .06);
}
.png-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.png-mockup img {
  display: block;
  width: 100%;
  height: auto;
}
.png-mockup-dashboard {
  transform: perspective(1400px) rotateY(-2deg);
}
.pricing-png-preview {
  max-width: 66rem;
  margin: 2.5rem auto 0;
}
.pricing-png-preview + .grid {
  margin-top: 2rem;
}
.notify-png-background {
  position: absolute;
  inset: 7rem 0 auto;
  height: min(50rem, 72vh);
  background-image:
    linear-gradient(180deg, #030912 0%, rgba(3,9,18,.22) 18%, rgba(3,9,18,.34) 75%, #030912 100%),
    url("assets/notify-market-background.png");
  background-position: center;
  background-size: cover;
  opacity: .94;
  pointer-events: none;
}
.notify-png-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(34,197,94,.10), transparent 42%),
    linear-gradient(90deg, rgba(3,9,18,.62), transparent 28%, transparent 72%, rgba(3,9,18,.62));
}
@media (max-width: 767px) {
  .png-mockup-dashboard {
    transform: none;
  }
  .pricing-png-preview {
    margin-top: 2rem;
  }
  .notify-png-background {
    inset: 5rem 0 auto;
    height: 44rem;
  }
}
