/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens — derived from Jake Software logo ── */
:root {
  --background: 0 0% 100%;
  --foreground: 210 40% 11%;

  --primary: 210 40% 11%;
  --primary-foreground: 0 0% 100%;

  --secondary: 200 20% 96%;
  --secondary-foreground: 210 30% 15%;

  --muted: 200 15% 95%;
  --muted-foreground: 205 14% 50%;

  /* Logo teal-blue palette */
  --accent:   191 72% 38%;          /* deep teal   */
  --accent-2: 205 68% 50%;          /* sky blue    */
  --accent-3: 170 55% 40%;          /* teal-green  */
  --accent-foreground: 0 0% 100%;

  --border: 205 20% 88%;
  --ring:   191 72% 38%;
  --radius: 0.5rem;

  --font-display: 'Instrument Serif', serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm:        0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:        0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-dashboard: 0 25px 80px -12px rgba(17, 80, 110, 0.12),
                      0 0 0 1px rgba(0, 0, 0, 0.06);
  --shadow-glow:      0 0 60px 0 rgba(26, 175, 185, 0.18);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; 
  overflow-x: hidden; 
}
body {
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  overflow-x: hidden;
  overflow-y: auto;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── MESH GRADIENT BACKGROUND ── */
.page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    /* top-left deep blue blob */
    radial-gradient(ellipse 80% 60% at -10% -10%,
      hsla(210, 70%, 42%, 0.22) 0%, transparent 65%),
    /* top-right sky blue blob */
    radial-gradient(ellipse 60% 50% at 110% 5%,
      hsla(200, 68%, 55%, 0.18) 0%, transparent 65%),
    /* center-left teal blob */
    radial-gradient(ellipse 50% 40% at 15% 55%,
      hsla(191, 72%, 45%, 0.14) 0%, transparent 60%),
    /* bottom-right teal-green blob */
    radial-gradient(ellipse 70% 55% at 95% 100%,
      hsla(170, 55%, 42%, 0.16) 0%, transparent 65%),
    /* center accent glow */
    radial-gradient(ellipse 45% 35% at 55% 40%,
      hsla(191, 72%, 60%, 0.08) 0%, transparent 55%),
    /* base */
    linear-gradient(155deg,
      hsl(210, 40%, 99%) 0%,
      hsl(200, 30%, 97%) 40%,
      hsl(191, 25%, 96%) 100%);
}

/* Animated floating orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: drift linear infinite;
}
.orb-1 {
  width: 420px; height: 420px;
  top: -120px; left: -80px;
  background: radial-gradient(circle,
    hsla(205, 68%, 52%, 0.20) 0%, transparent 70%);
  animation-duration: 28s;
  animation-direction: alternate;
}
.orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle,
    hsla(170, 55%, 42%, 0.18) 0%, transparent 70%);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}
.orb-3 {
  width: 280px; height: 280px;
  top: 40%; left: 60%;
  background: radial-gradient(circle,
    hsla(191, 72%, 45%, 0.13) 0%, transparent 70%);
  animation-duration: 35s;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 30px) scale(0.97); }
  100% { transform: translate(15px, 10px) scale(1.02); }
}

/* Subtle dot grid overlay */
.page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, hsla(205, 40%, 50%, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ──────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────── */
.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.navbar-left { display: flex; align-items: center; }

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: hsl(var(--foreground));
  text-decoration: none;
}
.navbar-logo img { height: 28px; width: auto; }
.navbar-logo .logo-wordmark { color: hsl(var(--foreground)); }
.brand-jake {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent-2)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
.navbar-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.navbar-links a:hover { color: hsl(var(--foreground)); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.65rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: hsl(var(--foreground)); }
.mobile-menu .mobile-cta {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-ghost {
  padding: 0.5rem 1rem;
  font-size: 0.84rem;
  background: transparent;
  color: hsl(var(--muted-foreground));
  border: 1px solid transparent;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  color: hsl(var(--foreground));
}

.btn-primary {
  padding: 0.5rem 1.15rem;
  font-size: 0.84rem;
  background: hsl(var(--foreground));
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: hsl(210, 45%, 18%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg,
    hsl(var(--accent)) 0%,
    hsl(var(--accent-2)) 100%);
  color: white;
  box-shadow: 0 4px 20px hsla(191, 72%, 38%, 0.35);
  letter-spacing: -0.01em;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsla(191, 72%, 38%, 0.45);
}

.btn-outline {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.85);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-play {
  width: 2.75rem; height: 2.75rem;
  padding: 0;
  background: white;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-play svg {
  width: 14px; height: 14px;
  fill: hsl(var(--foreground));
  stroke: none;
}

/* Mobile hamburger */
.hamburger {
  display: none; /* hidden on desktop, shown on mobile via media query */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px; height: 2px;
  background: hsl(var(--foreground));
  border-radius: 2px;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.hero {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.3rem 0.875rem 0.3rem 0.4rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 1.75rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(26,175,185,0.3);
  color: hsl(var(--foreground));
  box-shadow: 0 2px 12px rgba(26,175,185,0.12);
  backdrop-filter: blur(8px);
  letter-spacing: -0.01em;
}
.hero-badge .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-2)));
  color: white;
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Headline ── */
.hero-headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  max-width: 38rem;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg,
    hsl(var(--accent)) 0%,
    hsl(var(--accent-2)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheadline ── */
.hero-sub {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  max-width: 580px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ── CTA Row ── */
.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Social proof strip ── */
.social-proof {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-body);
}
.social-proof .avatars {
  display: flex;
}
.social-proof .avatars span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: white;
  margin-left: -6px;
}
.social-proof .avatars span:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, hsl(191,72%,38%), hsl(205,68%,50%)); }
.av2 { background: linear-gradient(135deg, hsl(210,70%,42%), hsl(191,72%,38%)); }
.av3 { background: linear-gradient(135deg, hsl(170,55%,40%), hsl(191,72%,38%)); }
.av4 { background: linear-gradient(135deg, hsl(205,68%,50%), hsl(170,55%,40%)); }
.social-proof strong { color: hsl(var(--foreground)); font-weight: 600; }

/* ──────────────────────────────────────────────
   DASHBOARD PREVIEW
──────────────────────────────────────────────── */
.dashboard-wrap {
  margin-top: 2rem;
  width: 100%;
  max-width: 62rem;
  padding: 0 1.25rem;
  position: relative;
}

/* glow behind dashboard */
.dashboard-wrap::before {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 60px;
  background: radial-gradient(ellipse,
    hsla(191, 72%, 42%, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.dashboard-glass {
  position: relative;
  z-index: 1;
  border-radius: 1.125rem;
  overflow: hidden;
  padding: 0.875rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-dashboard);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.dashboard {
  background: hsl(0,0%,100%);
  border-radius: 0.75rem;
  overflow: hidden;
  font-size: 11px;
  user-select: none;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
}

/* Topbar */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid hsl(var(--border));
  gap: 0.5rem;
  background: #fafafa;
}
.dash-tb-left { display: flex; align-items: center; gap: 0.5rem; }
.dash-logobox {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, hsl(191,72%,38%), hsl(205,68%,50%));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 10px;
}
.dash-tb-left .app-name { font-weight: 700; font-size: 11px; color: hsl(var(--foreground)); }
.dash-tb-left svg { width: 10px; height: 10px; color: hsl(var(--muted-foreground)); }
.dash-search {
  flex: 1; max-width: 200px;
  height: 24px; border-radius: 6px;
  background: hsl(var(--secondary));
  display: flex; align-items: center;
  padding: 0 0.5rem; gap: 0.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 10px; margin: 0 auto;
}
.dash-search svg { width: 11px; height: 11px; }
.kbd {
  margin-left: auto; font-size: 9px;
  background: white; border: 1px solid hsl(var(--border));
  border-radius: 3px; padding: 1px 4px;
  color: hsl(var(--muted-foreground));
}
.dash-tb-right { display: flex; align-items: center; gap: 0.625rem; }
.dash-tb-right .label { font-size: 10px; font-weight: 500; color: hsl(var(--foreground)); white-space: nowrap; }
.dash-tb-right svg { width: 13px; height: 13px; color: hsl(var(--muted-foreground)); }
.dash-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, hsl(191,72%,38%), hsl(170,55%,40%));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 8px; font-weight: 700;
}

/* Body */
.dash-body { display: flex; min-height: 0; }

/* Sidebar */
.dash-sidebar {
  width: 138px; min-width: 138px;
  border-right: 1px solid hsl(var(--border));
  padding: 0.5rem 0.4rem;
  display: flex; flex-direction: column; gap: 1px;
  background: #fafafa;
}
.sidebar-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  font-size: 10px;
  color: hsl(var(--muted-foreground));
}
.sidebar-item.active {
  background: linear-gradient(135deg,
    hsla(191,72%,38%,0.12), hsla(205,68%,50%,0.08));
  color: hsl(191,65%,30%);
  font-weight: 600;
}
.sidebar-item .si-left { display: flex; align-items: center; gap: 0.375rem; }
.sidebar-item svg { width: 11px; height: 11px; opacity: 0.7; }
.sidebar-section {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: hsl(var(--muted-foreground));
  padding: 0.75rem 0.5rem 0.2rem;
  opacity: 0.65;
}
.badge-num {
  font-size: 8px; font-weight: 700;
  background: hsl(var(--accent)); color: white;
  border-radius: 9999px; padding: 1px 5px;
}

/* Main */
.dash-main {
  flex: 1; min-width: 0;
  background: hsl(205,20%,98%);
  padding: 0.875rem; display: flex;
  flex-direction: column; gap: 0.6rem;
}
.dash-greeting { font-size: 12px; font-weight: 700; color: hsl(var(--foreground)); }

/* Actions */
.dash-actions { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.action-btn {
  display: inline-flex; align-items: center; gap: 0.25rem;
  border-radius: 9999px; padding: 0.22rem 0.65rem;
  font-size: 10px; border: 1px solid hsl(var(--border));
  background: white; color: hsl(var(--foreground)); white-space: nowrap;
}
.action-btn svg { width: 10px; height: 10px; }
.action-btn.primary {
  background: linear-gradient(135deg, hsl(191,72%,38%), hsl(205,68%,50%));
  color: white; border-color: transparent;
}
.dash-customize { font-size: 10px; color: hsl(var(--accent)); cursor: default; margin-left: 2px; }

/* Cards */
.dash-cards { display: flex; gap: 0.6rem; }
.dash-card {
  flex: 1; min-width: 0;
  background: white; border-radius: 0.5rem;
  border: 1px solid hsl(var(--border)); padding: 0.75rem;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.35rem;
}
.card-header .ctitle {
  font-size: 10px; font-weight: 600;
  color: hsl(var(--foreground));
  display: flex; align-items: center; gap: 0.25rem;
}
.card-header .cicons { display: flex; gap: 0.35rem; color: hsl(var(--muted-foreground)); }
.card-header .cicons svg { width: 12px; height: 12px; }

.big-num {
  font-size: 20px; font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.03em; line-height: 1.2;
}
.big-num .sub { font-size: 11px; font-weight: 400; color: hsl(var(--muted-foreground)); }

.stats-row {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 0.2rem 0 0.35rem; font-size: 10px;
}
.stats-row .smute { color: hsl(var(--muted-foreground)); }
.stats-row .pos { color: #16a34a; font-weight: 600; }
.stats-row .neg { color: #dc2626; font-weight: 600; }

.dash-chart { height: 72px; width: 100%; }

.acct-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 0; font-size: 10px; font-weight: 500;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border));
}
.acct-row:last-child { border-bottom: none; }
.acct-dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; margin-right: 0.35rem;
}

/* Transactions */
.dash-tx {
  background: white; border-radius: 0.5rem;
  border: 1px solid hsl(var(--border)); padding: 0.75rem;
}
.tx-heading { font-size: 10px; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.45rem; }
.tx-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.tx-table th {
  text-align: left; font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: hsl(var(--muted-foreground));
  padding: 0.3rem 0; border-bottom: 1px solid hsl(var(--border));
}
.tx-table th:nth-child(3), .tx-table td:nth-child(3) { text-align: right; }
.tx-table th:last-child, .tx-table td:last-child     { text-align: right; }
.tx-table td {
  padding: 0.35rem 0; color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border));
}
.tx-table tr:last-child td { border-bottom: none; }

.pill {
  display: inline-flex; align-items: center;
  padding: 1px 7px; border-radius: 9999px;
  font-size: 9px; font-weight: 600;
}
.pill.amber  { background: #fef3c7; color: #b45309; }
.pill.green  { background: #dcfce7; color: #16a34a; }
.pill.slate  { background: #f1f5f9; color: #475569; }

/* ──────────────────────────────────────────────
   SECTIONS (GENERAL)
──────────────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 5;
  background: white;
}
.section-container {
  max-width: 68rem;
  margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.badge.border-badge {
  display: inline-flex;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: hsl(var(--accent));
  background: hsla(var(--accent), 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.05rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  line-height: 1.6;
}
.text-center .section-desc { margin: 0 auto; }

/* ── PRODUCTOS ── */
.products-section {
  background: hsl(0,0%,99%);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.prod-card {
  position: relative;
  background: white;
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,175,185,0.4);
}
.prod-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.prod-icon svg { width: 24px; height: 24px; }

.prod-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prod-title .arrow {
  width: 16px; height: 16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.prod-card:hover .prod-title .arrow {
  opacity: 1; transform: translateX(0);
}
.prod-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* Featured Celurae Card */
.celurae-card {
  grid-column: 1 / -1;
  background: hsl(var(--foreground));
  color: white;
  border: none;
}
.celurae-card .prod-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, hsla(191,72%,42%,0.35) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.celurae-card:hover .prod-card-bg {
  opacity: 0.7;
}
.celurae-card * { position: relative; z-index: 1; }
.celurae-card .prod-icon {
  color: white;
  background: linear-gradient(135deg, hsl(191,72%,38%), hsl(205,68%,50%));
  box-shadow: 0 4px 20px hsla(191,72%,38%,0.4);
}
.celurae-card .prod-title { color: white; font-size: 1.8rem; }
.celurae-card .prod-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card.featured { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .celurae-card { grid-column: 1 / span 2; }
}

/* ── IDENTIDAD ── */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 860px) {
  .grid-2-cols {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.v-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: hsla(191,72%,42%,0.1);
  color: hsl(191,72%,38%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.value-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.4rem;
}
.value-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* ── CTA CONTACTO ── */
.cta-section {
  padding-bottom: 8rem;
}
.cta-banner {
  background: hsl(var(--foreground));
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dashboard);
}
.cta-content {
  position: relative; z-index: 10;
  max-width: 38rem; margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  color: white; margin-bottom: 1.25rem; line-height: 1.05;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; line-height: 1.6; margin-bottom: 2.5rem;
}
.btn-large { padding: 0.85rem 2rem; font-size: 1rem; }
.cta-banner .btn-primary { background: white; color: hsl(var(--foreground)); }
.cta-banner .btn-primary:hover { background: rgba(255,255,255,0.9); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.2); color: white; background: transparent; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, hsla(191,72%,42%,0.25) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 3.5rem 1.5rem;
  background: white;
  position: relative; z-index: 5;
}
.footer-container {
  max-width: 68rem; margin: 0 auto;
}
.f-top {
  display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start;
}
.f-copy {
  font-size: 0.85rem; color: hsl(var(--muted-foreground)); 
  margin-top: 0.75rem; line-height: 1.6;
}

.f-contact {
  display: flex; flex-direction: column; gap: 1rem;
}
.f-contact a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: hsl(var(--foreground)); text-decoration: none; 
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.f-contact a:hover { color: hsl(var(--accent)); }
.f-contact svg { width: 18px; height: 18px; color: hsl(var(--muted-foreground)); }

.f-socials {
  display: flex; gap: 1rem;
}
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: hsla(191,72%,42%,0.08); 
  color: hsl(191,72%,38%);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-icon:hover {
  background: linear-gradient(135deg, hsl(191,72%,38%), hsl(205,68%,50%));
  color: white; transform: translateY(-3px);
  box-shadow: 0 4px 14px hsla(191,72%,42%,0.3);
}
.social-icon svg { width: 20px; height: 20px; }

@media (min-width: 768px) {
  .f-top { flex-direction: row; justify-content: space-between; align-items: center; }
  .f-contact { flex-direction: row; gap: 2rem; }
}

/* ──────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(var(--dy,16px)); }
  to   { opacity:1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp var(--dur, 0.6s) cubic-bezier(.22,.68,0,1.2) forwards;
  animation-delay: var(--delay, 0s);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
/* ── DESKTOP (≥ 768px) ── */
@media (min-width: 768px) {
  .navbar { padding: 1.1rem 3rem; }
  .navbar-links { display: flex; }
  .hamburger { display: none !important; }
  /* Show desktop CTA, hide mobile-only items */
  #nav-cta-desktop { display: inline-flex !important; }
  .hero-sub { font-size: 1rem; }
  .dashboard-glass { padding: 1rem; }
  .dashboard-wrap { padding: 0 2rem; }
}
@media (min-width: 1024px) {
  .navbar { padding: 1.1rem 5rem; }
}

/* ── MOBILE (< 768px) ── */
@media (max-width: 767px) {
  /* Show hamburger, hide desktop nav links & CTA button */
  .hamburger { display: flex; }
  .navbar-links { display: none !important; }
  #nav-cta-desktop { display: none !important; }
  #nav-login { display: none !important; }

  /* Adjust logo for mobile */
  .navbar-logo img { height: 26px; }
  .logo-wordmark { font-size: 1.05rem; }

  /* Hero padding */
  .hero { padding-top: 1.75rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-sub { font-size: 0.88rem; }
}

/* ── SMALL (< 640px dashboard) ── */
@media (max-width: 640px) {
  .dash-sidebar { display: none; }
  .dash-cards   { flex-direction: column; }
  .dash-tb-right .label { display: none; }
  .dash-search  { display: none; }
}
