/* ═══════════════════════════════════════════
   CAUDESK B — LIGHT, DISRUPTIVE
   Warm white • Indigo accent • Bento layout
   ═══════════════════════════════════════════ */

:root {
  --bg:       #fafaf8;
  --bg-alt:   #f0efeb;
  --surface:  #ffffff;
  --border:   rgba(0, 0, 0, 0.07);
  --text:     #0f172a;
  --text-2:   #334155;
  --muted:    #64748b;
  --accent:   #6366f1;
  --accent-2: #818cf8;
  --accent-bg:#ede9fe;
  --green:    #10b981;
  --amber:    #f59e0b;
  --red:      #ef4444;
  --pink:     #ec4899;
  --radius:   16px;
  --radius-sm:10px;
  --shadow-s: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-m: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-l: 0 12px 48px rgba(0,0,0,0.08);
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

::selection { background: var(--accent-bg); color: var(--accent); }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════ */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.rv.show { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.34s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.logo b {
  color: var(--accent);
  font-weight: 900;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.3rem;
  margin-left: 0.5rem;
}

.lang-sep {
  color: var(--border);
  font-size: 0.7rem;
  line-height: 1;
  user-select: none;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 0.22rem 0.45rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.lang-btn:hover { color: var(--text); }

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem;
  gap: 0.25rem;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu a:hover { background: rgba(0,0,0,0.03); }
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.3s, background 0.2s;
  position: relative;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.32);
  background: #5558e6;
}

.btn:active { transform: scale(0.97); }

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-s);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.02);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-m);
}

.btn-full { width: 100%; }

.btn-ico {
  font-size: 1.05em;
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn-ico { transform: translateX(3px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-link i { font-size: 1.3em; color: var(--accent); }
.btn-link:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-pill i { font-size: 0.85em; }

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--text);
  max-width: 16ch;
  margin: 0 auto 1.5rem;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 50ch;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-origin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-origin i {
  color: var(--accent);
  font-size: 1.1em;
}

/* Hero blurs */
.hero-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
}

.hero-blur-1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.12);
  top: -180px;
  left: 50%;
  transform: translateX(-70%);
}

.hero-blur-2 {
  width: 500px;
  height: 500px;
  background: rgba(236, 72, 153, 0.08);
  top: -100px;
  right: -150px;
}

/* ═══════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════ */

.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
  background: var(--surface);
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

.ticker-track .sep {
  color: var(--accent);
  opacity: 0.4;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}

.chip i { font-size: 0.85em; }

.section-head h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 50ch;
  margin-top: 0.75rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════ */

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: rgba(99, 102, 241, 0.2);
}

.bento-wide {
  grid-column: span 2;
}

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

.bento-4 .bento-card {
  text-align: center;
}

.bento-4 .bento-icon {
  margin-inline: auto;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 1.1rem;
  color: var(--ic);
  background: var(--ic-bg);
}

.bento-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 55ch;
}

/* Mini attendance visual */
.bento-visual {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

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

.dot.green  { background: var(--green); }
.dot.amber  { background: var(--amber); }
.dot.red    { background: var(--red); }

/* Bar chart visual */
.bento-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  gap: 0.75rem;
  align-items: center;
}

.bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.bar {
  height: 7px;
  border-radius: 100px;
  background: var(--bg-alt);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--accent);
  width: 0%;
  transition: width 1.2s var(--ease);
}

.bar-fill.animated { width: var(--w); }

.bar-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-bg));
  border-radius: 2px;
}

.tl-step {
  position: relative;
  padding: 1.75rem 0;
}

.tl-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.tl-num {
  position: absolute;
  left: -3.5rem;
  top: 1.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-alt);
}

.tl-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.tl-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 48ch;
}

/* ═══════════════════════════════════════════
   COMPARE
   ═══════════════════════════════════════════ */

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.compare-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-s);
}

.compare-old {
  border-color: rgba(239, 68, 68, 0.15);
}

.compare-new {
  border-color: rgba(16, 185, 129, 0.2);
}

.compare-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.compare-old .compare-tag { color: var(--red); }
.compare-new .compare-tag { color: var(--green); }

.compare-tag i { font-size: 1.1em; }

.compare-side ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-side li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.compare-old li::before {
  content: "×";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--red);
}

.compare-new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--green);
}

.compare-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}

.price-card-pop {
  border-color: var(--accent);
  box-shadow: var(--shadow-m), 0 0 0 1px var(--accent);
}

.price-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.price-val {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.price-val span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-2);
}

.price-card li i {
  color: var(--accent);
  font-size: 0.85em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CTA / CONTACT
   ═══════════════════════════════════════════ */

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-m);
}

.cta-left h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-left p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cta-form label > span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.cta-form small {
  color: var(--muted);
  font-weight: 400;
}

.cta-form input,
.cta-form textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-msg {
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.2rem;
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   MANAGES BENTO (3-col)
   ═══════════════════════════════════════════ */

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

.manages-bento .bento-card {
  text-align: center;
}

.manages-bento .bento-icon {
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   DASHBOARD 3D PREVIEW
   ═══════════════════════════════════════════ */

.dashboard-section {
  overflow: hidden;
}

.dashboard-scene {
  perspective: 1400px;
  perspective-origin: 50% 40%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.dashboard-container {
  position: relative;
  width: 620px;
  max-width: 100%;
  height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
}

.dash-main {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  overflow: hidden;
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.dash-dots-row {
  display: flex;
  gap: 5px;
}

.dash-dots-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.dash-dots-row span:first-child { background: #ef4444; }
.dash-dots-row span:nth-child(2) { background: #f59e0b; }
.dash-dots-row span:nth-child(3) { background: #10b981; }

.dash-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}

.dash-badge-live {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: #10b981;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.dash-list {
  flex: 1;
  padding: 0.5rem 0;
  overflow: hidden;
}

.dash-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem;
  transition: background 0.2s;
}

.dash-row:hover {
  background: rgba(99, 102, 241, 0.04);
}

.dash-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  background: var(--ac);
  flex-shrink: 0;
}

.dash-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.dash-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.dash-status.present { background: #d1fae5; color: #059669; }
.dash-status.late    { background: #fef3c7; color: #d97706; }
.dash-status.absent  { background: #fee2e2; color: #dc2626; }

.dash-footer {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.dash-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  width: max-content;
  max-width: 280px;
  animation: float-in 0.8s var(--ease) both;
  box-shadow: var(--shadow-l);
}

.dash-float-1 {
  top: 20px;
  right: -60px;
  transform: translateZ(60px) rotate(2deg);
  animation-delay: 0.3s;
}

.dash-float-2 {
  bottom: 80px;
  left: -50px;
  transform: translateZ(45px) rotate(-1.5deg);
  animation-delay: 0.5s;
}

.dash-float-3 {
  bottom: 10px;
  right: -40px;
  transform: translateZ(35px) rotate(1deg);
  animation-delay: 0.7s;
}

@keyframes float-in {
  from { opacity: 0; transform: translateZ(0) translateY(20px) scale(0.9); }
}

.dash-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--fc);
  background: var(--fc-bg);
  flex-shrink: 0;
}

.dash-float-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
}

.dash-float-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.dash-float-content {
  min-width: 0;
}

.dash-float-content .dash-float-val {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Allergy floating card */
.dash-float-4 {
  top: 50px;
  left: -80px;
  transform: translateZ(50px) rotate(-1deg);
  animation-delay: 0.9s;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 240px;
  padding: 1rem 1.1rem;
}

.dash-float-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dash-float-header .dash-float-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-2);
}

.dash-allergy-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dash-allergy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.dash-allergy-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-2);
}

.dash-allergy-tag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tag-red    { background: #fee2e2; color: #dc2626; }
.tag-amber  { background: #fef3c7; color: #d97706; }
.tag-purple { background: #ede9fe; color: #7c3aed; }

/* ═══════════════════════════════════════════
   ABOUT / QUIÉNES SOMOS
   ═══════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.about-manifesto p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}

.about-manifesto p:last-child {
  margin-bottom: 0;
}

.about-tech {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-s);
}

.about-tech h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}

.tech-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--accent);
  background: var(--accent-bg);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo-footer { font-size: 1rem; }

.footer p {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-copy {
  font-size: 0.75rem !important;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .nav-right .nav-link,
  .nav-right .btn { display: none; }
  .nav-right { margin-left: auto; }
  .burger { display: flex; }

  .bento { grid-template-columns: 1fr; }
  .bento-4, .manages-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 1; }
  .bento-4 .bento-card, .manages-bento .bento-card { text-align: left; }
  .bento-4 .bento-icon, .manages-bento .bento-icon { margin-inline: 0; }
  .bento-visual { flex-direction: column; gap: 0.5rem; }

  .dashboard-container { height: 400px; }
  .dash-float-1 { right: -20px; }
  .dash-float-2 { left: -20px; }
  .dash-float-3 { right: -10px; }
  .dash-float-4 { left: -20px; top: 30px; }

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

  .compare { grid-template-columns: 1fr; }
  .compare-arrow { justify-self: center; transform: rotate(90deg); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  .cta-box { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero { padding: 4rem 0 2.5rem; }
  .section { padding: 3.5rem 0; }
  .bento-4 { grid-template-columns: 1fr; }

  .dashboard-container { height: 360px; }
  .dash-float { max-width: 200px; padding: 0.65rem 0.85rem; }
  .dash-float-1 { right: -10px; top: 10px; }
  .dash-float-2 { left: -10px; }
  .dash-float-3 { right: -5px; }
  .dash-float-4 { left: -5px; top: 20px; max-width: 190px; }
  .dash-float-val { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
}
