/* ===================================================
   KHANVILKAR ENTERPRISES — PREMIUM UNDER CONSTRUCTION
   style.css — Complete Design System
   =================================================== */

/* ──────────────────────────────────────────────────
   1. GOOGLE FONTS & CSS CUSTOM PROPERTIES
   ────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Colors */
  --navy-primary: #071A3D;
  --navy-secondary: #0F274F;
  --emerald: #22C55E;
  --emerald-dark: #166534;
  --emerald-light: rgba(34, 197, 94, 0.12);
  --gold: #D4A017;
  --gold-light: rgba(212, 160, 23, 0.15);
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --text-gray: #CBD5E1;
  --text-muted: rgba(203, 213, 225, 0.6);

  /* Glass */
  --glass-bg: rgba(15, 39, 79, 0.55);
  --glass-border: rgba(212, 160, 23, 0.18);
  --glass-border-em: rgba(34, 197, 94, 0.18);
  --glass-blur: blur(20px);

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-glow-em: 0 0 30px rgba(34, 197, 94, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(212, 160, 23, 0.2);
  --shadow-btn: 0 4px 20px rgba(34, 197, 94, 0.35);
  --shadow-btn-gold: 0 4px 20px rgba(212, 160, 23, 0.25);

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 60px;
  --container-max: 1200px;
  --border-r: 20px;
  --border-r-sm: 14px;
  --border-r-xs: 10px;

  /* Typography */
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
  --h1: clamp(42px, 5.5vw, 64px);
  --h2: clamp(26px, 3.5vw, 36px);
  --body: 18px;
  --sm: 14px;
  --xs: 12px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-med: 350ms;
  --t-slow: 600ms;
}

/* ──────────────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.7;
  color: var(--white);
  background: var(--navy-primary);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ──────────────────────────────────────────────────
   3. BACKGROUND CANVAS & ORB EFFECTS
   ────────────────────────────────────────────────── */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--emerald), transparent);
  top: -150px; left: -150px;
  animation-duration: 14s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -100px; right: -100px;
  animation-duration: 16s;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--emerald), transparent);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
  animation-delay: -8s;
  opacity: 0.06;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Leaf Decorations */
.leaf-decorations {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.leaf {
  position: absolute;
  opacity: 0.6;
  animation: leafSway 8s ease-in-out infinite;
}
.leaf-1 { width: 120px; bottom: 10%; right: 5%; animation-delay: 0s; }
.leaf-2 { width: 90px; top: 20%; left: 3%; animation-delay: -3s; transform: scaleX(-1) rotate(20deg); }
.leaf-3 { width: 70px; top: 60%; right: 8%; animation-delay: -6s; transform: rotate(-30deg); }

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(6deg); }
}
.leaf-2 {
  animation-name: leafSway2;
}
@keyframes leafSway2 {
  0%, 100% { transform: scaleX(-1) rotate(20deg); }
  50% { transform: scaleX(-1) rotate(26deg); }
}

/* ──────────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ──────────────────────────────────────────────────
   5. HEADER
   ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(7,26,61,0.95) 0%, rgba(7,26,61,0.6) 80%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  transition: background var(--t-med) var(--ease);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo Wrap */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity var(--t-fast);
}
.logo-wrap:hover { opacity: 0.85; }

.logo-monogram {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-secondary), #1a3a70);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -2px;
  box-shadow: 0 0 16px rgba(212, 160, 23, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.mono-k { color: var(--gold); }
.mono-h { color: rgba(212, 160, 23, 0.65); }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Header CTA Button */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-header:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: var(--gold);
  box-shadow: var(--shadow-btn-gold);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────
   6. HERO SECTION
   ────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

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

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: badgePulse 2s ease infinite;
  box-shadow: 0 0 8px var(--emerald);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Headline */
.hero-headline {
  font-size: var(--h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}

.headline-accent {
  background: linear-gradient(135deg, var(--gold), #F59E0B, var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Sub */
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Founder Message */
.founder-message {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--border-r-sm);
  padding: 24px 28px;
  backdrop-filter: var(--glass-blur);
  margin-bottom: 40px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -5px; left: 20px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.founder-message p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 16px;
  padding-top: 12px;
}

.founder-sig {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sig-line {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.sig-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #1a7a35, var(--emerald));
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-med) var(--ease-bounce);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────
   7. HERO RIGHT — VISUAL PANEL
   ────────────────────────────────────────────────── */
.visual-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Glass Main Card */
.glass-main-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-r);
  padding: 32px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card), var(--shadow-glow-gold);
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.glass-main-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--emerald), transparent);
}

/* Dashboard Illustration */
.dashboard-illus {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 200px;
}

/* Laptop Frame */
.laptop-frame {
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 2;
}

.laptop-screen {
  background: linear-gradient(145deg, #0a1f3e, #0e2d5a);
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px 8px 0 0;
  padding: 10px;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.mini-dash { width: 100%; }

.dash-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  margin-bottom: 10px;
}

.dash-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dash-dot.red { background: #ff5f56; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #27c93f; }

.dash-url {
  font-size: 9px;
  color: rgba(203, 213, 225, 0.5);
  margin-left: 6px;
  font-family: monospace;
}

.dash-body { padding: 4px; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.metric-card {
  background: rgba(15, 39, 79, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 6px;
  padding: 8px 6px;
  text-align: center;
}

.metric-icon { height: 20px; margin: 0 auto 4px; }
.metric-icon svg { width: 20px; height: 20px; margin: 0 auto; }

.metric-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--emerald);
}

.metric-label {
  font-size: 8px;
  color: var(--text-muted);
}

.dash-network { width: 100%; height: 40px; }

.laptop-base {
  height: 8px;
  background: linear-gradient(to bottom, #1a3a70, #0e2040);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.laptop-stand {
  width: 40px;
  height: 12px;
  background: linear-gradient(to right, #0e2040, #1a3a70, #0e2040);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

/* Floating Badges */
.orchard-badge {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 39, 79, 0.85);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  backdrop-filter: blur(12px);
  animation: floatUp 4s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
  z-index: 3;
}

.orchard-icon { width: 32px; height: 32px; }
.orchard-icon svg { width: 32px; height: 32px; }

.orchard-text { display: flex; flex-direction: column; }

.orchard-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.orchard-loc {
  font-size: 9px;
  color: var(--text-muted);
}

.tech-badge {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 26, 61, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 50px;
  padding: 8px 14px 8px 10px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  color: var(--emerald);
  animation: floatUp 5s ease-in-out infinite reverse;
  animation-delay: -2s;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.15);
  z-index: 3;
}

.tech-badge-icon { width: 18px; height: 18px; flex-shrink: 0; }
.tech-badge-icon svg { width: 18px; height: 18px; }

.mango-tree-illus {
  position: absolute;
  bottom: 0; right: 0;
  width: 160px;
  opacity: 0.7;
  pointer-events: none;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ──────────────────────────────────────────────────
   8. STATUS CARD (Progress)
   ────────────────────────────────────────────────── */
.status-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-em);
  border-radius: var(--border-r-sm);
  padding: 24px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card), var(--shadow-glow-em);
}

.status-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.status-pulse {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--emerald);
  opacity: 0.3;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--emerald);
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.status-card-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* Progress Bar */
.progress-wrap { margin-bottom: 18px; }

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-pct {
  color: var(--emerald);
  font-weight: 700;
}

.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), #86EFAC);
  border-radius: 6px;
  transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Milestones */
.milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.milestone.done {
  color: rgba(134, 239, 172, 0.9);
}

.milestone svg { flex-shrink: 0; }

/* Launching Soon */
.launching-soon {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  padding-top: 14px;
}

.launch-star {
  color: var(--gold);
  opacity: 0.6;
  margin: 0 6px;
}

/* ──────────────────────────────────────────────────
   9. COUNTDOWN SECTION
   ────────────────────────────────────────────────── */
.countdown-section {
  padding: 60px 0 80px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 28px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-r-sm);
  padding: 28px 32px;
  min-width: 120px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.countdown-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: var(--shadow-card), var(--shadow-glow-gold);
  transform: translateY(-4px);
}

.count-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  font-size: 48px;
  font-weight: 300;
  color: rgba(212, 160, 23, 0.35);
  line-height: 1;
  padding-bottom: 20px;
}

/* ──────────────────────────────────────────────────
   10. BUSINESS SECTION
   ────────────────────────────────────────────────── */
.business-section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: var(--h2);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 10px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Business Card */
.biz-card {
  border-radius: var(--border-r);
  cursor: pointer;
  transition: transform var(--t-med) var(--ease);
}

.biz-card:hover { transform: translateY(-6px); }
.biz-card:focus-visible { outline: 2px solid var(--emerald); outline-offset: 4px; }

.biz-card-inner {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-r);
  padding: 36px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.biz-card:hover .biz-card-inner {
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-glow-gold);
}

.biz-card:nth-child(2):hover .biz-card-inner {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-glow-em);
}

.biz-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.mango-card-icon {
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.06));
  border: 1px solid rgba(212, 160, 23, 0.25);
}

.mango-card-icon svg { width: 48px; height: 48px; }

.digital-card-icon {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.06));
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.digital-card-icon svg { width: 48px; height: 48px; }

.biz-tag {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.tech-tag {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--emerald);
}

.biz-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.biz-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.biz-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.biz-feature {
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

/* Card Glow */
.biz-card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
  pointer-events: none;
}

.mango-glow { background: var(--gold); }
.digital-glow { background: var(--emerald); }

.biz-card:hover .biz-card-glow { opacity: 0.15; }

/* ──────────────────────────────────────────────────
   11. FOUNDER SECTION
   ────────────────────────────────────────────────── */
.founder-section {
  padding: var(--section-py) 0;
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212, 160, 23, 0.4));
}

.founder-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-r);
  padding: 60px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.founder-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Portrait */
.founder-portrait-wrap {
  position: relative;
  width: 160px; height: 160px;
  flex-shrink: 0;
}

.portrait-ring {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  padding: 3px;
  position: relative;
  z-index: 2;
  animation: portraitGlow 4s ease-in-out infinite;
}

@keyframes portraitGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,160,23,0.3); }
  50% { box-shadow: 0 0 40px rgba(212,160,23,0.5), 0 0 80px rgba(34,197,94,0.15); }
}

.portrait-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-primary);
}

.portrait-svg { width: 100%; height: 100%; }

.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.portrait-ring-outer,
.portrait-ring-mid {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: portraitRingPulse 3s ease-in-out infinite;
}

.portrait-ring-outer {
  width: 185px; height: 185px;
  animation-delay: -1s;
}

.portrait-ring-mid {
  width: 170px; height: 170px;
}

@keyframes portraitRingPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.03); }
}

/* Founder Info */
.founder-badge-row { margin-bottom: 12px; }

.founder-badge {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.founder-name {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.founder-title-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.founder-para {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 24px;
}

/* Signature */
.founder-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.founder-signature svg { width: 220px; height: auto; }

.sig-label {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.7;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Stats */
.founder-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.f-stat { text-align: center; }

.f-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.f-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.f-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(212,160,23,0.2);
}

/* ──────────────────────────────────────────────────
   12. CONTACT SECTION
   ────────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-r-sm);
  padding: 20px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--t-med) var(--ease);
}

.contact-card:hover, .contact-card:focus-visible {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card-body { display: flex; flex-direction: column; gap: 3px; }

.contact-card-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t-fast);
}

a.contact-card-value:hover { color: var(--emerald); }

/* Contact CTA Buttons */
.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #1a7a35, var(--emerald));
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-med) var(--ease-bounce);
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
}

.btn-wa-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
}

.btn-email-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: transparent;
  border: 1.5px solid rgba(212,160,23,0.4);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
}

.btn-email-large:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
  box-shadow: var(--shadow-btn-gold);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────
   13. FOOTER
   ────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  border-top: 1px solid rgba(212,160,23,0.1);
  padding: 50px 0 32px;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand { max-width: 420px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-monogram {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-secondary), #1a3a70);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.footer-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
}

.footer-tagline-f {
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-link:hover { color: var(--gold); }

/* ──────────────────────────────────────────────────
   14. ANIMATIONS & ENTRANCE EFFECTS
   ────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ──────────────────────────────────────────────────
   15. RESPONSIVE DESIGN
   ────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }

  .founder-message {
    text-align: left;
  }

  .hero-ctas { justify-content: center; }

  .visual-panel { max-width: 560px; margin: 0 auto; }

  .business-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  .founder-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 40px;
    gap: 36px;
  }

  .founder-para { margin: 0 auto 24px; }
  .founder-signature { align-items: center; }
  .founder-stats { justify-content: center; }

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

  .contact-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-py: 60px;
    --border-r: 16px;
  }

  .header { padding: 14px 0; }
  .logo-name { font-size: 11px; letter-spacing: 1px; }
  .logo-tagline { display: none; }
  .logo-monogram { width: 40px; height: 40px; font-size: 16px; }
  .btn-header { padding: 8px 16px; font-size: 12px; }

  .hero-section { padding: 120px 0 60px; }

  .hero-headline {
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: -0.5px;
  }

  .hero-sub { font-size: 15px; }

  .glass-main-card { padding: 24px; }

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

  .countdown-grid { gap: 8px; }
  .countdown-card { min-width: 80px; padding: 20px 16px; }
  .count-num { font-size: 36px; letter-spacing: -1px; }
  .countdown-sep { font-size: 32px; padding-bottom: 14px; }

  .contact-info-grid { grid-template-columns: 1fr; }

  .contact-ctas { flex-direction: column; align-items: center; }

  .founder-wrap { padding: 30px 24px; }
  .founder-name { font-size: 26px; }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .biz-card-inner { padding: 28px 24px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .countdown-card { min-width: 70px; padding: 16px 12px; }
  .count-num { font-size: 30px; }
}

/* ──────────────────────────────────────────────────
   16. PRINT STYLES
   ────────────────────────────────────────────────── */
@media print {
  #bgCanvas, .bg-orbs, .leaf-decorations { display: none; }
  body { background: white; color: black; }
}

/* ──────────────────────────────────────────────────
   17. REDUCED MOTION
   ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
