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

:root {
  --ink: #0f0d17;
  --ink2: #2a2640;
  --ink3: #4a4568;
  --muted: #8b87a8;
  --line: #e8e4f4;
  --surface: #f5f3fc;
  --white: #ffffff;
  --teal: #0ab5a0;
  --teal2: #07917f;
  --teal-light: #e0f7f5;
  --amber: #f59638;
  --amber-light: #fff4e5;
  --rose: #e8456a;
  --rose-light: #fdeef2;
  --sky: #3b82f6;
  --sky-light: #eff6ff;
  --indigo: #4f46e5;
  --grad: linear-gradient(135deg, #0ab5a0 0%, #0d8fd9 100%);
  --grad2: linear-gradient(135deg, #4f46e5 0%, #0ab5a0 100%);
  --sh-sm: 0 2px 12px rgba(10, 181, 160, 0.1);
  --sh: 0 6px 28px rgba(10, 181, 160, 0.18);
  --sh-md: 0 12px 48px rgba(10, 181, 160, 0.22);
  --sh-lg: 0 24px 80px rgba(10, 181, 160, 0.25);
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 32px;
  --r-full: 999px;
  --nav-h: 68px;
  --fb: "DM Sans", system-ui, sans-serif;
  --fh: "Playfair Display", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

/* UTILS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.sec-sm {
  padding: 64px 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal2);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

.label i {
  width: 11px;
  height: 11px;
}

.h1 {
  font-family: var(--fh);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 18px;
}

.h2 {
  font-family: var(--fh);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 14px;
}

.h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.hl {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.sub-c {
  text-align: center;
  margin: 0 auto;
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

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

.rv.from-left {
  transform: translateX(-24px);
}

.rv.from-right {
  transform: translateX(24px);
}

.rv.from-left.in,
.rv.from-right.in {
  transform: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-outline {
  background: var(--white);
  color: var(--ink2);
  border: 2px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

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

/* header-logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-logo .logo-product img {
  height: 40px;
}

.header-logo .divider {
  width: 1px;
  height: 28px;
  background: var(--indigo);
}

.header-logo .logo-product {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: var(--amber-light);
  border: 1.5px solid var(--line);
}

/* SCROLL PROGRESS */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--indigo);
  z-index: 9999;
  transition: width 0.08s linear;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232, 228, 244, 0.6);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(10, 181, 160, 0.1);
}

.nav-in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 181, 160, 0.3);
}

.logo-mark i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink3);
  padding: 7px 14px;
  border-radius: var(--r);
  transition: all 0.18s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal2);
  background: var(--teal-light);
}

.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: 9px 22px !important;
  margin-left: 6px;
  box-shadow: var(--sh-sm) !important;
}

.nav-cta:hover {
  box-shadow: var(--sh) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}

.hamburger i {
  width: 20px;
  height: 20px;
  display: block;
}

/* MOBILE NAV DRAWER */
.mob-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--white);
  padding: calc(var(--nav-h) + 24px) 24px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mob-drawer.open {
  display: flex;
}

.mob-drawer a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all 0.18s;
}

.mob-drawer a i {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.mob-drawer a:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}

.mob-drawer .mob-cta {
  background: var(--grad);
  color: #fff;
  border: none;
  margin-top: 8px;
  justify-content: center;
}

/* HERO */
#hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 181, 160, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
}

.hero-blob2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.07) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}

.hero-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 30px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal2);
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.hero-eyebrow i {
  width: 12px;
  height: 12px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.7);
    opacity: 0.4;
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-lg);
  transition: all 0.22s;
  cursor: pointer;
}

.store-btn:hover {
  background: var(--ink2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 13, 23, 0.28);
}

.store-btn i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-btn-t small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  opacity: 0.6;
  display: block;
}

.store-btn-t strong {
  font-size: 13.5px;
  font-weight: 800;
  display: block;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 4px;
  width: 100%;
}

.hstat {
  padding: 14px 10px;
  text-align: center;
  position: relative;
}

.hstat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--line);
}

.hstat-n {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat-l {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* PHONE MOCKUP */
.hero-vis {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.phone {
  width: 285px;
  height: 575px;
  border-radius: 48px;
  background: var(--ink);
  border: 8px solid #1e1a36;
  box-shadow:
    0 48px 120px rgba(15, 13, 23, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0c0a1a;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #e8f8f6 0%, #eef2ff 60%, #f8f5ff 100%);
  padding: 48px 13px 13px;
  overflow: hidden;
}

.pui-hdr {
  background: var(--grad);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 11px;
}

.pui-greeting {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2px;
}

.pui-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 9px;
}

.pui-rent-row {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pui-rent-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.pui-rent-val {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.pui-due-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  padding: 3px 8px;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
}

.pui-due-pill i {
  width: 10px;
  height: 10px;
}

.pui-quickgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 10px;
}

.pui-qtile {
  background: #fff;
  border-radius: 13px;
  padding: 11px 9px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(10, 181, 160, 0.09);
}

.pui-qtile-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.pui-qtile-ic i {
  width: 15px;
  height: 15px;
  color: #fff;
}

.pui-qtile-lbl {
  font-size: 9px;
  font-weight: 800;
  color: var(--ink2);
}

.ic-teal {
  background: var(--grad);
}

.ic-indigo {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.ic-sky {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.ic-amber {
  background: linear-gradient(135deg, #f59638, #d97706);
}

.pui-section-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pui-notice {
  background: #fff;
  border-radius: 10px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  box-shadow: 0 2px 6px rgba(10, 181, 160, 0.07);
}

.pui-notice-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pui-notice-av i {
  width: 12px;
  height: 12px;
  color: #fff;
}

.pui-notice-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--ink);
}

.pui-notice-text {
  font-size: 8.5px;
  color: var(--muted);
}

.pui-notice-time {
  margin-left: auto;
  font-size: 8px;
  color: var(--muted);
}

/* FLOATING CHIPS */
.chip {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 32px rgba(10, 181, 160, 0.16);
  z-index: 5;
}

.chip i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.chip-title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ink);
}

.chip-sub {
  font-size: 10px;
  color: var(--muted);
}

.chip1 {
  top: 30px;
  right: -24px;
  animation: chipfloat 4s ease-in-out infinite;
}

.chip2 {
  bottom: 100px;
  left: -32px;
  animation: chipfloat 4s 2s ease-in-out infinite;
}

.chip3 {
  bottom: 24px;
  right: -16px;
  animation: chipfloat 3.5s 0.8s ease-in-out infinite;
}

@keyframes chipfloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.dot-teal {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(10, 181, 160, 0.5);
}

.dot-amber {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(245, 150, 56, 0.5);
}

/* FOR WHO */
#for {
  background: var(--surface);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.for-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.28s;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}

.for-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.for-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
  border-color: rgba(10, 181, 160, 0.3);
}

.for-card:hover::after {
  transform: scaleX(1);
}

.for-ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 13px;
  transition: all 0.28s;
}

.for-ic i {
  width: 25px;
  height: 25px;
  color: var(--teal2);
  transition: all 0.28s;
}

.for-card:hover .for-ic {
  background: var(--grad);
  border-color: transparent;
}

.for-card:hover .for-ic i {
  color: #fff;
}

.for-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
}

.for-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* FEATURES */
#features {
  background: var(--white);
}

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

.feat-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all 0.28s;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(10, 181, 160, 0.25);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.28s;
}

.feat-ic i {
  width: 24px;
  height: 24px;
  color: var(--teal2);
  transition: all 0.28s;
}

.feat-card:hover .feat-ic {
  background: var(--grad);
  border-color: transparent;
}

.feat-card:hover .feat-ic i {
  color: #fff;
}

.feat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--teal2);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 6px;
}

.feat-tag i {
  width: 10px;
  height: 10px;
}

/* APP SHOWCASE — dark band */
#app-show {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#app-show::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 15% 50%,
      rgba(10, 181, 160, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 60% at 85% 30%,
      rgba(79, 70, 229, 0.18) 0%,
      transparent 55%
    );
}

#app-show::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 44px 44px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(10, 181, 160, 0.9);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.app-eyebrow i {
  width: 14px;
  height: 14px;
}

.app-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.app-title em {
  font-style: italic;
  background: linear-gradient(135deg, #5eead4, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-bottom: 28px;
}

.app-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.afl {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  transition: all 0.22s;
}

.afl:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.afl-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(10, 181, 160, 0.2);
  border: 1px solid rgba(10, 181, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.afl-ic i {
  width: 18px;
  height: 18px;
  color: #5eead4;
}

.afl-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.afl-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.app-dl {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-lg);
  transition: all 0.22s;
  cursor: pointer;
}

.app-dl-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.app-dl-btn i {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.app-dl-btn small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  opacity: 0.6;
  display: block;
}

.app-dl-btn strong {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.app-screens {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
}

.app-screen {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.app-screen.main {
  width: 180px;
}

.app-screen.side {
  width: 155px;
  margin-bottom: 28px;
}

.as-bar {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  gap: 8px;
}

.as-bar i {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.8);
}

.as-bar-t {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.as-bar.b1 {
  background: var(--grad);
}

.as-bar.b2 {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.as-body {
  background: #fff;
  padding: 11px;
}

.as-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px;
  margin-bottom: 7px;
}

.as-ct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.as-cn {
  font-size: 10px;
  font-weight: 800;
  color: var(--ink2);
}

.as-pill {
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
}

.as-pill.g {
  background: #dcfce7;
  color: #15803d;
}

.as-pill.o {
  background: #fff7ed;
  color: #c2410c;
}

.as-pill.p {
  background: var(--teal-light);
  color: var(--teal2);
}

.as-val {
  font-size: 16px;
  font-weight: 900;
  color: var(--teal2);
}

.as-sub2 {
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}

.as-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.as-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.as-av i {
  width: 11px;
  height: 11px;
  color: #fff;
}

.as-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}

.as-unit {
  font-size: 9px;
  color: var(--muted);
}

.as-amt {
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  color: var(--teal2);
}

.as-amt.pend {
  color: var(--amber);
}

/* PROPERTIES */
#properties {
  background: var(--surface);
}

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

.prop-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  transition: all 0.28s;
}

.prop-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
}

.prop-bg-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.38s;
}

.prop-card:hover .prop-bg-layer {
  transform: scale(1.06);
}

.prop-bg-layer i {
  width: 68px;
  height: 68px;
  opacity: 0.2;
}

.pb1 {
  background: linear-gradient(145deg, #d1fae5, #a7f3d0);
}

.pb1 i {
  color: #065f46;
}

.pb2 {
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
}

.pb2 i {
  color: #1e40af;
}

.pb3 {
  background: linear-gradient(145deg, #fef3c7, #fde68a);
}

.pb3 i {
  color: #92400e;
}

.pb4 {
  background: linear-gradient(145deg, #fce7f3, #fbcfe8);
}

.pb4 i {
  color: #9d174d;
}

.pb5 {
  background: linear-gradient(145deg, #ede9fe, #ddd6fe);
}

.pb5 i {
  color: #4c1d95;
}

.pb6 {
  background: linear-gradient(145deg, #ffedd5, #fed7aa);
}

.pb6 i {
  color: #9a3412;
}

.prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 13, 23, 0.72) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.prop-ico-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.prop-ico-wrap i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.prop-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.prop-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-count i {
  width: 12px;
  height: 12px;
}

.prop-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal2);
  padding: 4px 11px;
  border-radius: 7px;
}

/* STATS */
#stats {
  background: var(--grad);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-ic i {
  width: 21px;
  height: 21px;
  color: #fff;
}

.stat-n {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-l {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* HOW */
#how {
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.how-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--indigo));
  z-index: 0;
  opacity: 0.3;
}

.how-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.how-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.28s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.how-circle:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(10, 181, 160, 0.2);
}

.how-circle i {
  width: 32px;
  height: 32px;
  color: var(--teal2);
}

.how-nbadge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  border: 2.5px solid #fff;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 9px;
}

.how-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 950px;
  margin: 48px auto 0;
}

.plan {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s;
  box-shadow: var(--sh-sm);
}

.plan.pop {
  border-color: var(--teal);
  box-shadow:
    0 0 0 4px rgba(10, 181, 160, 0.1),
    var(--sh-lg);
  transform: scale(1.04);
}

.plan:not(.pop):hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(10, 181, 160, 0.35);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--grad);
  color: #fff;
  padding: 4px 11px;
  border-radius: 7px;
}

.plan-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.plan-ic i {
  width: 25px;
  height: 25px;
  color: var(--teal2);
}

.plan-name {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-pv {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-pu {
  font-size: 13px;
  color: var(--muted);
}

.plan-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.plan-div {
  height: 1px;
  background: var(--line);
  margin-bottom: 18px;
}

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.pf {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink2);
  font-weight: 500;
}

.pf.dim {
  color: var(--muted);
}

.pf i.ck {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.pf i.xx {
  width: 16px;
  height: 16px;
  color: var(--line);
  flex-shrink: 0;
}

.plan-btn {
  width: 100%;
  padding: 13px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--fb);
  transition: all 0.22s;
}

.plan-btn.solid {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-sm);
}

.plan-btn.solid:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.plan-btn.bordered {
  background: var(--white);
  color: var(--teal2);
  border: 2px solid var(--line);
}

.plan-btn.bordered:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

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

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

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all 0.26s;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}

.testi-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(10, 181, 160, 0.25);
}

.testi-card:hover::after {
  transform: scaleX(1);
}

.testi-qt {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.testi-qt i {
  width: 18px;
  height: 18px;
  color: var(--teal2);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testi-stars i {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
  color: #f59e0b;
}

.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-av i {
  width: 20px;
  height: 20px;
  color: #fff;
}

.testi-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.testi-role i {
  width: 11px;
  height: 11px;
  color: var(--teal);
}

/* COMMUNITY */
#community {
  background: var(--surface);
}

.comm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chat-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 20px;
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--line);
}

.chat-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.chat-hdr-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-hdr-av i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.chat-hdr-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.chat-hdr-st {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-hdr-st i {
  width: 10px;
  height: 10px;
  color: #22c55e;
  fill: #22c55e;
}

.chat-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.chat-btn {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
}

.chat-btn:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}

.chat-btn i {
  width: 13px;
  height: 13px;
  color: var(--teal2);
}

.chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.cmsg.them {
  align-self: flex-start;
  max-width: 80%;
}

.cmsg.me {
  align-self: flex-end;
  max-width: 80%;
}

.cmsg-bub {
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}

.cmsg.them .cmsg-bub {
  background: var(--surface);
  color: var(--ink);
  border-radius: 4px 16px 16px 16px;
}

.cmsg.me .cmsg-bub {
  background: var(--grad);
  color: #fff;
  border-radius: 16px 4px 16px 16px;
}

.cmsg-meta {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cmsg-meta i {
  width: 10px;
  height: 10px;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border-radius: var(--r-full);
  padding: 7px 7px 7px 15px;
}

.chat-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--fb);
}

.chat-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-send i {
  width: 14px;
  height: 14px;
  color: #fff;
}

.comm-pts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.cp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 15px;
  box-shadow: var(--sh-sm);
  transition: all 0.22s;
}

.cp:hover {
  transform: translateX(5px);
  border-color: rgba(10, 181, 160, 0.3);
  box-shadow: var(--sh);
}

.cp-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-ic i {
  width: 19px;
  height: 19px;
  color: var(--teal2);
}

.cp-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.cp-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* DOCS */
#docs {
  background: var(--white);
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.doc-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--sh-sm);
  transition: all 0.24s;
}

.doc-item:hover {
  border-color: rgba(10, 181, 160, 0.3);
  box-shadow: var(--sh);
  transform: translateX(5px);
}

.doc-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-light);
  border: 1.5px solid rgba(10, 181, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-ic i {
  width: 21px;
  height: 21px;
  color: var(--teal2);
}

.doc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.doc-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.doc-pill {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 7px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.doc-pill i {
  width: 10px;
  height: 10px;
}

.doc-pill.stored {
  background: #dcfce7;
  color: #15803d;
}

.doc-pill.signed {
  background: var(--teal-light);
  color: var(--teal2);
}

.doc-pill.shared {
  background: var(--sky-light);
  color: var(--sky);
}

/* PRIVACY */
#privacy {
  background: var(--surface);
}

.priv-box {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 40px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  box-shadow: var(--sh-md);
  max-width: 800px;
  margin: 40px auto 0;
}

.priv-shield {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh);
}

.priv-shield i {
  width: 34px;
  height: 34px;
  color: #fff;
}

.priv-title {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.priv-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
}

.priv-pts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}

.pp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 600;
  background: var(--teal-light);
  border: 1px solid rgba(10, 181, 160, 0.18);
  border-radius: var(--r);
  padding: 9px 12px;
}

.pp i {
  width: 14px;
  height: 14px;
  color: var(--teal2);
  flex-shrink: 0;
}

/* CTA */
#cta {
  background: var(--ink);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 70% at 30% 40%,
      rgba(10, 181, 160, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 60% at 75% 70%,
      rgba(79, 70, 229, 0.18) 0%,
      transparent 55%
    );
}

#cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.cta-in {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.9);
  background: rgba(10, 181, 160, 0.1);
  border: 1px solid rgba(10, 181, 160, 0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}

.cta-eyebrow i {
  width: 12px;
  height: 12px;
}

.cta-title {
  font-family: var(--fh);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, #5eead4, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.78;
}

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

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

.cta-store {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r-lg);
  transition: all 0.22s;
  cursor: pointer;
}

.cta-store:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.cta-store i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-store small {
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
}

.cta-store strong {
  font-size: 13.5px;
  font-weight: 800;
  display: block;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  transition-delay: calc(var(--i) * 80ms);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  nav ul {
    display: none;
  }

  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px;
    border-bottom: 1px solid #dde6f5;
    box-shadow: 0 8px 24px rgba(10, 50, 120, 0.08);
  }

  .mobile-toggle {
    display: flex;
  }

  #hero {
    padding: 100px 20px 60px;
  }

  .container {
    padding: 0 20px;
  }

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

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

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .app-screens {
    gap: 12px;
  }

  .app-screen.main {
    width: 160px;
  }

  .app-screen.side {
    width: 138px;
  }
}

@media (max-width: 900px) {
  .hero-in,
  .app-grid,
  .comm-grid,
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-in {
    text-align: center;
  }

  .hero-actions,
  .hero-stores {
    justify-content: center;
  }

  .sub-c,
  .hero-in .sub {
    max-width: 100%;
    text-align: center;
  }

  .hero-vis {
    display: none;
  }

  .feat-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .plan.pop {
    transform: none;
  }

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

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .how-grid::before {
    display: none;
  }

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

  .stat:not(:last-child)::after {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .sec {
    padding: 60px 0;
  }

  .for-grid,
  .feat-grid,
  .prop-grid,
  .testi-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .priv-box {
    flex-direction: column;
    padding: 24px;
  }

  .priv-pts {
    grid-template-columns: 1fr;
  }

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

  .hstat:nth-child(2)::after {
    display: none;
  }

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

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

  .app-screens {
    flex-direction: column;
    align-items: center;
  }
}
