/* ════════════════════════════════════════════════════════════
   VYTHUS — World-Class Elder Home Health Care Platform
   Design Language: Elevated · Transparent · Trustworthy
   ════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #dcfce7;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --card: #ffffff;
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(148, 163, 184, 0.4);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 16px 48px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 32px 80px rgba(15, 23, 42, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }
ul { list-style: none; }

/* ── Utilities ── */
.container { width: min(1160px, 92%); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.tg { background: linear-gradient(130deg, #16a34a, #2563eb 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Scroll-reveal base */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), #15803d);
  color: #fff; border: none; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.97rem; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(22,163,74,0.32);
  line-height: 1.2;
}
.btn-primary:hover { background: linear-gradient(135deg, #15803d, #166534); box-shadow: 0 12px 32px rgba(22,163,74,0.42); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-xl { padding: 17px 34px; font-size: 1.05rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
  line-height: 1.2;
}
.btn-outline:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(15,23,42,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 10px; padding: 5px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}
.site-header.scrolled .logo-wrap {
  background: transparent; box-shadow: none; padding: 0; border-radius: 0;
}
.logo-img { height: 34px; width: auto; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.app-name { font-size: 1rem; font-weight: 800; letter-spacing: 0.06em; color: #fff; transition: color 0.3s ease; }
.site-header.scrolled .app-name { color: var(--text); }
.brand-tagline { font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.01em; transition: color 0.3s ease; }
.site-header.scrolled .brand-tagline { color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  color: rgba(255,255,255,0.75); transition: var(--transition);
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.site-header.scrolled .main-nav a { color: var(--muted); }
.site-header.scrolled .main-nav a:hover { color: var(--text); background: rgba(15,23,42,0.05); }
.main-nav .nav-cta {
  background: var(--primary); color: #fff; padding: 9px 20px;
  box-shadow: 0 4px 14px rgba(22,163,74,0.28);
}
.main-nav .nav-cta:hover { background: var(--primary-dark); color: #fff; }
.site-header.scrolled .main-nav .nav-cta { color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════ */
.hero-slider {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; flex-direction: column;
}
.slider-track {
  flex: 1; position: relative; display: flex;
  height: calc(100vh - 72px);
  min-height: calc(100vh - 72px);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s ease;
  overflow: hidden;
}
.slide.is-active { opacity: 1; pointer-events: auto; }

.slide-bg-layer {
  position: absolute; inset: 0; z-index: 0;
}
.slide--1 .slide-bg-layer {
  background: linear-gradient(135deg, #071a0e 0%, #14532d 55%, #0f2d1a 100%);
}
.slide--2 .slide-bg-layer {
  background: linear-gradient(135deg, #071a12 0%, #166534 50%, #0a2418 100%);
}
.slide--3 .slide-bg-layer {
  background: linear-gradient(135deg, #051510 0%, #15803d 50%, #0a2d1a 100%);
}
.slide--1 .slide-bg-layer::after,
.slide--2 .slide-bg-layer::after,
.slide--3 .slide-bg-layer::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(22,163,74,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(37,99,235,0.12) 0%, transparent 50%);
}

.slide-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: clamp(90px, 12vh, 140px) 0 clamp(48px, 6vh, 80px);
}
.slide-text { color: #fff; }
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.4);
  animation: pulseDot 2s ease-in-out infinite;
  display: inline-block; flex-shrink: 0;
}
.slide-text h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 22px; color: #fff;
}
.slide-text h1 em { font-style: italic; color: #67d4f8; }
.slide-lead {
  font-size: 1.08rem; color: rgba(255,255,255,0.72); line-height: 1.65;
  margin-bottom: 36px; max-width: 480px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Mockup */
.hero-mockup {
  position: relative; display: grid; place-items: center;
  min-height: 420px;
}
.hero-ref-img {
  border-radius: 22px; box-shadow: var(--shadow-lg);
  width: 100%; max-width: 480px; aspect-ratio: 16/10; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12); cursor: zoom-in;
  transition: transform var(--transition);
}
.hero-ref-img:hover { transform: scale(1.02); }
.float-card {
  position: absolute; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px); border-radius: var(--radius-sm);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.18);
  border: 1px solid rgba(255,255,255,0.8); z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.float-card--1 { top: 12%; right: -5%; animation-delay: 0s; }
.float-card--2 { bottom: 28%; left: -8%; animation-delay: 1.2s; }
.float-card--3 { bottom: 8%; right: 2%; animation-delay: 0.6s; }
.fc-icon { font-size: 1.3rem; flex-shrink: 0; }
.fc-info { display: flex; flex-direction: column; gap: 2px; }
.fc-info strong { font-size: 0.85rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.fc-info span { font-size: 0.72rem; color: var(--muted); white-space: nowrap; }
.status-pill {
  padding: 4px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
}
.status-pill--green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* Ecosystem Preview */
.eco-preview {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  padding: 16px;
}
.eco-node {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  padding: 16px 28px; text-align: center; color: #fff;
  transition: var(--transition); min-width: 180px;
}
.eco-node:hover { background: rgba(255,255,255,0.18); transform: scale(1.02); }
.eco-node-icon { font-size: 1.8rem; margin-bottom: 6px; }
.eco-node h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.eco-node p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.eco-node--platform { background: rgba(37,99,235,0.35); border-color: rgba(37,99,235,0.55); }
.eco-node-connector { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 0; color: rgba(255,255,255,0.5); }
.connector-line { width: 2px; height: 14px; background: rgba(255,255,255,0.25); border-radius: 1px; }
.connector-arrow { font-size: 1rem; font-weight: 700; line-height: 1; }
.eco-node--worker-pos { }
.eco-node-connector--down { }
.connector-line--v { }
.connector-arrow--down { }

/* Trust Visual (Slide 3) */
.trust-visual-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: 20px;
}
.trust-orb {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,163,74,0.45), rgba(37,99,235,0.25));
  border: 2px solid rgba(255,255,255,0.25); display: grid; place-items: center;
  box-shadow: 0 0 60px rgba(22,163,74,0.3), inset 0 0 40px rgba(22,163,74,0.1);
  animation: rotateGlow 6s linear infinite;
}
.trust-orb-inner { text-align: center; color: #fff; }
.trust-orb-label { display: block; font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 2px; }
.trust-orb-main { display: block; font-size: 1.2rem; font-weight: 800; margin-top: 4px; }
.trust-checks { display: flex; flex-direction: column; gap: 10px; }
.trust-check {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 999px;
  padding: 10px 18px; color: rgba(255,255,255,0.9); font-weight: 600;
  font-size: 0.88rem; transition: var(--transition);
}
.trust-check:hover { background: rgba(255,255,255,0.16); }
.trust-check span { font-size: 1rem; }

/* Slider Controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: var(--transition);
}
.slider-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.slider-btn svg { width: 20px; height: 20px; }
.slider-btn--prev { left: 24px; }
.slider-btn--next { right: 24px; }

.slider-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.sdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.sdot.is-active { background: #fff; width: 28px; border-radius: 999px; }

/* Countdown Bar */
.countdown-bar {
  background: rgba(0,0,0,0.3); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0;
  position: relative; z-index: 10;
}
.countdown-bar-inner {
  display: flex; align-items: center; gap: 20px; justify-content: center;
  flex-wrap: wrap;
}
.cd-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.countdown { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.countdown .time-box {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 12px;
  padding: 10px 16px; text-align: center; min-width: 68px;
}
.countdown .time-box span {
  display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1;
}
.countdown .time-box small { color: rgba(255,255,255,0.55); font-size: 0.72rem; display: block; margin-top: 3px; }

/* ══════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--card); border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border); padding: 18px 0;
  position: relative; z-index: 5;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.ti {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--text);
  padding: 8px 20px; white-space: nowrap;
}
.ti span:first-child { font-size: 1.1rem; }
.ti-div { width: 1px; height: 20px; background: var(--border-strong); flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-label { margin-bottom: 14px; }
.eyebrow-chip {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(22,163,74,0.08); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(22,163,74,0.15);
}
.eyebrow-chip--light {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.section-header { margin-bottom: 56px; }
.sh--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sh--split > div:last-child {
  padding-left: 24px;
  border-left: 3px solid var(--primary);
}
.sh--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 12px;
}
.section-header p { color: var(--muted); line-height: 1.65; font-size: 1.02rem; }
.sh-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.65; max-width: 580px; margin: 0 auto; }

/* ══════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 64px;
}
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #16a34a, #2563eb); opacity: 0; transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card--exclusive { background: linear-gradient(135deg, #faf5ff, #f0fdf4); border-color: rgba(124,58,237,0.2); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 16px;
}
.svc-icon--blue { background: rgba(37,99,235,0.08); }
.svc-icon--teal { background: rgba(13,148,136,0.08); }
.svc-icon--pink { background: rgba(219,39,119,0.08); }
.svc-icon--orange { background: rgba(234,88,12,0.08); }
.svc-icon--green { background: rgba(22,163,74,0.08); }
.svc-icon--purple { background: rgba(124,58,237,0.08); }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.svc-launch-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(22,163,74,0.1); color: var(--primary-dark);
  font-size: 0.75rem; font-weight: 700;
}
.svc-launch-tag--exclusive { background: rgba(124,58,237,0.1); color: #6d28d9; }

/* ── Image Showcase ── */
.img-showcase {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 16px;
}
.img-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: zoom-in; group: true;
}
.img-item img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.img-item:hover img { transform: scale(1.04); }
.img-item--wide img { height: 280px; }
.img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,23,42,0.82));
  padding: 28px 20px 18px; color: #fff;
  transform: translateY(4px); opacity: 0; transition: var(--transition);
}
.img-item:hover .img-overlay { opacity: 1; transform: translateY(0); }
.img-overlay h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.img-overlay p { font-size: 0.78rem; opacity: 0.75; }

/* ══════════════════════════════════════════════════
   CTA PRIMARY
══════════════════════════════════════════════════ */
.cta-primary {
  position: relative; overflow: hidden; padding: 90px 0;
  background: linear-gradient(135deg, #071a0e 0%, #14532d 60%, #0a2d18 100%);
}
.cta-blob {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.28) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.cta-primary-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cta-primary-text { color: #fff; }
.cta-primary-text h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.2; margin: 14px 0 16px;
}
.cta-primary-text p { color: rgba(255,255,255,0.7); line-height: 1.65; font-size: 1rem; }
.cta-primary-text strong { color: #fff; }

.notify-form {
  display: grid; gap: 12px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 24px;
  padding: 24px; margin-bottom: 16px;
}
.notify-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.notify-form input {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; color: #fff; font-family: var(--font); font-size: 0.93rem;
  padding: 13px 16px; transition: border-color 0.2s ease, background 0.2s ease;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.38); }
.notify-form input:focus { outline: none; border-color: rgba(22,163,74,0.55); background: rgba(255,255,255,0.12); }
.notify-form .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { color: rgba(255,255,255,0.5); font-size: 0.82rem; text-align: center; min-height: 18px; }
.platform-chips { display: flex; gap: 8px; margin-top: 14px; justify-content: center; }
.platform-chips span {
  padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
  font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════════════
   ECOSYSTEM / APPS
══════════════════════════════════════════════════ */
.apps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px;
}
.app-card {
  border-radius: var(--radius); padding: 32px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.app-card--family { background: linear-gradient(145deg, #eff6ff, #f0fdf4); }
.app-card--vendor { background: linear-gradient(145deg, #f8f5ff, #eff6ff); }
.app-card--worker { background: linear-gradient(145deg, #f0fdf4, #f0f9ff); }
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.app-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.app-emoji { font-size: 2rem; }
.app-badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(22,163,74,0.1); color: var(--primary);
  font-size: 0.75rem; font-weight: 700;
}
.app-badge--vendor { background: rgba(124,58,237,0.1); color: #6d28d9; }
.app-badge--worker { background: rgba(13,148,136,0.1); color: #0d9488; }
.app-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.app-card > p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.app-feat-list { display: grid; gap: 8px; margin-bottom: 22px; }
.app-feat-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--muted);
}
.app-feat-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #2563eb); flex-shrink: 0;
}
.app-plats { display: flex; gap: 6px; flex-wrap: wrap; }
.app-plats span {
  padding: 4px 12px; border-radius: 999px; font-size: 0.76rem; font-weight: 700;
  background: rgba(15,23,42,0.06); color: var(--muted); border: 1px solid var(--border);
}

/* Workflow Block */
.workflow-block {
  background: linear-gradient(135deg, #071a0e, #14532d);
  border-radius: 28px; padding: 48px; color: #fff;
}
.wf-head { text-align: center; margin-bottom: 40px; }
.wf-head h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.wf-head p { color: rgba(255,255,255,0.6); }
.wf-steps {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.wf-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: 0 6px; flex: 1; min-width: 90px; max-width: 120px;
}
.wf-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; font-size: 0.9rem; display: grid; place-items: center;
  flex-shrink: 0; box-shadow: 0 4px 14px rgba(22,163,74,0.38);
}
.wf-step strong { font-size: 0.82rem; color: #fff; display: block; line-height: 1.3; }
.wf-step span { font-size: 0.74rem; color: rgba(255,255,255,0.5); line-height: 1.4; }
.wf-arrow {
  color: rgba(255,255,255,0.3); font-size: 1.4rem; align-self: flex-start;
  margin-top: 8px; flex-shrink: 0; padding: 0 2px;
}

/* ══════════════════════════════════════════════════
   TRANSPARENCY SECTION
══════════════════════════════════════════════════ */
.transparency-section { background: linear-gradient(180deg, #f0fdf4 0%, var(--bg) 100%); }
.trans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; align-items: stretch;
}
.trans-main-card {
  background: var(--card); border-radius: 28px; padding: 48px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.trans-check-icon { width: 72px; height: 72px; margin-bottom: 24px; }
.trans-main-card h3 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 14px;
}
.trans-main-card > p { color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.trans-points { display: grid; gap: 16px; }
.trans-pt {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.12); border-radius: var(--radius-sm);
}
.tp-check { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.trans-pt strong { font-size: 0.92rem; display: block; margin-bottom: 2px; }
.trans-pt span { font-size: 0.84rem; color: var(--muted); }

.trans-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  grid-template-rows: 1fr 1fr 1fr auto;
  align-content: stretch;
}
.ts-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 20px; text-align: center;
  transition: var(--transition); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ts-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ts-card--blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); border-color: rgba(37,99,235,0.2); }
.ts-card--green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-color: rgba(22,163,74,0.2); }
.ts-val { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--text); line-height: 1; }
.ts-lbl { font-size: 0.82rem; color: var(--muted); margin-top: 8px; line-height: 1.4; max-width: 120px; }
.ts-quote {
  grid-column: 1 / -1; background: linear-gradient(135deg, #071a0e, #14532d);
  border-radius: 20px; padding: 24px;
}
.ts-quote blockquote { font-family: var(--font-display); font-style: italic; color: #fff; font-size: 1rem; line-height: 1.6; margin-bottom: 8px; }
.ts-quote cite { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.cta-inline {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: linear-gradient(135deg, #071a0e, #14532d);
  border-radius: 24px; padding: 36px 40px;
}
.cta-inline h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.cta-inline p { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════ */
.about-section { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-content h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.about-lead {
  font-size: 1.1rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-weight: 500;
}
.about-content p {
  color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-size: 0.97rem;
}
.about-quote {
  border-left: 3px solid var(--primary); padding-left: 20px; margin-top: 36px;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--text); line-height: 1.6;
}
.co-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.co-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.co-initial {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
  letter-spacing: 0.05em;
}
.co-initial--a { background: linear-gradient(135deg, #16a34a, #15803d); }
.co-initial--b { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.co-info h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; text-align: left; }
.co-info p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 10px; text-align: left; }
.co-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.co-tags span {
  padding: 4px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 600;
  background: rgba(22,163,74,0.08); color: var(--primary); border: 1px solid rgba(22,163,74,0.15);
}

.jv-link {
  display: flex; align-items: center; gap: 12px; padding: 20px 10px;
}
.jvl-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }
.jvl-badge {
  padding: 7px 18px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  background: linear-gradient(135deg, rgba(22,163,74,0.10), rgba(37,99,235,0.06));
  color: var(--primary); border: 1px solid rgba(22,163,74,0.2); white-space: nowrap;
}
.jv-outcome {
  background: linear-gradient(135deg, #071a0e, #14532d); border-radius: var(--radius);
  padding: 20px 24px; display: flex; gap: 16px; align-items: center; color: #fff;
  margin-top: 16px;
}
.jvo-star { font-size: 1.4rem; flex-shrink: 0; }
.jv-outcome strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.jv-outcome span { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }

/* ══════════════════════════════════════════════════
   FEATURES BENTO
══════════════════════════════════════════════════ */
.features-section { background: linear-gradient(180deg, #f8fafc, #f0fdf4 100%); }
.bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.bento {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.bento::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #16a34a, #2563eb); opacity: 0; transition: var(--transition);
}
.bento:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.bento:hover::before { opacity: 1; }
.bento--wide { grid-column: span 2; }
.bento--accent { background: linear-gradient(145deg, #eff6ff, #f0fdf4); }
.bento-em { font-size: 2rem; margin-bottom: 14px; }
.bento h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.bento p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   CTA DARK
══════════════════════════════════════════════════ */
.cta-dark {
  background: linear-gradient(135deg, #051510 0%, #14532d 50%, #071a0e 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-dark-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-dark-particles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.35), transparent);
  animation: particleDrift 8s ease-in-out infinite;
}
.cta-dark-particles span:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.cta-dark-particles span:nth-child(2) { width: 300px; height: 300px; bottom: -80px; right: -60px; animation-delay: 2s; background: radial-gradient(circle, rgba(34,197,94,0.22), transparent); }
.cta-dark-particles span:nth-child(3) { width: 200px; height: 200px; top: 50%; left: 40%; animation-delay: 4s; }
.cta-dark-particles span:nth-child(4) { width: 150px; height: 150px; top: 20%; right: 30%; animation-delay: 1s; }
.cta-dark-particles span:nth-child(5) { width: 100px; height: 100px; bottom: 20%; left: 20%; animation-delay: 3s; }
.cta-dark-particles span:nth-child(6) { width: 250px; height: 250px; top: 60%; right: 10%; animation-delay: 5s; }

.cta-dark-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center;
}
.cta-dark-text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin: 14px 0 16px;
}
.cta-dark-text h2 em { font-style: italic; color: #67d4f8; }
.cta-dark-text > p { color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 32px; }
.cta-dark-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.social-proof { display: flex; align-items: center; gap: 10px; }
.sp-avatars { display: flex; }
.sp-avatars span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.25);
  font-size: 1.1rem; margin-left: -8px;
}
.sp-avatars span:first-child { margin-left: 0; }
.social-proof > span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.cta-dark-right { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.countdown-dark-wrap { text-align: center; }
.countdown-dark-wrap .countdown { justify-content: center; }
.cd-until { color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 8px; }

.store-badges { display: flex; flex-direction: column; gap: 12px; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
  padding: 12px 20px; color: #fff; transition: var(--transition); cursor: pointer;
  min-width: 180px;
}
.store-badge:hover { background: rgba(255,255,255,0.16); transform: translateX(4px); }
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge div { display: flex; flex-direction: column; }
.store-badge span { font-size: 0.72rem; opacity: 0.6; }
.store-badge strong { font-size: 0.92rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer { background: #071a0e; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col {}
.footer-brand { margin-bottom: 14px; }
.footer-brand .app-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; max-width: 280px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-col h5 { color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s ease; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-align: center; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,23,42,0.85); backdrop-filter: blur(8px);
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease; z-index: 9999; padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: min(1000px, 94vw); width: 100%; background: #0f172a;
  border-radius: 20px; padding: 16px; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(15,23,42,0.6);
  display: grid; gap: 12px;
}
.lightbox-content img {
  width: 100%; max-height: 72vh; object-fit: contain; border-radius: 12px; background: #000d1a;
}
.lightbox-content figcaption { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.8rem; cursor: pointer; display: grid; place-items: center;
  transition: var(--transition); backdrop-filter: blur(8px); line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.08) rotate(90deg); }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes rotateGlow {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(40deg); }
}
@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.6; }
  66% { transform: translate(-20px, 15px) scale(0.9); opacity: 0.3; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento--wide { grid-column: span 2; }
  .apps-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 64px; }
  .cta-dark-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-dark-right { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 4px;
    border-bottom: 1px solid var(--border); z-index: 999;
    box-shadow: 0 8px 32px rgba(15,23,42,0.1); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .hamburger { display: flex; }

  .slide-content { grid-template-columns: 1fr; gap: 32px; padding: 100px 0 70px; }
  .slide-visual { display: none; }
  .slide-text h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .slider-btn { display: none; }

  .section { padding: 70px 0; }
  .sh--split { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .img-showcase { grid-template-columns: 1fr; }
  .img-item img, .img-item--wide img { height: 220px; }

  .cta-primary-inner { grid-template-columns: 1fr; gap: 36px; }
  .notify-form { border-radius: 18px; padding: 18px; }
  .notify-form .form-row { grid-template-columns: 1fr; }
  .notify-form .btn-primary { width: 100%; justify-content: center; }

  .trans-grid { grid-template-columns: 1fr; }
  .trans-main-card { padding: 28px; }
  .trans-stats { grid-template-columns: 1fr 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento--wide { grid-column: span 1; }

  .wf-steps { gap: 0; }
  .wf-arrow { display: none; }
  .wf-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wf-step { max-width: none; }

  .cta-inline { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-dark-right { flex-direction: column; }
  .store-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip-inner { gap: 0; }
  .ti-div { display: none; }
  .ti { padding: 6px 12px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; gap: 10px; }
  .slide-actions .btn-primary, .slide-actions .btn-outline { width: 100%; justify-content: center; }
  .cta-dark-actions { flex-direction: column; align-items: flex-start; }
  .trans-stats { grid-template-columns: 1fr; }
}
