:root {
  --green: #7AC143;
  --green-bright: #9bd45f;
  --green-deep: #5a9e2c;
  --green-band: #8cc63f;
  --ink: #14181a;
  --muted: #5c655a;
  --cream: #faf9f4;
  --cream-2: #f1f2ea;
  --white: #ffffff;
  --line: rgba(20, 24, 26, .1);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; }
/* anchor offset so sticky navbar never covers a section's top */
#home, #about, #services, #contact, [id] { scroll-margin-top: 104px; }

body {
  font-family: "Sora", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.section-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
}
.section-title--center { text-align: center; }

/* ===== NAVBAR (floating pill) ===== */
.navbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  max-width: 1180px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 26px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(20,24,26,.07);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(30,50,20,.12), 0 2px 6px rgba(30,50,20,.06);
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--green); }
.brand__name {
  font-family: "Manrope", sans-serif;
  font-size: 29px; font-weight: 700; letter-spacing: -0.5px;
}
.nav {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 6px;
}
.nav__link {
  font-family: "Manrope", sans-serif;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  color: var(--ink); font-size: 16px; font-weight: 500; letter-spacing: .1px;
  padding: 9px 16px; border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.nav__link:hover { color: var(--green-deep); background: rgba(122,193,67,.1); }
.nav__link--active { color: var(--green-deep); background: rgba(122,193,67,.12); }
.nav__cta {
  font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 600;
  color: #fff; background: linear-gradient(135deg, #6fb236, #4f9220);
  padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 10px 22px rgba(77,144,32,.28);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 28px rgba(77,144,32,.38); }

/* connected log in / register pill */
.authbtns {
  display: inline-flex; align-items: stretch; gap: 3px;
  background: rgba(20,24,26,.05); border: 1px solid rgba(20,24,26,.07);
  border-radius: 999px; padding: 4px;
}
.authbtn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 600; white-space: nowrap;
  padding: 9px 20px; border-radius: 999px;
  transition: color .15s ease, background .2s ease, transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.authbtn--ghost { color: var(--ink); }
.authbtn--ghost:hover { color: var(--green-deep); background: rgba(122,193,67,.12); }
.authbtn--solid {
  color: #fff; background: linear-gradient(135deg, #6fb236, #4f9220);
  box-shadow: 0 8px 18px rgba(77,144,32,.28);
}
.authbtn--solid:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 12px 24px rgba(77,144,32,.4); }

/* ===== AUTH ERROR + MODAL ===== */
.auth__error {
  margin: 4px 0 10px; padding: 11px 14px; border-radius: 11px;
  background: rgba(224,49,49,.08); border: 1px solid rgba(224,49,49,.25);
  color: #c92a2a; font-family: "Manrope", sans-serif; font-size: 14px; line-height: 1.45;
}
.auth__note {
  margin: 4px 0 10px; padding: 11px 14px; border-radius: 11px;
  background: rgba(47,125,31,.08); border: 1px solid rgba(47,125,31,.25);
  color: #2f7d1f; font-family: "Manrope", sans-serif; font-size: 14px; line-height: 1.45;
}
.auth__forgot { margin: -4px 0 14px; text-align: right; }
.auth__forgot a { font-family: "Manrope", sans-serif; font-size: 13.5px; color: var(--green-deep); font-weight: 600; }
.auth__forgot a:hover { text-decoration: underline; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15,20,16,.5); backdrop-filter: blur(3px); }
.modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 420px; text-align: center;
  background: #fff; border-radius: 22px; padding: 38px 34px 32px;
  box-shadow: 0 40px 90px rgba(20,40,10,.35); animation: modalIn .2s ease;
}
@keyframes modalIn { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal__x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border: none; background: #f2f3ee; border-radius: 50%; display: grid; place-items: center; cursor: pointer; color: var(--muted); transition: background .15s; }
.modal__x:hover { background: #e7e9e1; }
.modal__ico { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; color: var(--green-deep); background: rgba(122,193,67,.14); }
.modal__title { font-size: 24px; font-weight: 700; letter-spacing: -.4px; }
.modal__text { margin: 12px 0 24px; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.modal__actions { display: flex; gap: 12px; justify-content: center; }
.modal__btn { padding: 12px 26px; font-size: 15px; border-radius: 999px; }

/* ===== AUTH PAGES ===== */
.auth { max-width: 460px; margin: 0 auto; padding: 70px 24px 110px; }
.auth__card {
  background: #fff; border: 1px solid rgba(20,24,26,.07); border-radius: 26px;
  padding: 40px 36px; box-shadow: 0 40px 80px rgba(30,50,20,.1);
}
.auth__head { text-align: center; margin-bottom: 28px; }
.auth__title { font-size: 34px; font-weight: 700; letter-spacing: -.8px; }
.auth__sub { margin-top: 10px; font-size: 15.5px; color: var(--muted); }
.auth__group { margin-bottom: 16px; }
.auth__lab { display: block; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.auth__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #6fb236, #4f9220); border: none; cursor: pointer;
  padding: 16px 24px; border-radius: 14px; margin-top: 8px;
  box-shadow: 0 14px 28px rgba(77,144,32,.3);
  transition: transform .15s ease, box-shadow .2s ease;
}
.auth__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(77,144,32,.42); }
.auth__alt { margin-top: 22px; text-align: center; font-size: 14.5px; color: var(--muted); }
.auth__alt a { color: var(--green-deep); font-weight: 600; }
.auth__check { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 4px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.auth__check input { margin-top: 3px; accent-color: var(--green); }
.auth__check a { color: var(--green-deep); }
@media (max-width: 560px) { .auth__card { padding: 30px 22px; } .auth__row2 { grid-template-columns: 1fr; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 86vh;
  background: var(--cream);
  overflow-x: clip;
  overflow-y: visible;
}
.hero__corner-dots {
  position: absolute; left: 24px; bottom: 36px;
  width: 480px; height: 540px; z-index: 1; pointer-events: none;
}
.cd {
  position: absolute; border-radius: 50%; display: block;
  background: var(--green); animation: bob 7s ease-in-out infinite;
}
.cd1  { width: 8px;  height: 8px;  left: 14px;  bottom: 20px;  opacity: .55; animation-delay: 0s; }
.cd2  { width: 14px; height: 14px; left: 60px;  bottom: 60px;  opacity: .4;  animation-delay: .4s; }
.cd3  { width: 6px;  height: 6px;  left: 100px; bottom: 16px;  opacity: .5;  animation-delay: .8s; }
.cd4  { width: 18px; height: 18px; left: 130px; bottom: 90px;  opacity: .32; animation-delay: 1.2s; }
.cd5  { width: 10px; height: 10px; left: 30px;  bottom: 110px; opacity: .45; animation-delay: 1.6s; }
.cd6  { width: 7px;  height: 7px;  left: 180px; bottom: 40px;  opacity: .5;  animation-delay: 2s; }
.cd7  { width: 13px; height: 13px; left: 90px;  bottom: 135px; opacity: .35; animation-delay: 2.4s; }
.cd8  { width: 5px;  height: 5px;  left: 210px; bottom: 115px; opacity: .5;  animation-delay: 2.8s; }
.cd9  { width: 9px;  height: 9px;  left: 155px; bottom: 18px;  opacity: .45; animation-delay: 3.2s; }
.cd10 { width: 12px; height: 12px; left: 12px;  bottom: 62px;  opacity: .4;  animation-delay: 3.6s; }
.cd11 { width: 6px;  height: 6px;  left: 58px;  bottom: 158px; opacity: .5;  animation-delay: 4s; }
.cd12 { width: 15px; height: 15px; left: 225px; bottom: 72px;  opacity: .3;  animation-delay: 4.4s; }
.cd13 { width: 7px;  height: 7px;  left: 260px; bottom: 30px;  opacity: .5;  animation-delay: 4.8s; }
.cd14 { width: 10px; height: 10px; left: 195px; bottom: 165px; opacity: .38; animation-delay: 5.2s; }
.cd15 { width: 5px;  height: 5px;  left: 125px; bottom: 175px; opacity: .5;  animation-delay: 5.6s; }
.cd16 { width: 12px; height: 12px; left: 275px; bottom: 120px; opacity: .32; animation-delay: .2s; }
.cd17 { width: 6px;  height: 6px;  left: 40px;  bottom: 185px; opacity: .45; animation-delay: .6s; }
.cd18 { width: 9px;  height: 9px;  left: 300px; bottom: 60px;  opacity: .4;  animation-delay: 1s; }
.cd19 { width: 7px;  height: 7px;  left: 240px; bottom: 150px; opacity: .42; animation-delay: 1.4s; }
.cd20 { width: 11px; height: 11px; left: 75px;  bottom: 210px; opacity: .34; animation-delay: 1.8s; }
.cd21 { width: 5px;  height: 5px;  left: 165px; bottom: 110px; opacity: .5;  animation-delay: 2.2s; }
.cd22 { width: 8px;  height: 8px;  left: 110px; bottom: 240px; opacity: .35; animation-delay: 2.6s; }
.cd23 { width: 6px;  height: 6px;  left: 305px; bottom: 175px; opacity: .42; animation-delay: 3s; }
.cd24 { width: 10px; height: 10px; left: 20px;  bottom: 145px; opacity: .38; animation-delay: 3.4s; }
.cd25 { width: 7px;  height: 7px;  left: 215px; bottom: 215px; opacity: .36; animation-delay: 3.8s; }
.cd26 { width: 5px;  height: 5px;  left: 280px; bottom: 230px; opacity: .42; animation-delay: 4.2s; }
.cd27 { width: 9px;  height: 9px;  left: 150px; bottom: 65px;  opacity: .42; animation-delay: 4.6s; }
.cd28 { width: 6px;  height: 6px;  left: 330px; bottom: 110px; opacity: .4;  animation-delay: 5s; }
.cd29 { width: 16px; height: 16px; left: 0px;   bottom: 95px;  opacity: .4;  animation-delay: .3s; }
.cd30 { width: 8px;  height: 8px;  left: 40px;  bottom: 30px;  opacity: .5;  animation-delay: .7s; }
.cd31 { width: 11px; height: 11px; left: 85px;  bottom: 95px;  opacity: .42; animation-delay: 1.1s; }
.cd32 { width: 6px;  height: 6px;  left: 35px;  bottom: 175px; opacity: .48; animation-delay: 1.5s; }
.cd33 { width: 14px; height: 14px; left: 120px; bottom: 45px;  opacity: .36; animation-delay: 1.9s; }
.cd34 { width: 7px;  height: 7px;  left: 170px; bottom: 145px; opacity: .46; animation-delay: 2.3s; }
.cd35 { width: 10px; height: 10px; left: 250px; bottom: 95px;  opacity: .4;  animation-delay: 2.7s; }
.cd36 { width: 6px;  height: 6px;  left: 360px; bottom: 70px;  opacity: .46; animation-delay: 3.1s; }
.cd37 { width: 13px; height: 13px; left: 290px; bottom: 165px; opacity: .34; animation-delay: 3.5s; }
.cd38 { width: 8px;  height: 8px;  left: 65px;  bottom: 130px; opacity: .44; animation-delay: 3.9s; }
.cd39 { width: 9px;  height: 9px;  left: 320px; bottom: 35px;  opacity: .42; animation-delay: 4.3s; }
.cd40 { width: 6px;  height: 6px;  left: 200px; bottom: 60px;  opacity: .48; animation-delay: 4.7s; }
.cd41 { width: 12px; height: 12px; left: 380px; bottom: 130px; opacity: .34; animation-delay: 5.1s; }
.cd42 { width: 7px;  height: 7px;  left: 145px; bottom: 200px; opacity: .42; animation-delay: 5.5s; }
.cd43 { width: 12px; height: 12px; left: 20px;  bottom: 260px; opacity: .38; animation-delay: .5s; }
.cd44 { width: 7px;  height: 7px;  left: 80px;  bottom: 300px; opacity: .44; animation-delay: 1s; }
.cd45 { width: 9px;  height: 9px;  left: 150px; bottom: 270px; opacity: .4;  animation-delay: 1.5s; }
.cd46 { width: 6px;  height: 6px;  left: 45px;  bottom: 350px; opacity: .42; animation-delay: 2s; }
.cd47 { width: 14px; height: 14px; left: 110px; bottom: 340px; opacity: .32; animation-delay: 2.5s; }
.cd48 { width: 7px;  height: 7px;  left: 200px; bottom: 310px; opacity: .42; animation-delay: 3s; }
.cd49 { width: 8px;  height: 8px;  left: 25px;  bottom: 420px; opacity: .38; animation-delay: 3.5s; }
.cd50 { width: 6px;  height: 6px;  left: 90px;  bottom: 410px; opacity: .42; animation-delay: 4s; }
.cd51 { width: 10px; height: 10px; left: 160px; bottom: 390px; opacity: .34; animation-delay: 4.5s; }
.cd52 { width: 6px;  height: 6px;  left: 55px;  bottom: 470px; opacity: .4;  animation-delay: 5s; }
.cd53 { width: 8px;  height: 8px;  left: 130px; bottom: 460px; opacity: .36; animation-delay: 5.4s; }
.cd54 { width: 5px;  height: 5px;  left: 30px;  bottom: 510px; opacity: .4;  animation-delay: .9s; }
.hero__content { padding: 0 40px 30px; padding-left: clamp(90px, 12vw, 210px); z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600;
  color: var(--green-deep); letter-spacing: .2px;
  background: rgba(122,193,67,.12); border: 1px solid rgba(122,193,67,.28);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 26px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(122,193,67,.22);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero__title { font-size: 84px; font-weight: 700; line-height: 1.04; letter-spacing: -2.5px; max-width: 7ch; }
.hero__subtitle { margin-top: 24px; font-size: 31px; font-weight: 600; line-height: 1.3; }
.hero__rule { display: block; width: 130px; height: 3px; background: var(--ink); margin-top: 32px; border-radius: 2px; }
.hero__foot { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 600;
  color: #fff; background: var(--green-deep);
  padding: 13px 26px; border-radius: 999px;
  box-shadow: 0 12px 26px rgba(77,144,32,.3);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.hero__cta:hover { transform: translateY(-2px); background: #437f1c; box-shadow: 0 16px 32px rgba(77,144,32,.4); }
.hero__cta svg { transition: transform .2s ease; }
.hero__cta:hover svg { transform: translateX(3px); }
.hero__note { font-family: "Manrope", sans-serif; font-size: 14.5px; font-weight: 500; color: var(--muted); }

.hero__visual { position: relative; align-self: stretch; min-height: 560px; overflow-x: clip; overflow-y: visible; }

/* soft layered blobs (toned-down greens) */
.hero__bg { position: absolute; inset: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.blob--1 {
  right: -140px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle at 38% 34%, #8fc94f 0%, #6fb236 48%, #4d9020 100%);
  opacity: .95;
}
.blob--2 {
  right: 60px; top: 20px; width: 300px; height: 300px;
  background: radial-gradient(circle at 40% 40%, #aede78, #84c24a);
  opacity: .55; filter: blur(6px);
  animation: drift 14s ease-in-out infinite;
}
.blob--3 {
  right: 280px; bottom: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle at 40% 40%, #c2e49a, #93cc5b);
  opacity: .5; filter: blur(8px);
  animation: drift 18s ease-in-out infinite reverse;
}
/* pulsing glow behind cards */
.card-glow {
  position: absolute; left: 150px; top: 230px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,193,67,.45), transparent 68%);
  filter: blur(10px); z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50%      { transform: scale(1.12); opacity: .85; }
}
/* slow rotating dashed accent ring */
.accent-ring {
  position: absolute; right: 120px; top: 90px;
  width: 150px; height: 150px; border-radius: 50%;
  border: 2px dashed rgba(77,144,32,.35);
  animation: spin 30s linear infinite; z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 16px); }
}

/* scattered bubbles in muted shades */
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: bob 7s ease-in-out infinite;
}
.b1  { width: 14px; height: 14px; right: 90px;  top: 130px; background: rgba(255,255,255,.55); animation-delay: 0s; }
.b2  { width: 22px; height: 22px; right: 150px; top: 80px;  background: rgba(120,180,70,.28);  animation-delay: .6s; }
.b3  { width: 10px; height: 10px; right: 240px; top: 60px;  background: rgba(255,255,255,.6);  animation-delay: 1.1s; }
.b4  { width: 30px; height: 30px; right: 60px;  top: 250px; background: rgba(120,180,70,.22);  animation-delay: 1.6s; }
.b5  { width: 12px; height: 12px; right: 120px; bottom: 120px; background: rgba(255,255,255,.5); animation-delay: 2.1s; }
.b6  { width: 18px; height: 18px; right: 200px; bottom: 80px;  background: rgba(120,180,70,.25); animation-delay: 2.6s; }
.b7  { width: 8px;  height: 8px;  right: 320px; bottom: 140px; background: rgba(255,255,255,.55); animation-delay: 3s; }
.b8  { width: 24px; height: 24px; right: 30px;  top: 150px; background: rgba(255,255,255,.4);  animation-delay: 3.4s; }
.b9  { width: 14px; height: 14px; right: 280px; top: 180px; background: rgba(120,180,70,.2);   animation-delay: 4s; }
.b10 { width: 9px;  height: 9px;  right: 100px; top: 320px; background: rgba(255,255,255,.6);  animation-delay: 4.6s; }
.b11 { width: 16px; height: 16px; right: 360px; top: 90px;  background: rgba(120,180,70,.18);  animation-delay: 5.1s; }
.b12 { width: 11px; height: 11px; right: 170px; bottom: 40px; background: rgba(255,255,255,.5); animation-delay: 5.6s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(-16px); opacity: 1; }
}

/* ===== CARDS ===== */
.card {
  position: absolute; width: 336px; height: 212px; border-radius: 20px;
  box-shadow: 0 30px 60px rgba(30,60,15,.32), 0 4px 12px rgba(30,60,15,.18);
  overflow: hidden;
}
.card--front {
  top: 120px; left: 70px; padding: 24px 26px;
  background: linear-gradient(135deg, #9ad257 0%, #74b73e 42%, #4f9220 100%);
  border: 1px solid rgba(255,255,255,.22);
  display: flex; flex-direction: column; color: #fff; z-index: 3;
  animation: floatFront 7s ease-in-out infinite;
}
.card--front::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,.28), transparent 55%);
  pointer-events: none;
}
.card--back {
  top: 290px; left: 200px;
  background: linear-gradient(135deg, #356319 0%, #244611 60%, #1a350c 100%);
  border: 1px solid rgba(255,255,255,.1);
  z-index: 2;
  animation: floatBack 7s ease-in-out infinite .8s;
}
.card__sheen {
  position: absolute; top: -60%; left: -30%; width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: rotate(20deg); pointer-events: none;
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen {
  0%, 70%, 100% { left: -40%; }
  85% { left: 120%; }
}
.card__watermark {
  position: absolute; right: -10px; bottom: -8px;
  width: 150px; height: 105px; opacity: .25; transform: rotate(-8deg);
  pointer-events: none;
}
@keyframes floatFront {
  0%, 100% { transform: rotate(-11deg) translateY(0); }
  50%      { transform: rotate(-9deg)  translateY(-16px); }
}
@keyframes floatBack {
  0%, 100% { transform: rotate(-11deg) translateY(0); }
  50%      { transform: rotate(-13deg) translateY(12px); }
}
.card__top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.card__label { font-size: 17px; font-weight: 700; letter-spacing: .3px; }
.card__label em { font-style: normal; font-weight: 500; opacity: .82; font-size: 14px; }
.card__chip {
  width: 42px; height: 31px; border-radius: 6px; margin-top: 18px; position: relative; z-index: 2;
  background: linear-gradient(135deg, #f7dd92 0%, #e6bf63 50%, #c89a38 100%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
}
.card__chip i {
  position: absolute; inset: 6px 9px; border-radius: 3px;
  border: 1px solid rgba(140,100,20,.55);
  background:
    linear-gradient(rgba(140,100,20,.45), rgba(140,100,20,.45)) center/100% 1px no-repeat,
    linear-gradient(rgba(140,100,20,.45), rgba(140,100,20,.45)) center/1px 100% no-repeat;
}
.card__number {
  font-size: 22px; font-weight: 600; letter-spacing: 2.5px; margin-top: auto; position: relative; z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,.22);
}
.card__bottom { display: flex; align-items: flex-end; gap: 16px; margin-top: 16px; position: relative; z-index: 2; }
.card__meta { display: flex; flex-direction: column; gap: 3px; }
.card__cap { font-size: 8.5px; text-transform: uppercase; letter-spacing: 1.2px; opacity: .7; }
.card__name { font-size: 14px; font-weight: 700; letter-spacing: .8px; }
.card__exp { font-size: 14px; font-weight: 600; }
.brandmark { margin-left: auto; display: inline-flex; align-items: center; }
.brandmark i { width: 27px; height: 27px; border-radius: 50%; display: block; }
.brandmark i:first-child { background: #eb5b2d; }
.brandmark i:last-child { background: #f4a431; margin-left: -13px; mix-blend-mode: screen; }
.card__stripe { width: 100%; height: 44px; background: #141414; margin-top: 28px; }
.card__sign { margin: 18px 24px 0; height: 30px; background: #dcdcdc; border-radius: 4px; display: flex; align-items: center; justify-content: flex-end; padding: 0 10px; }
.card__sign span { color: #333; font-size: 13px; font-style: italic; }
.brandmark--back { position: absolute; right: 22px; bottom: 20px; }

/* ===== CRYPTO ===== */
.crypto {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.08fr; gap: 70px; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 120px 64px;
  background: transparent;
}
.crypto__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600;
  color: var(--green-deep); letter-spacing: .2px;
  background: rgba(122,193,67,.12); border: 1px solid rgba(122,193,67,.28);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.crypto__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(122,193,67,.22); animation: pulse 2.4s ease-in-out infinite; }
.crypto__lead { margin-top: 24px; font-size: 21px; line-height: 1.62; color: #2c322c; max-width: 46ch; }
.crypto__btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px; margin-top: 36px;
  font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #7cbf3a 0%, #5a9e2c 55%, #4f9220 100%);
  padding: 15px 18px 15px 32px; border-radius: 999px;
  box-shadow: 0 16px 32px rgba(77,144,32,.34), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .18s ease, box-shadow .25s ease;
}
.crypto__btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-18deg); transition: left .55s ease;
}
.crypto__btn:hover { transform: translateY(-3px); box-shadow: 0 22px 40px rgba(77,144,32,.46), inset 0 1px 0 rgba(255,255,255,.3); }
.crypto__btn:hover::before { left: 130%; }
.crypto__btn svg {
  width: 18px; height: 18px; box-sizing: content-box; padding: 7px; border-radius: 50%;
  background: rgba(255,255,255,.22); transition: transform .2s ease, background .2s ease;
}
.crypto__btn:hover svg { transform: translateX(3px); background: rgba(255,255,255,.32); }

.crypto__scatter { position: absolute; right: 30px; top: 90px; width: 420px; height: 460px; z-index: 0; pointer-events: none; }
.cs { position: absolute; border-radius: 50%; background: var(--green); animation: bob 7s ease-in-out infinite; }
.cs1  { width: 9px;  height: 9px;  right: 30px;  top: 20px;  opacity: .4;  animation-delay: 0s; }
.cs2  { width: 6px;  height: 6px;  right: 110px; top: 60px;  opacity: .34; animation-delay: .6s; }
.cs3  { width: 13px; height: 13px; right: 60px;  top: 130px; opacity: .26; animation-delay: 1.1s; }
.cs4  { width: 7px;  height: 7px;  right: 150px; top: 180px; opacity: .34; animation-delay: 1.6s; }
.cs5  { width: 5px;  height: 5px;  right: 20px;  top: 230px; opacity: .4;  animation-delay: 2.1s; }
.cs6  { width: 10px; height: 10px; right: 90px;  top: 290px; opacity: .28; animation-delay: 2.6s; }
.cs7  { width: 6px;  height: 6px;  right: 180px; top: 110px; opacity: .32; animation-delay: 3.1s; }
.cs8  { width: 8px;  height: 8px;  right: 40px;  top: 360px; opacity: .3;  animation-delay: 3.6s; }
.cs9  { width: 5px;  height: 5px;  right: 130px; top: 350px; opacity: .36; animation-delay: 4.1s; }
.cs10 { width: 11px; height: 11px; right: 200px; top: 250px; opacity: .24; animation-delay: 4.6s; }
.cs11 { width: 6px;  height: 6px;  right: 70px;  top: 420px; opacity: .32; animation-delay: 5.1s; }
.cs12 { width: 7px;  height: 7px;  right: 230px; top: 60px;  opacity: .3;  animation-delay: 5.6s; }
.cs13 { width: 5px;  height: 5px;  right: 250px; top: 180px; opacity: .34; animation-delay: .9s; }
.cs14 { width: 9px;  height: 9px;  right: 160px; top: 420px; opacity: .26; animation-delay: 1.8s; }

.crypto__visual { position: relative; z-index: 1; display: grid; place-items: center; min-height: 360px; }
.crypto__glow {
  position: absolute; inset: 0; margin: auto; width: 480px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,193,67,.2), transparent 66%); filter: blur(16px); z-index: 0;
}

/* ===== LIVE TICKER ===== */
.ticker { position: relative; z-index: 1; width: 100%; max-width: 520px; }
.ticker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding: 0 4px; }
.ticker__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--green-deep);
}
.ticker__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(122,193,67,.22); animation: pulse 2s ease-in-out infinite; }
.ticker__upd { font-family: "Manrope", sans-serif; font-size: 12.5px; color: var(--muted); }

.tk {
  display: grid; grid-template-columns: 52px 1fr 130px auto; align-items: center; gap: 20px;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
}
.tk:last-child { border-bottom: none; }
.tk__logo { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; box-shadow: 0 8px 18px rgba(30,50,20,.18); }
.tk__logo svg { width: 100%; height: 100%; display: block; }
.tk__name strong { display: block; font-size: 19px; font-weight: 700; letter-spacing: -.2px; }
.tk__name small { font-family: "Manrope", sans-serif; font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .6px; }
.tk__spark { width: 130px; height: 44px; }
.tk__val { text-align: right; }
.tk__val strong { display: block; font-size: 21px; font-weight: 700; letter-spacing: -.3px; font-variant-numeric: tabular-nums; }
.tk__chg { font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600; }
.tk__chg--up { color: #2f9e44; }
.tk__chg--down { color: #e03131; }

@media (max-width: 560px) {
  .tk { grid-template-columns: 40px 1fr auto; gap: 14px; }
  .tk__spark { display: none; }
}
.token {
  position: absolute; z-index: 3; display: grid; place-items: center;
  border-radius: 50%; background: #fff; padding: 6px;
  box-shadow: 0 18px 36px rgba(30,50,20,.22), 0 2px 6px rgba(30,50,20,.12);
  animation: bob 7s ease-in-out infinite;
}
.token svg { width: 100%; height: 100%; display: block; }
.token--btc  { width: 64px; height: 64px; top: 14px;  right: 26px; animation-delay: .3s; }
.token--eth  { width: 52px; height: 52px; bottom: 64px; left: 6px;  animation-delay: 1.2s; }
.token--usdt { width: 46px; height: 46px; top: 168px; left: -8px; animation-delay: 2s; }

.xcard {
  position: relative; z-index: 1; width: 100%; max-width: 480px;
  background: #fff; border: 1px solid rgba(20,24,26,.07); border-radius: 26px;
  padding: 30px 32px 26px; box-shadow: 0 40px 80px rgba(30,50,20,.16);
}
.xcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.xcard__title { font-size: 19px; font-weight: 700; letter-spacing: -.3px; }
.xcard__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  color: var(--green-deep); background: rgba(122,193,67,.12); padding: 5px 11px; border-radius: 999px;
}
.xcard__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.xrow { display: flex; flex-direction: column; gap: 9px; padding: 16px 0; }
.xrow__label { font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); }
.xrow__val { display: flex; align-items: center; gap: 14px; font-size: 30px; font-weight: 700; letter-spacing: -.5px; }
.xrow__amt { font-variant-numeric: tabular-nums; }
.xrow__val em { font-style: normal; font-size: 16px; font-weight: 600; color: var(--muted); margin-left: auto; }
.xcoin { width: 44px; height: 44px; border-radius: 50%; flex: none; overflow: hidden; box-shadow: 0 4px 12px rgba(30,50,20,.14); }
.xcoin svg { width: 100%; height: 100%; display: block; }
.xswap {
  width: 44px; height: 44px; margin: -4px 0 -4px auto; border-radius: 13px;
  display: grid; place-items: center; color: var(--green-deep);
  background: rgba(122,193,67,.12); border: 1px solid rgba(122,193,67,.25);
}
.xcard__chart { margin: 12px 0 4px; height: 70px; }
.xcard__chart svg { width: 100%; height: 100%; display: block; }
.xcard__rate {
  display: flex; align-items: center; gap: 9px; margin-top: 14px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: "Manrope", sans-serif; font-size: 13.5px; font-weight: 500; color: var(--muted);
}
.xcard__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(122,193,67,.22); animation: pulse 2s ease-in-out infinite; }

/* ===== ABOUT ===== */
.about {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 130px 64px;
  background: transparent;
}
.about__visual { position: relative; }
.about__glow {
  position: absolute; right: -40px; top: -30px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,193,67,.2), transparent 68%);
  filter: blur(14px); z-index: 0;
}
.about__photo {
  position: relative; z-index: 1;
  height: 500px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 34px 70px rgba(30,60,30,.22);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rate {
  position: absolute; left: -36px; width: 320px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(4px);
  border-radius: 16px; padding: 15px 20px;
  box-shadow: 0 20px 44px rgba(30,50,20,.18);
}
.rate--usd { top: 110px; }
.rate--eur { top: 215px; left: -18px; }
.rate--gbp { top: 320px; left: -36px; }
.rate__ico {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 17px;
  background: #e7f3da; color: var(--green-deep);
}
.rate__ico--eur { background: #e2ecfb; color: #2f6fd8; }
.rate__ico--gbp { background: #fbe4e2; color: #d8493f; }
.rate__cur { font-weight: 700; font-size: 15px; }
.rate__spark { width: 70px; height: 26px; flex: none; }
.rate__val { margin-left: auto; text-align: right; font-weight: 700; font-size: 15px; display: flex; flex-direction: column; }
.rate__val small { font-weight: 500; font-size: 11px; color: var(--green-deep); }

.about__text .section-title { margin-bottom: 30px; font-size: 60px; }
.lead { font-size: 24px; line-height: 1.62; color: #2c322c; }

/* ===== MISSION ===== */
.mission {
  position: relative; overflow: hidden;
  padding: 130px 64px;
  color: #fff;
  background:
    radial-gradient(110% 130% at 80% 12%, #9bd45f 0%, transparent 55%),
    radial-gradient(120% 120% at 8% 92%, rgba(36,74,16,.4) 0%, transparent 52%),
    linear-gradient(125deg, #4d9020 0%, #6fb236 52%, #8fc94f 100%);
}
.mission__glow {
  position: absolute; left: -100px; top: -110px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
  filter: blur(12px); pointer-events: none;
}
.mission__blob {
  position: absolute; right: -120px; bottom: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(190,232,140,.55), rgba(140,205,80,.15) 60%, transparent 75%);
  filter: blur(6px); pointer-events: none;
}
.mission__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.mission__title { font-size: 66px; font-weight: 700; letter-spacing: -1.8px; }
.mission__text { margin-top: 24px; font-size: 26px; font-weight: 400; max-width: 16ch; line-height: 1.4; color: rgba(255,255,255,.95); }

/* scattered dots — same language as hero */
.mission__dots { position: absolute; right: 40px; top: 0; bottom: 0; width: 480px; z-index: 1; pointer-events: none; }
.md { position: absolute; border-radius: 50%; background: rgba(255,255,255,.85); animation: bob 7s ease-in-out infinite; }
.md1  { width: 9px;  height: 9px;  right: 60px;  top: 60px;  opacity: .85; animation-delay: 0s; }
.md2  { width: 6px;  height: 6px;  right: 130px; top: 95px;  opacity: .7;  animation-delay: .5s; }
.md3  { width: 12px; height: 12px; right: 200px; top: 50px;  opacity: .6;  animation-delay: 1s; }
.md4  { width: 7px;  height: 7px;  right: 30px;  top: 130px; opacity: .8;  animation-delay: 1.5s; }
.md5  { width: 5px;  height: 5px;  right: 95px;  top: 160px; opacity: .75; animation-delay: 2s; }
.md6  { width: 10px; height: 10px; right: 165px; top: 130px; opacity: .55; animation-delay: 2.5s; }
.md7  { width: 6px;  height: 6px;  right: 250px; top: 110px; opacity: .6;  animation-delay: 3s; }
.md8  { width: 8px;  height: 8px;  right: 50px;  top: 210px; opacity: .7;  animation-delay: 3.5s; }
.md9  { width: 5px;  height: 5px;  right: 130px; top: 230px; opacity: .7;  animation-delay: 4s; }
.md10 { width: 11px; height: 11px; right: 210px; top: 200px; opacity: .5;  animation-delay: 4.5s; }
.md11 { width: 6px;  height: 6px;  right: 300px; top: 70px;  opacity: .55; animation-delay: 5s; }
.md12 { width: 7px;  height: 7px;  right: 90px;  top: 290px; opacity: .6;  animation-delay: .8s; }
.md13 { width: 5px;  height: 5px;  right: 180px; top: 280px; opacity: .6;  animation-delay: 1.3s; }
.md14 { width: 9px;  height: 9px;  right: 270px; top: 250px; opacity: .5;  animation-delay: 1.8s; }
.md15 { width: 6px;  height: 6px;  right: 40px;  top: 320px; opacity: .55; animation-delay: 2.3s; }
.md16 { width: 5px;  height: 5px;  right: 230px; top: 320px; opacity: .5;  animation-delay: 2.8s; }
.md17 { width: 8px;  height: 8px;  right: 330px; top: 160px; opacity: .5;  animation-delay: 3.3s; }
.md18 { width: 6px;  height: 6px;  right: 150px; top: 360px; opacity: .5;  animation-delay: 3.8s; }

/* ===== WHY ===== */
.why {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 120px 64px;
}
.why__glow {
  position: absolute; inset: 0; margin: auto;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,193,67,.22), transparent 68%);
  filter: blur(14px); z-index: 0; pointer-events: none;
}
.why__dots { position: absolute; left: 10px; bottom: 30px; width: 280px; height: 220px; z-index: 0; pointer-events: none; }
.wd { position: absolute; border-radius: 50%; background: var(--green); animation: bob 7s ease-in-out infinite; }
.wd1  { width: 8px;  height: 8px;  left: 10px;  bottom: 20px;  opacity: .45; animation-delay: 0s; }
.wd2  { width: 13px; height: 13px; left: 55px;  bottom: 60px;  opacity: .32; animation-delay: .6s; }
.wd3  { width: 6px;  height: 6px;  left: 100px; bottom: 18px;  opacity: .42; animation-delay: 1.1s; }
.wd4  { width: 10px; height: 10px; left: 30px;  bottom: 110px; opacity: .36; animation-delay: 1.6s; }
.wd5  { width: 6px;  height: 6px;  left: 130px; bottom: 90px;  opacity: .4;  animation-delay: 2.1s; }
.wd6  { width: 9px;  height: 9px;  left: 80px;  bottom: 140px; opacity: .34; animation-delay: 2.6s; }
.wd7  { width: 5px;  height: 5px;  left: 170px; bottom: 50px;  opacity: .42; animation-delay: 3.1s; }
.wd8  { width: 7px;  height: 7px;  left: 200px; bottom: 110px; opacity: .34; animation-delay: 3.6s; }
.wd9  { width: 6px;  height: 6px;  left: 15px;  bottom: 165px; opacity: .38; animation-delay: 4.1s; }
.wd10 { width: 11px; height: 11px; left: 150px; bottom: 160px; opacity: .3;  animation-delay: 4.6s; }
.wd11 { width: 5px;  height: 5px;  left: 110px; bottom: 195px; opacity: .38; animation-delay: 5.1s; }
.wd12 { width: 7px;  height: 7px;  left: 230px; bottom: 70px;  opacity: .34; animation-delay: 5.6s; }
.why__text { position: relative; z-index: 1; }
.why__list { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.why__list li {
  position: relative; padding-left: 26px; font-size: 19px; line-height: 1.5; color: #2c322c;
}
.why__list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
.why__list strong { font-weight: 700; }
.why__visual { position: relative; display: grid; place-items: center; }
.globe {
  position: relative; z-index: 1; width: 100%; max-width: 380px; opacity: .95;
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== SERVICES ===== */
.services { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 40px 64px 110px; }
.services__dots { position: absolute; right: 24px; top: 20px; width: 300px; height: 240px; z-index: 0; pointer-events: none; }
.sd { position: absolute; border-radius: 50%; background: var(--green); animation: bob 7s ease-in-out infinite; }
.sd1  { width: 8px;  height: 8px;  right: 20px;  top: 30px;  opacity: .45; animation-delay: 0s; }
.sd2  { width: 13px; height: 13px; right: 70px;  top: 70px;  opacity: .32; animation-delay: .6s; }
.sd3  { width: 6px;  height: 6px;  right: 120px; top: 26px;  opacity: .42; animation-delay: 1.1s; }
.sd4  { width: 10px; height: 10px; right: 40px;  top: 120px; opacity: .36; animation-delay: 1.6s; }
.sd5  { width: 6px;  height: 6px;  right: 150px; top: 100px; opacity: .4;  animation-delay: 2.1s; }
.sd6  { width: 9px;  height: 9px;  right: 95px;  top: 150px; opacity: .34; animation-delay: 2.6s; }
.sd7  { width: 5px;  height: 5px;  right: 190px; top: 60px;  opacity: .42; animation-delay: 3.1s; }
.sd8  { width: 7px;  height: 7px;  right: 220px; top: 120px; opacity: .34; animation-delay: 3.6s; }
.sd9  { width: 6px;  height: 6px;  right: 25px;  top: 180px; opacity: .38; animation-delay: 4.1s; }
.sd10 { width: 11px; height: 11px; right: 165px; top: 175px; opacity: .3;  animation-delay: 4.6s; }
.sd11 { width: 5px;  height: 5px;  right: 120px; top: 205px; opacity: .38; animation-delay: 5.1s; }
.sd12 { width: 7px;  height: 7px;  right: 250px; top: 80px;  opacity: .34; animation-delay: 5.6s; }
.services .section-title--center { position: relative; z-index: 1; }
.services__sub {
  position: relative; z-index: 1;
  text-align: center; font-size: 24px; line-height: 1.4; color: #2c322c;
  max-width: 24ch; margin: 22px auto 56px; font-weight: 400;
}
.services__grid { position: relative; z-index: 1; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.svc { padding: 44px 30px; border-right: 1px solid var(--line); }
.svc:last-child { border-right: none; }
.svc__ico { margin-bottom: 26px; }
.svc__title { font-size: 21px; font-weight: 700; line-height: 1.25; min-height: 56px; }
.svc__lead { margin-top: 14px; font-size: 16px; font-weight: 600; color: var(--ink); }
.svc__desc { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.svc__desc strong { color: var(--ink); }

/* ===== PARTNERS ===== */
.partners {
  background: linear-gradient(180deg, var(--cream) 0%, #f1f2ea 100%);
  padding: 54px 0 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.partners__label {
  text-align: center; font-family: "Manrope", sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 30px;
}
.partners__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners__track { display: flex; gap: 22px; width: max-content; animation: slide 36s linear infinite; }
.partners:hover .partners__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.logo {
  flex: none; min-width: 176px; height: 84px;
  display: grid; place-items: center; padding: 0 24px;
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(20,24,26,.06);
  box-shadow: 0 10px 26px rgba(30,50,20,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(30,50,20,.12); }
.pl { width: 112px; height: auto; display: block; }

/* ===== JOIN CTA ===== */
.join {
  position: relative; overflow: hidden;
  padding: 90px 64px;
  background:
    radial-gradient(110% 130% at 80% 12%, #9bd45f 0%, transparent 55%),
    radial-gradient(120% 120% at 8% 92%, rgba(36,74,16,.4) 0%, transparent 52%),
    linear-gradient(125deg, #4d9020 0%, #6fb236 52%, #8fc94f 100%);
}
.join__glow {
  position: absolute; left: -100px; top: -110px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), transparent 70%);
  filter: blur(12px); pointer-events: none;
}
.join__blob {
  position: absolute; right: -120px; bottom: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(190,232,140,.5), rgba(140,205,80,.12) 60%, transparent 75%);
  filter: blur(6px); pointer-events: none;
}
.join__dots { position: absolute; right: 40px; top: 0; bottom: 0; width: 460px; z-index: 1; pointer-events: none; }
.jd { position: absolute; border-radius: 50%; background: rgba(255,255,255,.85); animation: bob 7s ease-in-out infinite; }
.jd1  { width: 9px;  height: 9px;  right: 60px;  top: 40px;  opacity: .85; animation-delay: 0s; }
.jd2  { width: 6px;  height: 6px;  right: 130px; top: 70px;  opacity: .7;  animation-delay: .5s; }
.jd3  { width: 12px; height: 12px; right: 200px; top: 36px;  opacity: .6;  animation-delay: 1s; }
.jd4  { width: 7px;  height: 7px;  right: 30px;  top: 100px; opacity: .8;  animation-delay: 1.5s; }
.jd5  { width: 5px;  height: 5px;  right: 95px;  top: 130px; opacity: .75; animation-delay: 2s; }
.jd6  { width: 10px; height: 10px; right: 165px; top: 110px; opacity: .55; animation-delay: 2.5s; }
.jd7  { width: 6px;  height: 6px;  right: 250px; top: 90px;  opacity: .6;  animation-delay: 3s; }
.jd8  { width: 8px;  height: 8px;  right: 50px;  top: 170px; opacity: .7;  animation-delay: 3.5s; }
.jd9  { width: 5px;  height: 5px;  right: 130px; top: 180px; opacity: .7;  animation-delay: 4s; }
.jd10 { width: 11px; height: 11px; right: 210px; top: 165px; opacity: .5;  animation-delay: 4.5s; }
.jd11 { width: 6px;  height: 6px;  right: 300px; top: 55px;  opacity: .55; animation-delay: 5s; }
.jd12 { width: 7px;  height: 7px;  right: 290px; top: 150px; opacity: .5;  animation-delay: 5.5s; }
.join__link {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 18px;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  color: #fff; font-size: 96px; font-weight: 800; letter-spacing: -3px;
  transition: opacity .15s ease;
}
.join__link svg { flex: none; margin-top: 6px; transition: transform .2s ease; }
.join__link:hover svg { transform: translate(6px, -6px); }

/* ===== CONTACT PAGE ===== */
.contact { max-width: var(--maxw); margin: 0 auto; padding: 70px 64px 110px; }
.contact__head { margin-bottom: 50px; }
.contact__title { font-size: 72px; font-weight: 700; letter-spacing: -2px; }
.contact__sub { margin-top: 16px; font-size: 20px; line-height: 1.6; color: var(--muted); max-width: 50ch; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: stretch; }

/* left panel */
.contact__panel {
  position: relative; overflow: hidden; border-radius: 28px;
  padding: 48px 44px; color: #fff;
  background:
    radial-gradient(110% 130% at 80% 12%, #9bd45f 0%, transparent 55%),
    radial-gradient(120% 120% at 8% 92%, rgba(36,74,16,.4) 0%, transparent 52%),
    linear-gradient(125deg, #4d9020 0%, #6fb236 52%, #8fc94f 100%);
}
.cp__glow { position: absolute; left: -90px; top: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%); filter: blur(12px); }
.cp__blob { position: absolute; right: -120px; bottom: -140px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(190,232,140,.5), rgba(140,205,80,.12) 60%, transparent 75%); filter: blur(6px); }
.contact__panel { display: flex; align-items: center; justify-content: center; min-height: 480px; }
.cp__body { position: relative; z-index: 2; display: grid; place-items: center; }
.cp__title { font-size: 32px; font-weight: 700; letter-spacing: -.6px; line-height: 1.15; }
.cp__text { margin-top: 14px; font-size: 16.5px; line-height: 1.55; color: rgba(255,255,255,.92); max-width: 36ch; }
.cp__list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.cp__list li { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 500; }
.cp__ico { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.2); font-size: 12px; font-weight: 700; flex: none; }
.cp__dots { position: absolute; right: 30px; top: 20px; width: 320px; height: 200px; z-index: 1; pointer-events: none; }

.card--contact {
  position: relative; transform: rotate(-4deg);
  padding: 22px 24px; width: 320px; height: 200px;
  background: linear-gradient(135deg, #9ad257 0%, #74b73e 42%, #4f9220 100%);
  border: 1px solid rgba(255,255,255,.22);
  display: flex; flex-direction: column; color: #fff;
  box-shadow: 0 26px 50px rgba(20,50,8,.35);
  animation: floatFront 7s ease-in-out infinite;
}

/* form */
.contact__form {
  background: #fff; border: 1px solid rgba(20,24,26,.08); border-radius: 28px;
  padding: 46px 44px; box-shadow: 0 30px 60px rgba(30,50,20,.08);
  display: flex; flex-direction: column;
}
.form__title { font-size: 30px; font-weight: 700; letter-spacing: -.6px; margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field {
  font-family: "Manrope", sans-serif; font-size: 15px; color: var(--ink);
  background: #f5f6f1; border: 1.5px solid transparent; border-radius: 13px;
  padding: 15px 18px; width: 100%; transition: border-color .15s, background .15s;
}
.field::placeholder { color: #98a092; }
.field:focus { outline: none; background: #fff; border-color: var(--green); }
.field--area { resize: vertical; min-height: 150px; margin-bottom: 22px; }
.form__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #6fb236, #4f9220); border: none; cursor: pointer;
  padding: 16px 24px; border-radius: 13px;
  box-shadow: 0 14px 28px rgba(77,144,32,.3);
  transition: transform .15s ease, box-shadow .2s ease;
}
.form__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(77,144,32,.42); }
.form__btn svg { transition: transform .2s ease; }
.form__btn:hover svg { transform: translateX(3px); }
.form__status { margin: 4px 0 14px; padding: 12px 15px; border-radius: 12px; font-family: "Manrope", sans-serif; font-size: 14px; line-height: 1.5; }
.form__status--ok { background: rgba(122,193,67,.12); border: 1px solid rgba(122,193,67,.3); color: #2f7d1f; }
.form__status--err { background: rgba(224,49,49,.08); border: 1px solid rgba(224,49,49,.25); color: #c92a2a; }
.form__contact { margin-top: 22px; font-size: 16px; font-weight: 600; }
.form__contact a { color: var(--green-deep); }

@media (max-width: 1024px) {
  .contact { padding: 50px 24px 80px; }
  .contact__title { font-size: 50px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__panel { padding: 40px 28px; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 22px; }
}

/* ===== EXCHANGE / CALCULATOR ===== */
.exchange { max-width: 720px; margin: 0 auto; padding: 64px 24px 110px; }
.exchange__head { text-align: center; margin-bottom: 40px; }
.exchange__head .crypto__label { margin-bottom: 18px; }
.exchange__title { font-size: 60px; font-weight: 700; letter-spacing: -1.8px; }
.exchange__sub { margin-top: 16px; font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 52ch; margin-left: auto; margin-right: auto; }

.calc {
  position: relative;
  background: #fff; border: 1px solid rgba(20,24,26,.07); border-radius: 28px;
  padding: 30px 32px 26px; box-shadow: 0 40px 80px rgba(30,50,20,.12);
}
.calc__field {
  background: #f5f6f1; border: 1.6px solid transparent; border-radius: 18px;
  padding: 18px 22px; transition: border-color .15s, background .15s, box-shadow .15s;
}
.calc__field:focus-within { background: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgba(122,193,67,.12); }
.calc__lab { display: block; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.calc__row { display: flex; align-items: center; gap: 16px; }
.calc__input {
  flex: 1; min-width: 0; border: none; background: transparent;
  font-family: "Sora", sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -.6px; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.calc__input:focus { outline: none; }
.calc__input::-webkit-outer-spin-button, .calc__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* custom currency dropdown */
.cur { position: relative; flex: none; }
.cur__btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: #fff; border: 1px solid rgba(20,24,26,.1); border-radius: 14px;
  padding: 9px 14px 9px 10px; font-family: "Sora", sans-serif;
  box-shadow: 0 4px 12px rgba(30,50,20,.06); transition: border-color .15s, box-shadow .15s;
}
.cur__btn:hover { border-color: rgba(122,193,67,.5); box-shadow: 0 6px 16px rgba(30,50,20,.1); }
.cur__ico { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex: none; display: grid; place-items: center; }
.cur__ico svg { width: 100%; height: 100%; display: block; }
.fiatico { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; }
.cur__code { font-size: 16px; font-weight: 700; letter-spacing: -.2px; }
.cur__chev { color: var(--muted); transition: transform .2s ease; }
.cur.is-open .cur__chev { transform: rotate(180deg); }
.cur__menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 20; width: 256px;
  background: #fff; border: 1px solid rgba(20,24,26,.08); border-radius: 16px;
  box-shadow: 0 26px 56px rgba(30,50,20,.18); padding: 8px; overflow: hidden;
}
.cur__search {
  display: flex; align-items: center; gap: 9px; padding: 9px 12px; margin-bottom: 6px;
  background: #f5f6f1; border-radius: 11px;
}
.cur__searchinput {
  flex: 1; min-width: 0; border: none; background: transparent;
  font-family: "Manrope", sans-serif; font-size: 14px; color: var(--ink);
}
.cur__searchinput:focus { outline: none; }
.cur__list { max-height: 280px; overflow-y: auto; }
.cur__list::-webkit-scrollbar { width: 8px; }
.cur__list::-webkit-scrollbar-thumb { background: rgba(20,24,26,.16); border-radius: 8px; }
.coinimg { width: 30px; height: 30px; border-radius: 50%; display: block; object-fit: cover; }
.cur__empty { padding: 18px 12px; text-align: center; font-family: "Manrope", sans-serif; font-size: 14px; color: var(--muted); }
.cur__opt {
  display: flex; align-items: center; gap: 12px; width: 100%; cursor: pointer;
  background: transparent; border: none; border-radius: 11px; padding: 10px 12px; text-align: left;
  transition: background .12s;
}
.cur__opt:hover { background: rgba(122,193,67,.1); }
.cur__opt.is-active { background: rgba(122,193,67,.14); }
.cur__opt-text { display: flex; flex-direction: column; line-height: 1.2; }
.cur__opt-text b { font-family: "Sora", sans-serif; font-size: 15px; font-weight: 700; }
.cur__opt-text small { font-family: "Manrope", sans-serif; font-size: 12.5px; color: var(--muted); }

.calc__swap {
  display: grid; place-items: center; margin: -12px auto; position: relative; z-index: 2;
  width: 50px; height: 50px; border-radius: 15px; cursor: pointer;
  color: #fff; background: linear-gradient(135deg, #7cbf3a, #4f9220); border: 4px solid #fff;
  box-shadow: 0 12px 24px rgba(77,144,32,.32);
  transition: transform .25s ease, box-shadow .2s ease;
}
.calc__swap:hover { transform: rotate(180deg) scale(1.05); box-shadow: 0 16px 30px rgba(77,144,32,.42); }

.calc__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.calc__rate { font-family: "Sora", sans-serif; font-size: 19px; font-weight: 700; letter-spacing: -.3px; }
.calc__updated { display: inline-flex; align-items: center; gap: 8px; font-family: "Manrope", sans-serif; font-size: 13px; color: var(--muted); }
.calc__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(122,193,67,.22); animation: pulse 2s ease-in-out infinite; }
.calc__note { margin-top: 16px; font-size: 13px; line-height: 1.6; color: var(--muted); }

@media (max-width: 560px) {
  .exchange__title { font-size: 42px; }
  .calc { padding: 24px 20px 22px; }
  .calc__input { font-size: 26px; }
  .cur__menu { width: 210px; }
}

/* ===== EXCHANGE CTA (calculator) ===== */
.exch__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px;
  font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #6fb236, #4f9220); border-radius: 16px; padding: 17px 24px;
  box-shadow: 0 16px 32px rgba(77,144,32,.32);
  transition: transform .15s ease, box-shadow .2s ease;
}
.exch__cta:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(77,144,32,.44); }
.exch__cta svg { transition: transform .2s ease; }
.exch__cta:hover svg { transform: translateX(3px); }

/* ===== KYC / EXCHANGE REQUEST ===== */
.kyc { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 110px; }
.kyc__head { text-align: center; margin-bottom: 44px; }
.kyc__title { font-size: 56px; font-weight: 700; letter-spacing: -1.6px; }
.kyc__subtitle { margin-top: 14px; font-size: 19px; color: var(--muted); }
.kyc__grid { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: start; max-width: 1040px; margin: 0 auto; }

.kyc__summary {
  position: relative; overflow: hidden; border-radius: 24px; padding: 30px 28px; color: #fff;
  background:
    radial-gradient(110% 130% at 80% 12%, #9bd45f 0%, transparent 55%),
    linear-gradient(135deg, #4d9020 0%, #6fb236 60%, #8fc94f 100%);
}
.kyc__sumlab { font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; opacity: .85; }
.kyc__sumrow { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.kyc__sumcap { font-family: "Manrope", sans-serif; font-size: 13px; opacity: .85; }
.kyc__sumrow strong { font-family: "Sora", sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -.5px; }
.kyc__sumarrow { margin: 12px 0; opacity: .8; }
.kyc__sumrate { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.25); font-weight: 700; }
.kyc__sumnote { margin-top: 10px; font-size: 12.5px; opacity: .85; line-height: 1.5; }

.kyc__form {
  background: #fff; border: 1px solid rgba(20,24,26,.07); border-radius: 24px;
  padding: 32px 32px 28px; box-shadow: 0 34px 70px rgba(30,50,20,.1);
}
.kyc__form select.field { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235c655a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.upload__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 6px 0 8px; }
.upload {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  border: 1.6px dashed rgba(20,24,26,.18); border-radius: 16px; padding: 18px 18px;
  background: #f7f8f4; transition: border-color .15s, background .15s;
}
.upload:hover { border-color: var(--green); background: rgba(122,193,67,.08); }
.upload.is-filled { border-style: solid; border-color: var(--green); background: rgba(122,193,67,.1); }
.upload__ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--green-deep); background: rgba(122,193,67,.16); }
.upload__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.upload__txt strong { font-size: 15px; font-weight: 700; }
.upload__txt small { font-family: "Manrope", sans-serif; font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.kyc__done { text-align: center; max-width: 520px; margin: 20px auto 0; grid-column: 1 / -1; }
.kyc__donecircle { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: linear-gradient(135deg, #6fb236, #4f9220); box-shadow: 0 16px 32px rgba(77,144,32,.34); }
.kyc__donetitle { font-size: 34px; font-weight: 700; letter-spacing: -.8px; }
.kyc__donetext { margin: 14px 0 24px; font-size: 17px; line-height: 1.6; color: var(--muted); }

@media (max-width: 880px) {
  .kyc__grid { grid-template-columns: 1fr; }
  .kyc__title { font-size: 42px; }
  .upload__row { grid-template-columns: 1fr; }
}

/* ===== DASHBOARD ===== */
.dash, .admin { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 100px; }
.dash__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.dash__title { font-size: 44px; font-weight: 700; letter-spacing: -1.2px; }
.dash__sub { margin-top: 8px; font-size: 16px; color: var(--muted); }
.dash__banner {
  margin-bottom: 22px; padding: 14px 18px; border-radius: 14px;
  background: rgba(122,193,67,.1); border: 1px solid rgba(122,193,67,.28);
  font-family: "Manrope", sans-serif; font-size: 14px; color: #3a5a1e;
}
.dash__banner code { background: rgba(20,24,26,.06); padding: 1px 6px; border-radius: 5px; }
.dash__list { display: flex; flex-direction: column; gap: 14px; }
.dash__empty { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; color: var(--muted); }
.dash__empty a { display: inline-block; margin-top: 8px; }

.txn {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 26px;
  box-shadow: 0 10px 26px rgba(30,50,20,.05);
}
.txn__main { display: flex; align-items: center; gap: 14px; font-family: "Sora", sans-serif; font-size: 19px; }
.txn__arrow { color: var(--muted); }
.txn__meta { font-family: "Manrope", sans-serif; font-size: 13.5px; color: var(--muted); }

.badge { display: inline-flex; align-items: center; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; padding: 6px 13px; border-radius: 999px; }
.badge--amber { background: #fff4e0; color: #b8740a; }
.badge--blue  { background: #e4eefc; color: #2563c9; }
.badge--green { background: #e4f5da; color: #2f7d1f; }
.badge--red   { background: #fde4e4; color: #c92a2a; }

/* ===== ADMIN ===== */
.admin__tabs { display: flex; gap: 8px; margin: 0 0 18px; flex-wrap: wrap; }
.admin__tab {
  font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); transition: all .18s ease;
}
.admin__tab:hover { color: var(--ink); border-color: rgba(20,24,26,.18); }
.admin__tab.is-active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.admin__tablewrap { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: auto; box-shadow: 0 10px 26px rgba(30,50,20,.05); }
.admin__table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin__table th, .admin__table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: middle; }
.admin__table th { font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); background: #faf9f4; }
.admin__table tr:last-child td { border-bottom: none; }
.admin__table small { color: var(--muted); }
.admin__doc { font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 600; color: var(--green-deep); background: rgba(122,193,67,.12); border: none; border-radius: 8px; padding: 6px 11px; cursor: pointer; }
.admin__doc:hover { background: rgba(122,193,67,.2); }
.admin__status { padding: 8px 12px; font-size: 14px; }

/* admin toolbar */
.admin__toolbar { display: flex; gap: 10px; margin: 0 0 16px; flex-wrap: wrap; align-items: center; }
.admin__search { flex: 1 1 280px; min-width: 200px; }
.admin__filter { flex: 0 0 auto; width: auto; min-width: 180px; cursor: pointer; }
.admin__export {
  flex: 0 0 auto; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 11px 18px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: all .18s ease;
}
.admin__export:hover { border-color: var(--green-deep); color: var(--green-deep); }
.dash__sub strong { color: var(--green-deep); font-weight: 700; }

/* document preview modal */
.docmodal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.docmodal[hidden] { display: none; }
.docmodal__backdrop { position: absolute; inset: 0; background: rgba(15,20,16,.55); backdrop-filter: blur(3px); }
.docmodal__card {
  position: relative; z-index: 1; width: 100%; max-width: 760px; max-height: 88vh; display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 70px rgba(20,30,15,.35);
}
.docmodal__bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.docmodal__title { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15px; }
.docmodal__actions { display: flex; align-items: center; gap: 14px; }
.docmodal__open { font-family: "Manrope", sans-serif; font-size: 13.5px; font-weight: 600; color: var(--green-deep); }
.docmodal__open:hover { text-decoration: underline; }
.docmodal__close { font-size: 26px; line-height: 1; border: none; background: none; color: var(--muted); cursor: pointer; padding: 0 4px; }
.docmodal__close:hover { color: var(--ink); }
.docmodal__body { padding: 18px; overflow: auto; background: var(--cream); display: flex; justify-content: center; }
.docmodal__img { max-width: 100%; height: auto; border-radius: 8px; }
.docmodal__frame { width: 100%; height: 70vh; border: none; background: #fff; border-radius: 8px; }

@media (max-width: 700px) {
  .dash__title { font-size: 34px; }
  .txn { grid-template-columns: 1fr; gap: 10px; }
  .admin__tabs { gap: 6px; }
  .admin__tab { padding: 8px 15px; font-size: 13px; }
  .admin__tablewrap { -webkit-overflow-scrolling: touch; }
  .admin__table th, .admin__table td { padding: 13px 14px; }
}

/* ===== 404 ===== */
.notfound { max-width: 720px; margin: 0 auto; padding: 110px 24px 130px; text-align: center; }
.notfound__code { font-family: "Sora", sans-serif; font-size: 120px; font-weight: 800; line-height: 1; letter-spacing: -4px; color: var(--green); }
.notfound__title { font-size: 40px; font-weight: 700; letter-spacing: -1.2px; margin-top: 6px; }
.notfound__text { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--muted); }
.notfound__actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) { .notfound { padding: 80px 20px 100px; } .notfound__code { font-size: 88px; } }

/* ===== ANTI-SPAM HONEYPOT (visually hidden, off-screen — bots fill it, humans never see it) ===== */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ===== COOKIE NOTICE ===== */
.cookiebar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 16px 20px; border-radius: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(20,24,26,.08);
  box-shadow: 0 16px 44px rgba(30,50,20,.16), 0 2px 8px rgba(30,50,20,.06);
  opacity: 0; transform: translateY(14px); transition: opacity .26s ease, transform .26s ease;
}
.cookiebar.is-in { opacity: 1; transform: translateY(0); }
.cookiebar__text { font-family: "Manrope", sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--muted); flex: 1 1 280px; }
.cookiebar__text a { color: var(--green-deep); font-weight: 600; }
.cookiebar__text a:hover { text-decoration: underline; }
.cookiebar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookiebar__btn {
  font-family: "Manrope", sans-serif; font-size: 13.5px; font-weight: 600; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); transition: all .18s ease; white-space: nowrap;
}
.cookiebar__btn--ghost { background: #fff; color: var(--muted); }
.cookiebar__btn--ghost:hover { color: var(--ink); border-color: rgba(20,24,26,.2); }
.cookiebar__btn--solid { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.cookiebar__btn--solid:hover { background: #4f8a26; }
@media (max-width: 560px) {
  .cookiebar { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .cookiebar__actions { width: 100%; }
  .cookiebar__btn { flex: 1; }
}

/* ===== LEGAL PAGES ===== */
.legal { position: relative; max-width: 920px; margin: 0 auto; padding: 70px 64px 110px; }
.legal__title { font-size: 64px; font-weight: 700; letter-spacing: -2px; }
.legal__meta { margin-top: 14px; font-family: "Manrope", sans-serif; font-size: 14px; color: var(--muted); }
.legal__intro { margin-top: 30px; font-size: 19px; line-height: 1.7; color: #2c322c; }
.legal__defs {
  margin-top: 26px; padding: 22px 26px; border-radius: 16px;
  background: rgba(122,193,67,.08); border: 1px solid rgba(122,193,67,.22);
}
.legal__defs h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.legal__defs ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.legal__defs li { font-size: 15.5px; line-height: 1.5; color: #2c322c; }
.legal__defs strong { color: var(--ink); }
.legal h2 {
  font-size: 26px; font-weight: 700; letter-spacing: -.4px;
  margin: 46px 0 14px; padding-top: 26px; border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: none; }
.legal p { font-size: 17px; line-height: 1.75; color: #34392f; margin-bottom: 14px; }
.legal ul.legal__list { margin: 6px 0 16px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal ul.legal__list li { position: relative; padding-left: 24px; font-size: 17px; line-height: 1.6; color: #34392f; }
.legal ul.legal__list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.legal a { color: var(--green-deep); font-weight: 600; }
.legal__note { margin-top: 40px; font-size: 14px; color: var(--muted); }
@media (max-width: 1024px) {
  .legal { padding: 50px 24px 80px; }
  .legal__title { font-size: 44px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--cream); color: var(--ink); padding: 64px 64px 50px; text-align: center; }
.footer__nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 34px;
  font-size: 17px; font-weight: 500;
}
.footer__nav a { transition: color .15s; }
.footer__nav a:hover { color: var(--green-deep); }
.footer__social { display: flex; justify-content: center; gap: 26px; margin: 30px 0 6px; }
.footer__social a {
  color: var(--green); display: grid; place-items: center;
  transition: color .15s, transform .15s;
}
.footer__social a:hover { color: var(--green-deep); transform: translateY(-2px); }
.footer__copy { margin-top: 18px; font-size: 15px; color: #2c322c; }
.footer__legal {
  max-width: 900px; margin: 18px auto 0;
  font-size: 13.5px; line-height: 1.7; color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 18px 24px; }
  .nav { gap: 22px; }
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: 56px 24px; }
  .hero__title { font-size: 54px; letter-spacing: -1.5px; }
  .hero__subtitle { font-size: 25px; }
  .hero__visual { min-height: 460px; }
  .about, .why { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .about__visual { margin-left: 28px; }
  .section-title { font-size: 42px; }
  .mission { padding: 72px 24px; }
  .mission__title { font-size: 46px; }
  .services { padding: 30px 24px 80px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(2) { border-right: none; }
  .svc:nth-child(1), .svc:nth-child(2) { border-bottom: 1px solid var(--line); }
  .join { padding: 56px 24px; }
  .join__link { font-size: 56px; letter-spacing: -2px; }
  .join__link svg { width: 42px; height: 42px; }
  .footer { padding: 50px 24px 40px; }
  .footer__nav { gap: 22px; font-size: 16px; }
}
@media (max-width: 560px) {
  .nav { display: none; }
  .hero__title { font-size: 42px; }
  .services__grid { grid-template-columns: 1fr; }
  .svc { border-right: none; border-bottom: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr; }
  .card--front { left: 24px; }
}

/* hamburger toggle (hidden on desktop, injected by app.js) */
.navtoggle {
  display: none; width: 44px; height: 44px; flex: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: rgba(20,24,26,.05); border: 1px solid rgba(20,24,26,.07);
  border-radius: 13px; cursor: pointer;
}
.navtoggle span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.navbar.is-open .navtoggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.is-open .navtoggle span:nth-child(2) { opacity: 0; }
.navbar.is-open .navtoggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== MOBILE / RESPONSIVE ===================== */
@media (max-width: 860px) {
  /* navbar: brand + hamburger; everything else collapses into a dropdown */
  .navbar {
    position: sticky; top: 0; margin: 0; max-width: none;
    border-radius: 0 0 20px 20px;
    display: flex; flex-wrap: wrap; align-items: center; gap: 0;
    padding: 12px 18px; box-shadow: 0 8px 24px rgba(30,50,20,.1);
  }
  .brand { order: 1; margin-right: auto; }
  .navtoggle { display: inline-flex; order: 2; }

  /* collapsed by default */
  .nav, .authbtns, .navbar #logoutBtn { display: none; order: 5; width: 100%; }
  .nav { position: static; transform: none; }

  /* expanded */
  .navbar.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line);
  }
  .navbar.is-open .nav__link { font-size: 16px; padding: 13px 14px; border-radius: 12px; }
  .navbar.is-open .authbtns { display: inline-flex; width: 100%; margin-top: 12px; }
  .navbar.is-open .authbtns .authbtn { flex: 1; justify-content: center; padding: 12px; }
  .navbar.is-open #logoutBtn { display: inline-flex; width: 100%; justify-content: center; margin-top: 10px; padding: 12px; }

  html { scroll-padding-top: 86px; }
  [id] { scroll-margin-top: 86px; }
}

@media (max-width: 760px) {
  /* tighter side padding everywhere */
  .about, .why, .crypto, .services, .mission, .kyc, .contact, .exchange, .legal, .dash, .admin { padding-left: 20px; padding-right: 20px; }
  .join, .footer { padding-left: 22px; padding-right: 22px; }
  .hero__content { padding-left: 24px; padding-right: 24px; }
  .section-title { font-size: 38px; }

  /* hero — clean, contained composition (soft green circle + cards, like desktop) */
  .hero { min-height: auto; padding-bottom: 30px; overflow: hidden; }
  .hero__title { font-size: 44px; }
  .hero__subtitle { font-size: 22px; }
  .hero__visual { position: relative; width: 100%; height: 420px; min-height: 0; overflow: hidden; }
  .blob--1 { width: 360px; height: 360px; left: 50%; top: 52%; right: auto; transform: translate(-50%, -50%); }
  .blob--2, .blob--3, .bubbles { display: none; }
  .accent-ring { right: 34px; top: 28px; width: 108px; height: 108px; }
  .card-glow { left: 56px; top: 150px; width: 280px; height: 280px; }
  .card { width: 264px; height: 166px; }
  .card--front { top: 86px; left: 30px; }
  .card--back { top: 206px; left: 96px; }
  .hero__corner-dots { left: 12px; bottom: 12px; width: 55%; }

  /* crypto -> single column */
  .crypto { grid-template-columns: 1fr; gap: 34px; padding-top: 64px; padding-bottom: 64px; }
  .crypto__visual { min-height: auto; }
  .ticker { max-width: 100%; }

  /* about -> photo then stacked rate cards */
  .about { gap: 44px; }
  .about__glow { display: none; }
  .about__photo { height: 280px; }
  .rate { position: static; left: auto !important; top: auto !important; width: 100%; margin-top: 12px; }
  .about__text .section-title { font-size: 38px; }
  .lead { font-size: 18.5px; }

  /* mission + join */
  .mission { padding-top: 64px; padding-bottom: 64px; }
  .mission__title { font-size: 40px; }
  .mission__text { font-size: 21px; }
  .join__link { font-size: 46px; letter-spacing: -1.5px; gap: 12px; }
  .join__link svg { width: 38px; height: 38px; }

  /* services */
  .services__sub { font-size: 19px; }

  /* exchange / calc */
  .exchange__title { font-size: 40px; }
  .calc { padding: 22px 18px 20px; }
  .calc__input { font-size: 24px; }
  .calc__meta { gap: 8px; }

  /* kyc */
  .kyc__title { font-size: 36px; }

  /* contact */
  .contact__title { font-size: 40px; }
  .contact__panel { min-height: auto; }

  /* dashboard / admin */
  .dash__title { font-size: 32px; }
  .legal__title { font-size: 38px; }

  /* modal */
  .modal__actions { flex-direction: column; }
  .modal__btn { width: 100%; }
}

@media (max-width: 460px) {
  .nav__link { font-size: 13px; padding: 6px 9px; }
  .section-title { font-size: 32px; }
  .hero__title { font-size: 36px; }
  .hero__subtitle { font-size: 18px; }
  .hero__visual { height: 380px; }
  .blob--1 { width: 320px; height: 320px; }
  .card-glow { left: 40px; top: 132px; width: 244px; height: 244px; }
  .card { width: 238px; height: 150px; }
  .card--front { top: 74px; left: 22px; }
  .card--back { top: 184px; left: 82px; }
  .mission__title { font-size: 32px; }
  .join__link { font-size: 36px; }
  .exchange__title, .kyc__title, .contact__title { font-size: 32px; }
  .auth__title { font-size: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .cur__menu { width: 200px; }
}

/* ===== SUCCESS MODAL (exchange submitted) ===== */
.okmodal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.okmodal[hidden] { display: none; }
.okmodal__backdrop { position: absolute; inset: 0; background: rgba(15,20,16,.55); backdrop-filter: blur(4px); }
.okmodal__card {
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: 90vh; overflow: auto;
  background: #fff; border-radius: 24px; padding: 38px 34px 30px; text-align: center;
  box-shadow: 0 30px 80px rgba(20,30,15,.35); animation: okpop .42s cubic-bezier(.2,.9,.3,1.15);
}
@keyframes okpop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.okmodal__check {
  width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%;
  background: linear-gradient(135deg, #8cc63f, #5a9e2c); display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(90,158,44,.4); animation: okpopin .5s cubic-bezier(.2,.9,.3,1.5);
}
@keyframes okpopin { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.okmodal__check svg { width: 46px; height: 46px; }
.okmodal__tick { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 36; stroke-dashoffset: 36; animation: oktick .4s .26s ease forwards; }
@keyframes oktick { to { stroke-dashoffset: 0; } }
.okmodal__title { font-size: 27px; font-weight: 700; letter-spacing: -.6px; }
.okmodal__text { margin-top: 12px; font-family: "Manrope", sans-serif; font-size: 15px; line-height: 1.6; color: var(--muted); }
.okmodal__text strong { color: var(--green-deep); }
.okmodal__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* BRL payment details */
.paybox { margin: 24px 0 4px; text-align: left; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.paybox__lead { font-family: "Manrope", sans-serif; font-size: 14px; color: var(--ink); line-height: 1.55; margin-bottom: 16px; }
.paybox__lead strong { color: var(--green-deep); }
.paybox__tag { display: inline-block; font-family: "Manrope", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: #fff; background: var(--green-deep); padding: 4px 11px; border-radius: 999px; margin-bottom: 8px; }
.paybox__row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.paybox__row:last-child { border-bottom: none; }
.paybox__lab { font-family: "Manrope", sans-serif; font-size: 12.5px; color: var(--muted); flex: 0 0 88px; }
.paybox__val { font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); flex: 1; word-break: break-word; }
.paybox__copy { font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 600; color: var(--green-deep); background: rgba(122,193,67,.14); border: none; border-radius: 8px; padding: 6px 11px; cursor: pointer; flex: none; transition: all .15s ease; }
.paybox__copy:hover { background: rgba(122,193,67,.26); }
.paybox__copy.is-done { background: var(--green-deep); color: #fff; }
.paybox__or { display: flex; align-items: center; gap: 12px; font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; color: var(--muted); margin: 16px 0 12px; }
.paybox__or::before, .paybox__or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.paybox__note { margin-top: 16px; font-family: "Manrope", sans-serif; font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.paybox__note a { color: var(--green-deep); font-weight: 600; }
@media (max-width: 480px) { .okmodal__card { padding: 30px 20px 24px; } .paybox__lab { flex-basis: 74px; } }
