/* ============ Tokens ============ */
:root {
  --cream: #F0EEE8;
  --panel: #F6F5F1;
  --ink: #0E100F;
  --ink-soft: #1C1F1D;
  --gray: #5A5F5A;
  --gray-light: #979B92;
  --line: #E2E0DA;
  --green: #00895C;
  --green-deep: #006645;
  --green-bright: #18E299;
  --mint: #D4FAE8;
  --red: #B42318;
  --white: #fff;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Source Serif 4", "Times New Roman", Georgia, serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ============ Type ============ */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.body { font-size: 1.02rem; line-height: 1.55; }
.muted { color: var(--gray); }
/* ============ Store badges (official artwork) ============ */
.store-badge {
  display: inline-block;
  transition: transform .2s var(--ease-out-expo);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { display: block; width: auto; }
.store-badge img[src*="google-play"] { border-radius: 8px; }
.badge-lg img { height: 54px; }
.badge-sm img { height: 36px; }

/* ============ Referral notice ============ */
.referral-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  margin: 16px 24px 0;
  border-radius: 18px;
  border: 1px solid var(--mint);
  background: color-mix(in srgb, var(--mint) 40%, var(--white));
  padding: 12px 20px;
  font-size: 0.92rem;
  text-align: center;
}
.referral-notice strong { letter-spacing: 1px; }
.referral-notice button {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 78px;
  padding: 0 24px;
}
@media (min-width: 1200px) { .site-header { height: 100px; padding: 0 40px; } }

.header-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.72);
  mask-image: linear-gradient(to bottom, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent);
}

.header-nav {
  position: relative;
  max-width: 1336px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-logo { display: flex; align-items: center; gap: 9px; transition: opacity .2s; }
.header-logo:hover { opacity: 0.7; }
.header-logo img { height: 25px; width: auto; }
.header-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.header-links { display: none; }
@media (min-width: 900px) {
  .header-links { display: flex; gap: 34px; justify-self: center; }
}
.header-links a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--gray-light);
  transition: color .2s;
  line-height: 1;
}
.header-links a:hover, .header-links a.is-active { color: var(--green); }

.header-logo { grid-column: 1; }
.header-links { grid-column: 2; }
.header-actions { grid-column: 3; display: flex; gap: 10px; justify-self: end; align-items: center; }
.header-actions .store-badge { display: none; }
@media (min-width: 640px) { .header-actions .store-badge { display: inline-block; } }

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  width: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle i {
  display: block;
  height: 1.5px;
  width: 16px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-out-expo);
}
.drawer-open .menu-toggle i:first-child { transform: translateY(3.25px) rotate(45deg); }
.drawer-open .menu-toggle i:last-child { transform: translateY(-3.25px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(14,16,15,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-open .drawer-scrim { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 88px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out-expo);
}
.drawer-open .drawer { transform: translateX(0); box-shadow: -20px 0 60px rgba(14,16,15,0.12); }
.drawer-open body { overflow: hidden; }
.drawer-links { display: flex; flex-direction: column; gap: 20px; }
.drawer-links a {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.drawer-links a.is-active { color: var(--green); }
.drawer-badges { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

/* ============ Hero ============ */
.hero { padding-top: 52px; }
@media (min-width: 768px) { .hero { padding-top: 68px; } }

.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--cream);
  padding: 7px 16px;
  font-size: 0.85rem;
}
.badge-muted { color: var(--gray); }
.badge-logo { height: 18px; width: 18px; border-radius: 4px; object-fit: contain; }
.badge-name { font-weight: 600; }

.hero-title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  top: 0.1em;
  bottom: 0;
  border-radius: 0.16em;
  background: var(--mint);
  transform: rotate(-1.5deg) scaleX(0);
  transform-origin: left center;
  animation: hl-sweep 0.7s var(--ease-out-expo) 1.15s forwards;
}
@keyframes hl-sweep {
  to { transform: rotate(-1.5deg) scaleX(1); }
}

.hero-sub {
  margin-top: 20px;
  max-width: 460px;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--gray);
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-note { margin-top: 18px; font-size: 0.92rem; color: var(--gray-light); }

/* entrance stagger */
.stagger {
  opacity: 0;
  transform: translateY(22px);
  animation: rise-in 1.1s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--i) * 110ms);
}
@keyframes rise-in {
  to { opacity: 1; transform: translateY(0); }
}

/* hero phone */
.hero-phone-stage {
  position: relative;
  margin: -6px auto 0;
  max-width: 1180px;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
}
.hero-phone {
  width: min(410px, 78vw);
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(140px) rotateX(28deg) scale(0.96);
  transform-origin: 50% 100%;
  animation: phone-rise 1.6s var(--ease-out-expo) 0.45s forwards;
  will-change: transform;
}
@keyframes phone-rise {
  to { opacity: 1; transform: translateY(0) rotateX(var(--tilt, 12deg)) scale(1); }
}
.hero-phone.settled {
  animation: none;
  opacity: 1;
  transform: translateY(0) rotateX(var(--tilt, 12deg)) scale(1);
}

.phone-img {
  width: 100%;
  height: auto;
  aspect-ratio: 886 / 1800;
  filter: drop-shadow(0 40px 60px rgba(14,16,15,0.30)) drop-shadow(0 12px 24px rgba(14,16,15,0.18));
}

.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

/* ============ Sections ============ */
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 108px 0; } }
.bg-white { background: var(--white); }
.bg-panel { background: var(--panel); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ Testimonials ============ */
.testimonials { overflow: hidden; }
.marquee-wrap { margin-top: 44px; }
@media (min-width: 768px) { .marquee-wrap { margin-top: 60px; } }

.marquee {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.marquee:active { cursor: grabbing; }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.t-card {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
  padding: 24px;
  transition: border-color .2s, transform .3s var(--ease-out-expo);
}
.t-card:hover { border-color: rgba(0,0,0,0.16); transform: translateY(-2px); }
.t-stars { display: flex; gap: 4px; color: var(--green); }
.t-stars svg { height: 13px; width: 13px; }
.t-quote { margin-top: 16px; font-size: 0.95rem; line-height: 1.55; color: rgba(14,16,15,0.78); }
/* ============ Features bento ============ */
.features-title { max-width: 640px; margin-bottom: 44px; }

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
}

.bento-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 28px;
  background: var(--cream);
  padding: 32px 24px;
  overflow: hidden;
}
@media (min-width: 640px) { .bento-cell { padding: 40px; } }
.bento-lede { font-size: 0.98rem; line-height: 1.6; color: var(--gray); max-width: 480px; }

/* cash screen peeking from the deposits cell */
.bento-screen-cell { padding-bottom: 0; }
.bento-screen {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.bento-screen img {
  width: min(300px, 82%);
  height: auto;
  aspect-ratio: 886 / 1800;
  margin-bottom: -46%;
  filter: drop-shadow(0 24px 40px rgba(14,16,15,0.22));
}

/* ============ Comparison bars ============ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1000px) {
  .compare-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
}
.compare-lede { margin-top: 20px; max-width: 440px; font-size: 1.02rem; line-height: 1.6; color: var(--gray); }

.bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  --maxbar: 220px;
}
@media (min-width: 768px) { .bars { gap: 24px; --maxbar: 320px; } }
.bar-col { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.bar-icons { display: flex; align-items: center; height: 47px; }
@media (min-width: 768px) { .bar-icons { height: 92px; } }
.bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px; width: 36px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  margin-right: -8px;
}
@media (min-width: 768px) { .bar-icon { height: 44px; width: 44px; } }
.bar-icon img { height: 100%; width: 100%; object-fit: contain; padding: 6px; }
.bar-icon-gold { background: #FBF6EA; }
.bar-icon-gold svg { height: 26px; width: 26px; }
.bar-icon-nafa { background: var(--ink); border-color: transparent; }
.bar-icon-nafa img { padding: 9px; }

.bar {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  transform-origin: bottom;
  transform: scaleY(0.05);
  transition: transform 1.4s var(--ease-out-expo);
}
@media (min-width: 768px) { .bar { border-radius: 22px; } }
.bars.in-view .bar { transform: scaleY(1); }
.bar-gray  { background: #DFDDD6; height: calc(var(--maxbar) * 0.24); }
.bar-gray2 { background: #CDCBC2; height: calc(var(--maxbar) * 0.52); }
.bar-green { background: linear-gradient(180deg, var(--green), var(--green-deep)); height: var(--maxbar); }
.bar-rate {
  position: absolute;
  bottom: 8px; left: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}
@media (min-width: 768px) { .bar-rate { bottom: 14px; left: 14px; font-size: 1rem; } }
.bar-green .bar-rate { color: var(--white); }
.bar-label { margin-top: 11px; font-size: 0.78rem; color: var(--gray); }
@media (min-width: 768px) { .bar-label { margin-top: 12px; font-size: 0.95rem; white-space: nowrap; } }
.bar-label-strong { font-weight: 600; color: var(--ink); }

/* ============ Trust ============ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1000px) {
  .trust-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.2fr); gap: 96px; }
}

.trust-lede {
  margin-top: 20px;
  max-width: 420px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--gray);
}

.trust-chase {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 420px;
}
.trust-chase-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 14px;
}
.trust-chase-logo { height: 34px; width: auto; object-fit: contain; }
.trust-chase p {
  margin-top: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-light);
}

.trust-ledger { display: flex; flex-direction: column; }
.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}
.trust-row + .trust-row { border-top: 1px solid var(--line); }
.trust-row-logo {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}
.trust-row h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.trust-row p {
  margin-top: 5px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
  max-width: 460px;
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 64px; }
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 768px) { .faq-q { padding: 16px 24px; } }
.faq-q > span:first-child {
  font-size: 0.97rem;
  font-weight: 550;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.faq-toggle {
  position: relative;
  height: 32px; width: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-toggle i {
  position: absolute;
  height: 1.5px;
  width: 14px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease-out-expo);
}
.faq-toggle i:last-child { transform: rotate(90deg); }
.faq-item.open .faq-toggle i:last-child { transform: rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease-out-expo);
}
.faq-a > div {
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--gray);
}
@media (min-width: 768px) { .faq-a > div { padding: 0 24px; } }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { padding-bottom: 20px; }

/* ============ CTA ============ */
.section-cta { position: relative; }
.cta-card {
  display: flex;
  flex-direction: column;
  border-radius: 36px;
}
@media (min-width: 1000px) { .cta-card { flex-direction: row; align-items: stretch; min-height: 440px; } }

.cta-copy {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 48px;
}
@media (min-width: 1000px) {
  .cta-copy {
    order: 1;
    flex: 1;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding: 64px;
  }
}
.cta-copy p { margin-top: 12px; }
.cta-ctas {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) { .cta-ctas { flex-direction: row; } }

.cta-media {
  order: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 48px 0;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .cta-media { order: 2; width: 42%; padding: 56px 0 0; }
}
.cta-phone {
  width: min(280px, 68vw);
  height: auto;
  aspect-ratio: 886 / 1800;
  filter: drop-shadow(0 30px 50px rgba(14,16,15,0.26));
  transform: rotate(3deg);
}

/* ============ Download page ============ */
.download-page,
.notfound-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}
.download-page {
  min-height: calc(100svh - 78px);
  padding: 24px 24px 102px;
}
@media (min-width: 1200px) {
  .download-page { min-height: calc(100svh - 100px); padding-bottom: 124px; }
}
.notfound-page {
  min-height: 100svh;
  padding: 24px;
}
.download-page .hero-sub, .notfound-page .hero-sub { margin-top: 18px; }
.download-page .hero-ctas, .notfound-page .hero-ctas { margin-top: 36px; }

.notfound-home {
  display: inline-block;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  transition: transform .2s var(--ease-out-expo), opacity .2s;
}
.notfound-home:hover { transform: translateY(-2px); opacity: 0.9; }

/* ============ Footer ============ */
.site-footer {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 64px;
}
@media (min-width: 900px) {
  .footer-top { flex-direction: row; justify-content: space-between; padding-top: 80px; }
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.footer-urdu { color: var(--green); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 32px 48px;
}
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, auto); gap: 64px; } }
.footer-col { display: flex; flex-direction: column; font-size: 0.95rem; font-weight: 550; line-height: 1.75; letter-spacing: -0.005em; }
.footer-col span { color: var(--ink); }
.footer-col a { color: var(--gray-light); transition: color .2s; }
.footer-col a:hover { color: var(--ink); }

.footer-watermark {
  font-family: var(--font-display);
  font-size: clamp(11rem, 34vw, 30rem);
  font-weight: 500;
  line-height: 0.75;
  text-align: center;
  color: var(--green);
  opacity: 0.13;
  user-select: none;
  pointer-events: none;
  margin-top: 24px;
  transform: translateY(12%);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 32px;
  font-size: 0.83rem;
  color: var(--gray-light);
}
.footer-disclaimer { font-size: 0.76rem; max-width: 640px; }

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  .stagger, .hero-phone { animation: none; opacity: 1; transform: none; }
  .hl::before { animation: none; transform: rotate(-1.5deg) scaleX(1); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .live-ping { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Trailing-dot cursor ============ */
html.has-cursor, html.has-cursor * { cursor: none !important; }
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s;
}
.cursor-dot {
  z-index: 10000;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--green);
}
.cursor-ring {
  z-index: 9999;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(0,137,92,0.55);
  transition: opacity .25s, width .3s var(--ease-out-expo), height .3s var(--ease-out-expo), margin .3s var(--ease-out-expo), background-color .3s;
}
.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(0,137,92,0.08);
}
.cursor-dot.is-visible, .cursor-ring.is-visible { opacity: 1; }

/* ============ Doc pages (privacy, contact) ============ */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}
.doc-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin-bottom: 14px;
}
.doc-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.doc-updated { margin-top: 12px; font-size: 0.85rem; color: var(--gray-light); }
.doc-intro {
  margin-top: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray);
}
.doc section { margin-top: 36px; }
.doc section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.doc section p, .doc section li { font-size: 0.97rem; line-height: 1.7; color: var(--gray); }
.doc section ul { padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.doc section a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.doc-note { margin-top: 48px; font-size: 0.8rem; line-height: 1.6; color: var(--gray-light); }
.doc-back { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.doc-back a { font-size: 0.92rem; font-weight: 550; color: var(--gray); transition: color .2s; }
.doc-back a:hover { color: var(--ink); }

/* contact cards */
.contact-cards { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
  transition: border-color .2s, transform .3s var(--ease-out-expo);
}
.contact-card:hover { border-color: rgba(0,137,92,0.45); transform: translateY(-2px); }
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px; width: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
}
.contact-card-icon svg { height: 21px; width: 21px; }
.contact-card-icon-wa { background: #E7F9EF; color: #1FAF5E; }
.contact-card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
}
.contact-card-value { font-size: 1rem; font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }
.contact-card-note { margin-top: 4px; font-size: 0.85rem; line-height: 1.55; color: var(--gray); }

.contact-reasons { margin-top: 12px; }
.contact-reasons + .contact-reasons { margin-top: 36px; }
.contact-reasons h2 { margin-bottom: 4px; }
.contact-reason { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-reason:last-child { border-bottom: 0; }
.contact-reason h3 { font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; font-family: var(--font); }
.contact-reason p { margin-top: 4px; font-size: 0.9rem; line-height: 1.6; color: var(--gray); }

/* ============ Floating WhatsApp ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37,211,102,0.4), 0 4px 10px rgba(14,16,15,0.15);
  transition: transform .3s var(--ease-out-expo), box-shadow .3s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 36px rgba(37,211,102,0.45), 0 6px 14px rgba(14,16,15,0.18); }
.wa-float svg { height: 30px; width: 30px; }
