:root {
  --green: #3f7d58;
  --green-dark: #2d5c40;
  --green-light: #4e9a6c;
  --peach: #efa56c;
  --peach-light: #f5c49a;
  --peach-dark: #c8803a;
  --red: #eb5228;
  --teal: #093744;
  --teal-light: #0d4d61;
  --cream: #f3f3f3;
  --white: #ffffff;
  --bg: #050e0a;
  --bg2: #081410;
  --bg3: #0a1a12;
  --text: #f0ede8;
  --muted: #8a9e92;
  --dim: #2a3d30;
  --border: rgba(63, 125, 88, 0.2);
  --border-dim: rgba(255, 255, 255, 0.07);
  --fd: 'Playfair Display', serif;
  --fb: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  overflow-x: hidden;
  cursor: none;
}

body.nav-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  body {
    cursor: auto;
  }

  #cur,
  #cur-ring {
    display: none !important;
  }

  .ticker-inner {
    animation: none;
  }

  .rv {
    opacity: 1;
    transform: none;
  }
}

/* CURSOR */
#cur {
  width: 10px;
  height: 10px;
  background: var(--peach);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
}

#cur-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(239, 165, 108, 0.45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* TICKER */
.ticker {
  height: 34px;
  background: var(--teal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 101;
}

.ticker-inner {
  display: flex;
  gap: 56px;
  animation: tick 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ts {
  color: rgba(243, 243, 243, 0.55);
}

.tu {
  color: #6fcf97;
}

.td {
  color: #f87171;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

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

/* NAV (landing page only — do not use bare `nav`; dashboard uses .dnav) */
#nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(5, 14, 10, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-dim);
  transition: all .3s;
}

.nav-logo img {
  width: 110px;
  height: auto;
  display: block;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--peach);
  transition: width .25s;
}

.nav-links a:hover {
  color: var(--peach);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-menu-btn {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border-dim);
  color: var(--text);
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
  transition: border-color .2s;
}

.nav-menu-btn:hover {
  border-color: var(--muted);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.nav-mobile-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  z-index: 99;
  background: var(--bg2);
  border-left: 1px solid var(--border-dim);
  padding: 24px 22px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dim);
}

.nav-mobile-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
}

.nav-mobile-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-links a {
  display: block;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-radius: 4px;
  transition: background .2s, color .2s;
}

.nav-mobile-links a:hover {
  background: rgba(63, 125, 88, 0.08);
  color: var(--text);
}

.nav-login {
  background: transparent;
  border: 1.5px solid var(--border-dim);
  color: var(--muted);
  font-family: var(--fb);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s;
}

.nav-login:hover {
  border-color: var(--muted);
  color: var(--text);
}

.nav-cta {
  padding: 10px 22px;
  border: 1.5px solid var(--green);
  border-radius: 2px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: rgba(63, 125, 88, 0.1);
  transition: all .2s;
}

.nav-cta:hover {
  background: rgba(63, 125, 88, 0.25);
  border-color: var(--green-light);
}

/* FLOATING CTA */
.float-cta {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: linear-gradient(135deg, #0d2e1e, #071a10);
  border: 1px solid rgba(63, 125, 88, 0.5);
  border-radius: 40px;
  padding: 12px 20px 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  transition: bottom .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.float-cta.show {
  bottom: 28px;
}

.float-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fcf97;
  flex-shrink: 0;
  animation: fpulse 1.5s infinite;
}

@keyframes fpulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(111, 207, 151, 0)
  }
}

.float-text {
  font-size: 13px;
  color: var(--text);
}

.float-btn {
  padding: 8px 18px;
  background: var(--green);
  color: #fff;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
}

.float-btn:hover {
  background: var(--green-light);
}

.float-close {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}

.float-close:hover {
  color: var(--text);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: linear-gradient(160deg, #0d2218, #071410);
  border: 1px solid rgba(63, 125, 88, 0.35);
  border-radius: 8px;
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
  margin: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: color .2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(63, 125, 88, 0.4);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 300;
}

.modal-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--peach-light);
  margin-bottom: 20px;
  background: rgba(239, 165, 108, 0.07);
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgba(239, 165, 108, 0.15);
}

.urgency-dot {
  width: 7px;
  height: 7px;
  background: #6fcf97;
  border-radius: 50%;
  flex-shrink: 0;
  animation: fpulse 1.5s infinite;
}

.minput {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--fb);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 10px;
}

.minput:focus {
  border-color: var(--green);
}

.minput::placeholder {
  color: rgba(240, 237, 232, 0.3);
}

select.minput {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238a9e92' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.mbtn {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 12px;
  margin-top: 6px;
}

.mbtn:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.modal-note {
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  line-height: 1.7;
}

.modal-note a {
  color: var(--peach);
  text-decoration: none;
}

/* OTP */
.otp-sent {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.otp-hint {
  font-size: 12px;
  color: var(--peach-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.otp-box {
  width: 56px;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-dim);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  outline: none;
  transition: border-color .2s;
}

.otp-box:focus {
  border-color: var(--green);
}

.resend-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--fb);
  font-size: 12px;
  cursor: pointer;
  padding: 6px;
  text-decoration: underline;
  margin-bottom: 10px;
}

.login-box {
  max-width: 400px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px 130px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(63, 125, 88, 0.1) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(9, 55, 68, 0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 15% 20%, rgba(239, 165, 108, 0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(63, 125, 88, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(63, 125, 88, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 10%, transparent 80%);
}

.hero-chart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  opacity: .35;
  pointer-events: none;
}

.hero-chart svg {
  width: 100%;
  height: 100%;
}

.hero-bull {
  position: absolute;
  bottom: -40px;
  opacity: .06;
  pointer-events: none;
}

.hero-bull img {
  width: 600px;
  filter: invert(1);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(48px, 9vw, 118px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp .9s .35s forwards;
  position: relative;
  z-index: 2;
}

.hero-title .l1 {
  display: block;
  color: var(--text);
}

.hero-title .l2 {
  display: block;
  color: var(--peach);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
  position: relative;
  z-index: 2;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 54px;
  opacity: 0;
  animation: fadeUp .9s .85s forwards;
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(5, 14, 10, 0.4);
  backdrop-filter: blur(6px);
}

.htr-item {
  text-align: center;
  flex-shrink: 0;
}

.htr-num {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--peach);
  line-height: 1;
}

.htr-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.htr-div {
  width: 1px;
  height: 32px;
  background: var(--border-dim);
}

.btn-p {
  padding: 14px 34px;
  background: var(--green);
  color: #fff;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
  box-shadow: 0 0 40px rgba(63, 125, 88, 0.25);
}

.btn-p:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(63, 125, 88, 0.4);
}

.btn-s {
  padding: 14px 34px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .2s;
  display: inline-block;
}

.btn-s:hover {
  border-color: var(--green);
  color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .9s 1.1s forwards;
  z-index: 2;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.scroll-ln {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--green), transparent);
  animation: spulse 2s infinite;
}

@keyframes spulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

/* ANNOUNCE STRIP */
.announce-strip {
  background: linear-gradient(90deg, rgba(63, 125, 88, 0.12), rgba(9, 55, 68, 0.15), rgba(63, 125, 88, 0.12));
  border-top: 1px solid rgba(63, 125, 88, 0.2);
  border-bottom: 1px solid rgba(63, 125, 88, 0.2);
  padding: 14px 48px;
  position: relative;
  z-index: 1;
}

.as-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.as-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.as-text {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
  font-weight: 300;
}

.as-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--peach);
  text-decoration: none;
  letter-spacing: .04em;
  white-space: nowrap;
  border-bottom: 1px solid rgba(239, 165, 108, 0.3);
  transition: border-color .2s;
}

.as-link:hover {
  border-color: var(--peach);
}

/* SECTIONS */
section {
  position: relative;
  z-index: 1;
}

.si {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 48px;
}

.slabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 18px;
}

.stitle {
  font-family: var(--fd);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.ssub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* SECTION SEPARATOR (subtle) */
section+section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dim), transparent);
}

/* SERVICES */
#services {
  background: var(--bg2);
}

.sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
  gap: 1px;
  background: var(--border-dim);
}

.sc {
  background: var(--bg2);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  display: flex;
  flex-direction: column;
}

.sc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.sc:hover {
  background: rgba(63, 125, 88, 0.04);
}

.sc:hover::after {
  opacity: 1;
}

.featured-svc {
  background: rgba(63, 125, 88, 0.05);
}

.sc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--dim);
  margin-bottom: 20px;
}

.sc-icon {
  width: 42px;
  height: 42px;
  color: var(--green);
  margin-bottom: 18px;
}

.sc-name {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.sc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap;
}

.sc-price {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--peach);
}

.sc-price small {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.sc-btn {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s;
}

.sc-btn:hover {
  background: var(--green);
  color: #fff;
}

.sc-free-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 2px;
}

/* PERFORMANCE */
#performance {
  background: var(--bg3);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.perf-card {
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.012);
  transition: all .3s;
}

.perf-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.perf-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.perf-value {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 14px;
}

.perf-value span {
  font-size: 24px;
  color: var(--muted);
  font-weight: 600;
}

.perf-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.perf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
  transition: width 1s ease;
}

.perf-note {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 300;
}

.perf-disclaimer {
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--dim);
  line-height: 1.7;
  max-width: 680px;
}

/* PROCESS */
#process {
  background: var(--bg);
}

.ps {
  margin-top: 60px;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
}

.pstep {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 34px 44px;
  border-bottom: 1px solid var(--border-dim);
  transition: background .3s;
}

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

.pstep:hover {
  background: rgba(63, 125, 88, 0.03);
}

.pnum {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 900;
  color: var(--dim);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color .3s;
}

.pstep:hover .pnum {
  color: var(--green);
}

.ptitle {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 6px;
}

.pdesc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

/* WHY */
#why {
  background: var(--bg3);
}

.wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.wc {
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.012);
  transition: all .3s;
}

.wc:hover {
  border-color: var(--border);
  background: rgba(63, 125, 88, 0.04);
  transform: translateY(-4px);
}

.wi {
  font-size: 24px;
  margin-bottom: 16px;
}

.wt {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wd {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* PRICING */
#pricing {
  background: var(--bg2);
}

.price-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(63, 125, 88, 0.07);
  border: 1px solid rgba(63, 125, 88, 0.2);
  border-radius: 4px;
  padding: 12px 18px;
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.pa-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.price-anchor strong {
  color: var(--text);
}

.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.pc {
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 34px 28px;
  background: var(--bg);
  transition: all .3s;
  position: relative;
}

.pc.feat {
  border-color: var(--green);
  background: rgba(63, 125, 88, 0.04);
  box-shadow: 0 0 0 1px rgba(63, 125, 88, 0.2), 0 20px 60px rgba(63, 125, 88, 0.1);
}

.pc.feat::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pc.feat:hover {
  box-shadow: 0 0 0 1px rgba(63, 125, 88, 0.4), 0 24px 70px rgba(63, 125, 88, 0.2);
}

.ptier {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 12px;
}

.pname {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.ppdesc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 4px;
}

.price-orig {
  font-size: 14px;
  color: var(--dim);
  text-decoration: line-through;
  margin-top: 14px;
}

.pval {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  margin: 4px 0 3px;
}

.pval sup {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  vertical-align: super;
}

.pper {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.psave {
  color: var(--green);
  font-weight: 600;
}

.pf {
  list-style: none;
  margin-bottom: 24px;
  margin-top: 18px;
}

.pf li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}

.pf li::before {
  content: '—';
  color: var(--dim);
  font-size: 11px;
  flex-shrink: 0;
}

.pf li.on {
  color: var(--text);
}

.pf li.on::before {
  content: '✓';
  color: var(--green);
}

.pbtn {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--fb);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all .2s;
}

.pbtn:hover {
  border-color: var(--green);
  color: var(--cream);
  background: rgba(63, 125, 88, 0.08);
}

.pc.feat .pbtn {
  background: var(--green);
  border-color: transparent;
  color: #fff;
}

.pc.feat .pbtn:hover {
  background: var(--green-light);
}

.pg-note {
  text-align: center;
  font-size: 12px;
  color: var(--dim);
  margin-top: 20px;
  letter-spacing: .03em;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--bg);
}

.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.tc {
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 28px;
  background: var(--bg2);
  transition: all .3s;
}

.tc:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.stars {
  color: var(--peach);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.tq {
  font-size: 38px;
  color: rgba(239, 165, 108, 0.25);
  font-family: serif;
  line-height: .8;
  margin-bottom: 10px;
}

.tt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
  font-style: italic;
}

.ta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--peach);
  flex-shrink: 0;
}

.an {
  font-size: 13px;
  font-weight: 600;
}

.at {
  font-size: 11.5px;
  color: var(--muted);
}

/* FREE OFFER */
#free-offer {
  background: var(--bg3);
}

.fo-box {
  display: flex;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, rgba(63, 125, 88, 0.08), rgba(9, 55, 68, 0.1));
  border: 1px solid rgba(63, 125, 88, 0.25);
  border-radius: 8px;
  padding: 52px;
  flex-wrap: wrap;
}

.fo-left {
  flex: 1;
  min-width: 280px;
}

.fo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(63, 125, 88, 0.35);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.fo-title {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}

.fo-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.fo-points {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fo-points span {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.fo-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.fo-stat {
  text-align: center;
}

.fo-num {
  display: block;
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
}

.fo-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* FAQ */
#faq {
  background: var(--bg2);
}

.faq-list {
  margin-top: 48px;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
  transition: background .2s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: rgba(63, 125, 88, 0.03);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  color: var(--text);
}

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

.faq-icon {
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  transition: transform .3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 820px;
}

/* CTA */
#cta {
  background: var(--teal);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(63, 125, 88, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-logo {
  margin-bottom: 32px;
}

.cta-logo img {
  height: 90px;
  width: auto;
  filter: brightness(1.1);
}

.ctitle {
  font-family: var(--fd);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.csub {
  font-size: 17px;
  color: rgba(243, 243, 243, 0.6);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cform {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cinput {
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: #fff;
  font-family: var(--fb);
  font-size: 14px;
  width: 230px;
  outline: none;
  transition: border-color .2s;
}

.cinput:focus {
  border-color: var(--peach);
}

.cinput::placeholder {
  color: rgba(243, 243, 243, 0.35);
}

.cnote {
  font-size: 11.5px;
  color: rgba(243, 243, 243, 0.35);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.foot-logo img {
  height: 40px;
  width: auto;
}

.flinks {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.flinks a {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--peach);
}

.fcopy {
  font-size: 11.5px;
  color: var(--dim);
}

.sebi {
  padding: 18px 56px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-dim);
  font-size: 10.5px;
  color: var(--dim);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.sebi strong {
  color: var(--muted);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

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

  .sg,
  .wg,
  .tg,
  .pg {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {
  body {
    cursor: auto;
  }

  #cur,
  #cur-ring {
    display: none;
  }

  #nav {
    padding: 14px 18px;
    height: 60px;
  }

  .nav-logo img {
    width: 90px;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-login {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .si {
    padding: 72px 22px;
  }

  .stitle {
    font-size: 34px;
  }

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

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

  .hero-trust-row {
    gap: 18px;
    padding: 18px;
    flex-wrap: wrap;
  }

  .htr-div {
    display: none;
  }

  .htr-num {
    font-size: 20px;
  }

  .sg,
  .wg,
  .pg,
  .tg,
  .perf-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }

  footer,
  .sebi {
    padding: 28px 22px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }

  .pstep {
    flex-direction: column;
    gap: 10px;
    padding: 26px 22px;
  }

  .pnum {
    font-size: 36px;
    width: auto;
  }

  .float-cta {
    left: 14px;
    right: 14px;
    transform: none;
    border-radius: 14px;
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .float-text {
    font-size: 12px;
    flex: 1;
    min-width: 0;
  }

  .fo-box {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }

  .fo-right {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .modal-box {
    padding: 28px 22px;
  }

  .announce-strip {
    padding: 12px 20px;
  }

  .as-inner {
    gap: 10px;
  }

  .as-text {
    font-size: 12px;
  }

  .ticker-inner {
    animation-duration: 60s;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 20px 18px;
  }

  .otp-box {
    width: 48px;
    height: 54px;
    font-size: 24px;
  }
}