@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #131619;
  --bg2: #0d1012;
  --bg3: #1a2028;
  --emerald: #10B981;
  --emerald-dim: rgba(16,185,129,0.12);
  --emerald-glow: rgba(16,185,129,0.25);
  --white: #FFFFFF;
  --muted: #8a9ab0;
  --border: rgba(255,255,255,0.07);
  --card: rgba(255,255,255,0.04);
  --radius: 16px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 2px; }

/* ─── CONTAINER ─── */
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
.container-sm { width: 90%; max-width: 780px; margin: 0 auto; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13,16,18,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em;
}
.nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--emerald);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--bg);
}
.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: 0.9rem; font-weight: 400; color: var(--muted);
  transition: color var(--transition); letter-spacing: 0.01em;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald); color: var(--bg);
  box-shadow: 0 0 0 0 var(--emerald-glow);
}
.btn-primary:hover {
  background: #0fa372;
  box-shadow: 0 0 30px var(--emerald-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--card);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-icon {
  background: transparent; color: var(--muted);
  padding: 8px; border-radius: 8px;
  font-size: 1.2rem;
}
.btn-icon:hover { color: var(--white); background: var(--card); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg2); padding: 100px 40px 40px;
  flex-direction: column; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--muted); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--white); }

/* ─── PAGE SECTIONS ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%; filter: blur(120px); opacity: 0.18;
  animation: drift 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--emerald);
  top: -150px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: #0369a1;
  bottom: -100px; left: -100px;
  animation-delay: -4s;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}
.hero__content {
  position: relative; z-index: 1; text-align: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.3);
  color: var(--emerald); border-radius: 100px;
  padding: 6px 16px; font-size: 0.8rem; font-weight: 500;
  margin-bottom: 28px; letter-spacing: 0.05em;
  animation: fadeUp 0.6s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--emerald);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal; color: var(--emerald);
  position: relative;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted); max-width: 600px; margin: 0 auto 40px;
  line-height: 1.7; animation: fadeUp 0.6s 0.2s ease both;
}
.hero__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero__verse {
  margin-top: 80px; padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(12px);
  max-width: 640px; margin: 60px auto 0;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero__verse p {
  font-size: 1rem; color: #c8d5e8;
  font-style: italic; line-height: 1.8;
}
.hero__verse cite {
  display: block; margin-top: 10px;
  font-size: 0.8rem; color: var(--emerald);
  font-style: normal; letter-spacing: 0.05em;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: 60px; color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.08em;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hero__scroll-line {
  width: 1px; height: 48px; background: linear-gradient(var(--emerald), transparent);
  animation: grow 2s ease infinite;
}

/* ─── STATS ─── */
.stats {
  padding: 60px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 20px 30px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 800; color: var(--emerald);
  line-height: 1;
}
.stat__label { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--emerald); text-transform: uppercase; margin-bottom: 14px;
}

/* ─── SECTION ─── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ─── HOW IT WORKS ─── */
.how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.how__card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.how__card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0; transition: var(--transition);
}
.how__card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.25); }
.how__card:hover::before { opacity: 1; }
.how__num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  color: rgba(255,255,255,0.05); line-height: 1;
  position: absolute; top: 16px; right: 24px;
}
.how__icon {
  width: 52px; height: 52px;
  background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.how__card h3 {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em;
}
.how__card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── FEATURES ─── */
.features__list { display: flex; flex-direction: column; gap: 80px; margin-top: 64px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature.reverse { direction: rtl; }
.feature.reverse > * { direction: ltr; }
.feature__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--emerald); text-transform: uppercase; margin-bottom: 12px;
}
.feature__title {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.feature__desc { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.feature__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald); border-radius: 100px;
  padding: 5px 14px; font-size: 0.8rem; font-weight: 500;
}
.feature__visual {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.feature__visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.feature__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), transparent);
}

/* ─── MOCKUP / UI VISUAL ─── */
.ui-mock {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  padding: 20px;
}
.ui-mock__bar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.ui-mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-mock__dot:nth-child(1) { background: #ff5f57; }
.ui-mock__dot:nth-child(2) { background: #febc2e; }
.ui-mock__dot:nth-child(3) { background: #28c840; }
.ui-mock__screen {
  background: var(--bg3); border-radius: 12px;
  padding: 20px; min-height: 200px;
}
.ui-mock__row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 8px;
  border: 1px solid var(--border); margin-bottom: 10px;
  font-size: 0.85rem;
}
.ui-mock__status {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ui-mock__status.green { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.ui-mock__status.red { background: #f87171; }
.ui-mock__status.yellow { background: #fbbf24; }
.ui-mock__label { flex: 1; color: var(--muted); }
.ui-mock__action { font-size: 0.75rem; color: var(--emerald); font-weight: 500; }

/* ─── TRUST BANDS ─── */
.trust { padding: 60px 0; }
.trust__items {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--muted);
}
.trust__item svg { color: var(--emerald); font-size: 18px; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(16,185,129,0.2); transform: translateY(-2px); }
.testi-stars { color: var(--emerald); font-size: 0.85rem; margin-bottom: 14px; }
.testi-text { font-size: 0.92rem; color: #c0cfd8; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.testi-name { font-size: 0.88rem; font-weight: 500; }
.testi-role { font-size: 0.78rem; color: var(--muted); }

/* ─── CTA BAND ─── */
.cta-band {
  margin: 0 auto; max-width: 1000px;
  border: 1px solid var(--border);
  border-radius: 24px; padding: 80px 60px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--emerald-dim), transparent);
  position: relative; overflow: hidden;
}
.cta-band h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px;
}
.cta-band p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── WAITLIST ─── */
.waitlist-form {
  display: flex; gap: 10px; max-width: 480px;
  margin: 28px auto 0; flex-wrap: wrap;
}
.waitlist-input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--white); border-radius: 10px;
  padding: 13px 18px; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: var(--transition);
}
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-input:focus { border-color: rgba(16,185,129,0.5); background: rgba(255,255,255,0.08); }
.waitlist-msg { font-size: 0.8rem; color: var(--emerald); margin-top: 10px; text-align: center; display: none; }

/* ─── PAGE HEADERS ─── */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--emerald-dim) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 16px; position: relative;
}
.page-hero p {
  color: var(--muted); font-size: 1.1rem;
  max-width: 580px; margin: 0 auto; position: relative;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.about-text .section-label { margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.04em; margin-bottom: 20px; line-height: 1.2;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.98rem; }
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 56px;
}
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(16,185,129,0.2); transform: translateY(-2px); }
.value-icon { font-size: 1.6rem; margin-bottom: 12px; }
.value-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(16,185,129,0.2); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--border);
  margin: 0 auto 16px; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--emerald); margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ─── FEATURES PAGE ─── */
.features-top-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; overflow: hidden; position: relative;
  transition: var(--transition);
}
.feat-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
  border-color: rgba(16,185,129,0.2);
}
.feat-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0; transition: var(--transition);
}
.feat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em;
}
.feat-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.feat-card ul { margin-top: 16px; }
.feat-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--muted); padding: 5px 0;
}
.feat-card ul li::before { content: '✓'; color: var(--emerald); flex-shrink: 0; font-weight: 700; }
.feat-visual {
  background: var(--bg2); border-radius: 14px;
  border: 1px solid var(--border); padding: 20px;
}
.comp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.comp-item {
  padding: 28px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border); text-align: center;
}
.comp-item:nth-child(3n) { border-right: none; }
.comp-item:nth-last-child(-n+3) { border-bottom: none; }
.comp-item h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.comp-item p { font-size: 0.82rem; color: var(--muted); }
.comp-check { font-size: 1.4rem; margin-bottom: 8px; }
.comp-item.highlight-col { background: var(--emerald-dim); }

/* ─── BLOG PAGE ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.blog-card:hover { border-color: rgba(16,185,129,0.25); transform: translateY(-4px); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card.featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg3); }
.blog-card.featured .blog-card__img { aspect-ratio: auto; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.6s ease; }
.blog-card__body { padding: 24px; }
.blog-card.featured .blog-card__body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-tag {
  display: inline-block;
  background: var(--emerald-dim); color: var(--emerald);
  border-radius: 100px; padding: 3px 12px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-card__body h3 {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 700; line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.02em;
}
.blog-card.featured .blog-card__body h3 { font-size: 1.6rem; }
.blog-card__body p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--muted); }
.blog-meta span { color: var(--emerald); }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; margin-top: 64px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em;
}
.contact-info p { color: var(--muted); line-height: 1.75; margin-bottom: 32px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: 12px;
  font-size: 0.9rem; transition: var(--transition);
}
.contact-item:hover { border-color: rgba(16,185,129,0.2); }
.contact-item__icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-item__text strong { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { border-color: rgba(16,185,129,0.3); color: var(--emerald); background: var(--emerald-dim); }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.83rem; font-weight: 500;
  color: var(--muted); margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: var(--transition); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(16,185,129,0.5); background: rgba(255,255,255,0.07);
}
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select option { background: var(--bg2); }
.form-success {
  text-align: center; padding: 24px;
  color: var(--emerald); font-size: 0.95rem; display: none;
}

/* ─── LOGIN PAGE ─── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 100px 20px;
  position: relative; overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--emerald-dim), transparent 70%);
  pointer-events: none;
}
.auth-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px; width: 100%; max-width: 460px;
  position: relative; backdrop-filter: blur(12px);
}
.auth-card__logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 32px;
  justify-content: center;
}
.auth-card h2 {
  font-family: var(--font-head); font-size: 1.8rem;
  font-weight: 800; text-align: center; margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.auth-card .subtitle { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 32px; }
.auth-tabs {
  display: flex; background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 4px; margin-bottom: 28px;
}
.auth-tab {
  flex: 1; text-align: center; padding: 9px;
  border-radius: 7px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); color: var(--muted);
}
.auth-tab.active { background: var(--bg); color: var(--white); }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: var(--muted); font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-link { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 20px; }
.auth-link a { color: var(--emerald); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin: 14px 0 20px; max-width: 240px; }
.footer__col h5 {
  font-family: var(--font-head); font-size: 0.9rem;
  font-weight: 700; margin-bottom: 16px; letter-spacing: 0.01em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--muted); }
.footer__tagline { font-size: 0.82rem; color: var(--emerald); font-style: italic; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes grow {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse { direction: ltr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: auto; display: block; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-top-grid { grid-template-columns: 1fr; }
  .feat-card.featured { grid-column: auto; display: block; }
  .team-grid, .testimonials__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .comp-item { border-right: none; }
  .comp-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .comp-item:last-child { border-bottom: none; }
  .cta-band { padding: 48px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
