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

:root {
  --bg: #021a0e;
  --bg2: #041f11;
  --bg3: #061e10;
  --bg4: #082816;

  --surface: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .13);

  --em: #00d68f;
  --em2: #00f0a0;
  --emd: #00a86b;
  --eml: rgba(0, 214, 143, .12);
  --emb: rgba(0, 214, 143, .18);

  --tw: #f0faf5;
  --tm: rgba(240, 250, 245, .55);
  --ts: rgba(240, 250, 245, .3);

  --glow2: 0 0 60px rgba(0, 214, 143, .12);

  --fd: 'Syne', sans-serif;
  --fb: 'Inter', sans-serif;
  --fm: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--tw);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(2, 26, 14, .85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--tw);
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-brand em {
  color: var(--em);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a,
.nav-login {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--tm);
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--tw);
}

/* ACTIVE NAV LINK */
.nav-links a.active,
.nav-links a.current,
.nav-links a[aria-current="page"] {
  color: var(--tw);
  font-weight: 700;
}

.nav-links a.active::after,
.nav-links a.current::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -23px;
  width: 100%;
  height: 2px;
  background: var(--em);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 214, 143, .35);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--em);
  color: #021a0e;
  text-decoration: none;
  transition: all .2s;
}

.btn-nav:hover {
  background: var(--em2);
  box-shadow: 0 4px 20px var(--emb);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: all .3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  top: 20px;
}

.nav-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* MOBILE NAV */
.mob {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 20px 48px;
  background: rgba(2, 26, 14, .98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.mob.open {
  display: block !important;
}

.mob a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--tm);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s ease, padding-left .2s ease;
}

.mob a:hover {
  color: var(--tw);
}

/* ACTIVE MOBILE NAV LINK */
.mob a.active,
.mob a.current,
.mob a[aria-current="page"] {
  color: var(--em);
  font-weight: 700;
  padding-left: 8px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 64px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-blob1,
.hero-blob2,
.hero-blob3 {
  position: absolute;
  pointer-events: none;
}

.hero-blob1 {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0, 214, 143, .18), rgba(0, 214, 143, .06), transparent 75%);
}

.hero-blob2 {
  bottom: 100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 100, 60, .2), transparent 70%);
}

.hero-blob3 {
  top: 200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 214, 143, .08), transparent 65%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  pointer-events: none;
}

.hero-copy{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 214, 143, .1);
  border: 1px solid rgba(0, 214, 143, .22);
  color: var(--em);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--em);
}

.hero-title {
  font-family: var(--fd);
  font-size: 82px;
  font-weight: 800;
  color: var(--tw);
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.hero-title .gw {
  color: var(--em);
  text-shadow: 0 0 40px rgba(0, 214, 143, .4);
}

.hero-sub {
  font-size: 17px;
  color: var(--tm);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-btns,
.hero-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btns {
  margin-bottom: 28px;
}

.btn-em,
.btn-ghost {
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-em {
  padding: 14px 30px;
  background: var(--em);
  color: #021a0e;
}

.btn-em:hover {
  background: var(--em2);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 13px 24px;
  background: transparent;
  color: var(--tm);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--tw);
}

.chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--tm);
}

.chip-ck {
  color: var(--em);
}

/* APP PREVIEW */
.hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1200px;
}

.stage-floor {
  width: 100%;
  transform: rotateX(18deg);
  transform-origin: top center;
  transition: transform .5s ease;
}

.stage-floor:hover {
  transform: rotateX(10deg);
}

.app-card {
  background: var(--bg3);
  border: 1px solid rgba(0, 214, 143, .15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0, 0, 0, .7), 0 0 80px rgba(0, 214, 143, .12);
}

.app-chrome {
  background: rgba(0, 214, 143, .05);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #febc2e; }
.chrome-dot:nth-child(3) { background: #28c840; }

.chrome-bar {
  flex: 1;
  height: 26px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm);
  font-size: 11px;
  color: var(--ts);
}

.chrome-btn,
.app-new-btn {
  background: var(--em);
  color: #021a0e;
  border: none;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
}

.app-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}

.app-sidebar {
  background: rgba(0, 0, 0, .2);
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.sb-section{
  margin:22px 0 10px;
  padding:0 18px;
  font-size:8px !important;
  font-weight:700 !important;
  line-height:1.2;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

.sb-logo {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.sb-logo em {
  color: var(--em);
  font-style: normal;
}

.sb-item {
  display: flex;
  gap: 8px;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--tm);
}

.sb-item.active {
  background: rgba(0, 214, 143, .1);
  color: var(--em);
  border-right: 2px solid var(--em);
}

.sb-user {
  padding: 14px 18px 0;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--ts);
}

.sb-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--em);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #021a0e;
  font-weight: 800;
  margin-right: 6px;
}

.app-main {
  padding: 20px 24px;
}

.app-top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-page-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.app-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.app-stat-lbl {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--ts);
}

.app-stat-val {
  font-family: var(--fm);
  font-size: 15px;
  font-weight: 700;
}

.app-stat-sub {
  font-size: 9px;
  color: var(--ts);
}

.app-stat-em {
  border-color: rgba(0, 214, 143, .2);
  background: rgba(0, 214, 143, .04);
}

.app-stat-em .app-stat-val {
  color: var(--em);
}

.app-table {
  width: 100%;
  border-collapse: collapse;
}

.app-table th,
.app-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.app-table th {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--ts);
}

.app-table td {
  font-size: 11px;
  color: var(--tm);
}

.status-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.s-paid {
  background: rgba(0, 214, 143, .15);
  color: var(--em);
}

.s-pending {
  background: rgba(251, 191, 36, .12);
  color: #fbbf24;
}

.stage-floats {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
}

.sf-left {
  position: absolute;
  left: -20px;
  top: 10px;
  animation: floatA 4s ease-in-out infinite;
}

.sf-right {
  position: absolute;
  right: -20px;
  top: 0;
  animation: floatB 5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% {
    transform: translateY(0) rotate(.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-.5deg);
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translateY(0) rotate(-.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(.5deg);
  }
}

.float-card {
  background: rgba(4, 31, 17, .95);
  border: 1px solid rgba(0, 214, 143, .2);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 150px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(0, 214, 143, .06);
}

.fc-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.fc-val {
  font-family: var(--fd);
  font-weight: 800;
}

.fc-lbl {
  font-size: 10px;
  color: var(--ts);
}

/* SECTIONS */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  overflow: hidden;
  background: var(--bg2);
  margin-top: 80px;
}

.marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.mi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--tm);
  padding: 0 32px;
  text-transform: uppercase;
}

.md {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--em);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--em);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--em);
}

.sec-h {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-p {
  font-size: 15px;
  color: var(--tm);
  max-width: 480px;
  line-height: 1.75;
}

.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.st {
  padding: 0 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.st:last-child {
  border-right: none;
}

.st-n {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--em);
}

.st-d {
  font-size: 13px;
  color: var(--ts);
}

/* GRIDS */
.how-header,
.pricing-header,
.testi-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .sec-eyebrow,
.pricing-header .sec-eyebrow,
.testi-header .sec-eyebrow {
  justify-content: center;
}

.how-header .sec-eyebrow::before,
.pricing-header .sec-eyebrow::before,
.testi-header .sec-eyebrow::before {
  display: none;
}

.steps,
.feat-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.feat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step,
.feat,
.testi,
.p-card,
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
}

.step {
  padding: 44px 36px;
}

.step-n {
  font-family: var(--fd);
  font-size: 10px;
  color: var(--em);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.step-ico,
.feat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--eml);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3,
.feat h3 {
  font-family: var(--fd);
  font-size: 18px;
  margin-bottom: 10px;
}

.step p,
.feat p {
  font-size: 13px;
  color: var(--tm);
}

.feats-bg,
.testi-bg {
  background: var(--bg2);
}

.feats-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.feat {
  padding: 28px;
}

.feat.wide {
  grid-column: span 2;
}

.p-grid,
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card {
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
}

.p-card.pro {
  background: var(--bg3);
  border-color: rgba(0, 214, 143, .3);
  box-shadow: var(--glow2);
  transform: scale(1.03);
}

.p-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--em);
  color: #021a0e;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
}

.p-plan {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ts);
  margin-bottom: 12px;
}

.p-price {
  display: flex;
  align-items: baseline;
}

.p-cur {
  font-size: 17px;
}

.p-amt {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
}

.p-per {
  font-size: 12px;
  color: var(--ts);
  margin-bottom: 28px;
}

.p-div {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.p-feats {
  list-style: none;
  margin-bottom: 28px;
}

.p-feats li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--tm);
  border-bottom: 1px solid var(--border);
}

.pck {
  color: var(--em);
}

.pcx {
  color: rgba(255, 255, 255, .2);
}

.p-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  color: var(--tw);
  background: var(--surface);
  border: 1px solid var(--border2);
}

.p-btn.em {
  background: var(--em);
  color: #021a0e;
}

.testi {
  border-radius: 16px;
  padding: 28px;
}

.testi-stars {
  color: #f59e0b;
  margin-bottom: 14px;
}

.testi-txt {
  color: var(--tm);
  font-style: italic;
  margin-bottom: 20px;
}

.testi-aut {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.testi-nm {
  font-weight: 700;
}

.testi-rl {
  font-size: 12px;
  color: var(--ts);
}

/* FAQ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.faq-sticky {
  position: sticky;
  top: 100px;
}

.faq-sub {
  color: var(--tm);
  margin-bottom: 24px;
}

.faq-link {
  color: var(--em);
  text-decoration: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.faq-q::after {
  content: '+';
  float: right;
  color: var(--em);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: .3s;
  color: var(--tm);
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 180px;
  padding: 0 20px 16px;
}

/* CTA */
.cta-band {
  padding: 120px 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-h {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.cta-p {
  color: var(--tm);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, #021a0e 0%, #031f11 100%);
}

footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px 48px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
  line-height: 1;
}

.footer-brand em {
  color: var(--em);
  font-style: normal;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tm);
  max-width: 380px;
  margin-bottom: 20px;
}

.footer-flag {
  font-size: 14px;
  color: var(--tm);
}

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
}

.footer-col a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease, padding-left .2s ease;
}

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

/* ACTIVE FOOTER LINKS */
.footer-col a.active,
.footer-col a.current,
.footer-col a[aria-current="page"] {
  color: var(--em);
  font-weight: 700;
  padding-left: 6px;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  text-decoration: none;
}

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

/* ANIMATION */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.rev.in {
  opacity: 1;
  transform: translateY(0);
}

/* LEGAL PAGES */
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  margin-top: 34px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
}

.legal-card h3 {
  font-family: var(--fd);
  font-size: 20px;
  color: var(--tw);
  margin: 34px 0 10px;
  letter-spacing: -.3px;
}

.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--tm);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 760px;
}

.legal-muted {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--ts);
  font-size: 13px;
}

.legal_ul{
  padding-left: 38px;
  font-family: var(--fb);
  color: var(--tm);
  font-size: 14px;
  line-height: 1.6;
}

/* -----Customer Support Contact Form------- */
.support-form {
  margin-top: 22px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tw);
}

.support-input {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--tw);
  outline: none;
  font: inherit;
}

.support-input::placeholder {
  color: var(--tm);
}

.support-input:focus {
  border-color: var(--em);
  box-shadow: 0 0 0 4px rgba(0,214,143,.12);
}

.support-textarea {
  min-height: 140px;
  resize: vertical;
}

/* SOCIAL ICONS */
.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  color:var(--tw);
  text-decoration:none;
  transition:.25s ease;
}

.footer-social a:hover{
  color:var(--em);
  border-color:var(--em);
  transform:translateY(-2px);
}

.footer-credit{
  font-size:14px;
  color:var(--ts);
}

.footer-credit a{
  color:var(--em);
  text-decoration:none;
}

.footer-credit a:hover{
  text-decoration:underline;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(2,26,14,.95);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--em);
  color: #021a0e;
  border-color: var(--em);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 1100px) {
  .hero-title {
    font-size: 58px;
    white-space: normal;
  }

  .nav-links,
  .nav-login,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-inner,
  .feats-top {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    padding: 105px 16px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-pill {
    font-size: 9px;
    padding: 5px 10px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.6px;
    white-space: normal;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 340px;
    margin-bottom: 24px;
  }

  .hero-btns {
    width: 100%;
    max-width: 320px;
    margin-bottom: 22px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-em,
  .btn-ghost {
    width: 100%;
  }

  .hero-chips {
    max-width: 340px;
    gap: 8px;
  }

  .chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  .stage-floats {
    display: none;
  }

  .hero-stage {
    margin-top: 70px;
    width: 100%;
  }

  .stage-floor {
    transform: none;
  }

  .stage-floor:hover {
    transform: none;
  }

  .app-card {
    border-radius: 16px;
  }

  .app-chrome {
    padding: 10px;
    gap: 8px;
  }

  .chrome-dots {
    display: none;
  }

  .chrome-bar {
    font-size: 9px;
  }

  .chrome-btn,
  .app-new-btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 18px;
    overflow-x: auto;
  }

  .app-top-row {
    gap: 10px;
    align-items: center;
  }

  .app-page-title {
    font-size: 20px;
  }

  .app-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .app-stat {
    padding: 14px;
  }

  .app-table {
    min-width: 560px;
  }

  .marquee {
    margin-top: 50px;
  }

  .mi {
    font-size: 10px;
    padding: 0 20px;
  }

  .stats-band {
    padding: 45px 0;
  }

  .stats-row,
  .feat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .st {
    padding: 24px 10px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .st:last-child {
    border-bottom: none;
  }

  .st-n {
    font-size: 38px;
  }

  .section {
    padding: 70px 0;
  }

  .how-header,
  .pricing-header,
  .testi-header {
    margin-bottom: 38px;
  }

  .sec-h {
    font-size: 32px;
  }

  .sec-p {
    font-size: 14px;
  }

  .step,
  .feat,
  .testi,
  .p-card {
    padding: 26px 22px;
  }

  .feat.wide {
    grid-column: span 1;
  }

  .p-card.pro {
    transform: none;
  }

  .p-amt {
    font-size: 44px;
  }

  .faq-inner {
    gap: 36px;
  }

  .faq-sticky {
    position: static;
  }

  .cta-band {
    padding: 80px 20px;
  }

  .cta-h {
    font-size: 38px;
  }

  .cta-p {
    font-size: 14px;
  }

  footer .container {
    padding: 50px 20px 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:32px;
  }

  .footer-desc{
    margin-left:auto;
    margin-right:auto;
  }

  .footer-col ul{
    padding:0;
  }

  .footer-col a.active,
  .footer-col a.current,
  .footer-col a[aria-current="page"] {
    padding-left: 0;
  }

  .footer-social{
    justify-content:center;
  }

  .footer-bottom{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
  }

  .footer-bottom p{
    width:100%;
    margin:0;
    text-align:center;
  }

  .footer-credit{
    width:100%;
    text-align:center;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .legal-card h3 {
    font-size: 18px;
  }

  .scroll-top {
    display: none !important;
  }
}

@media (max-width: 480px) {
  nav {
    height: 64px;
    padding: 0 16px;
  }

  .nav-brand {
    font-size: 18px;
  }

  .btn-nav {
    padding: 8px 14px;
    font-size: 12px;
  }

  .mob {
    top: 64px;
    padding: 18px 20px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-stage {
    margin-top: 55px;
  }

  .app-stats {
    grid-template-columns: 1fr;
  }

  .app-table {
    min-width: 0;
    width: 100%;
  }

  .app-table th:nth-child(3),
  .app-table th:nth-child(4),
  .app-table td:nth-child(3),
  .app-table td:nth-child(4) {
    display: none;
  }

  .app-table th,
  .app-table td {
    padding: 8px 6px;
    font-size: 10px;
  }

  .app-table th:nth-child(1),
  .app-table td:nth-child(1) {
    width: 24%;
  }

  .app-table th:nth-child(2),
  .app-table td:nth-child(2) {
    width: 50%;
  }

  .app-table th:nth-child(5),
  .app-table td:nth-child(5) {
    width: 26%;
  }

  .app-table td:nth-child(2) {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .status-pill {
    font-size: 8px;
    padding: 2px 6px;
  }

  .sec-h {
    font-size: 29px;
  }

  .stats-row,
  .steps,
  .feat-grid,
  .p-grid,
  .testis,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 10px;
  }
}

.mob.open{
  display:block !important;
  z-index:1100 !important;
}