﻿/* â”€â”€â”€ Reset & base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #0064e0;
  --brand-dark: #0050b8;
  --brand-soft: #eff6ff;
  --text:       #0f172a;
  --text-muted: #475569;
  --text-subtle:#94a3b8;
  --bg:         #ffffff;
  --surface:    #f8fafc;
  --border:     #e2e8f0;
  --radius:     12px;
  --radius-sm:  8px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* â”€â”€â”€ Dark mode â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dark-vars {
  --brand:      #3b82f6;
  --brand-dark: #2563eb;
  --brand-soft: #1e3a5f;
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle:#64748b;
  --bg:         #0b1220;
  --surface:    #111827;
  --border:     #1e2d40;
}
@media (prefers-color-scheme: dark) {
  :root {
    --brand:      #3b82f6;
    --brand-dark: #2563eb;
    --brand-soft: #1e3a5f;
    --text:       #f1f5f9;
    --text-muted: #94a3b8;
    --text-subtle:#64748b;
    --bg:         #0b1220;
    --surface:    #111827;
    --border:     #1e2d40;
  }
}
html.dark {
  --brand:      #3b82f6;
  --brand-dark: #2563eb;
  --brand-soft: #1e3a5f;
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle:#64748b;
  --bg:         #0b1220;
  --surface:    #111827;
  --border:     #1e2d40;
}
html.light {
  --brand:      #0064e0;
  --brand-dark: #0050b8;
  --brand-soft: #eff6ff;
  --text:       #0f172a;
  --text-muted: #475569;
  --text-subtle:#94a3b8;
  --bg:         #ffffff;
  --surface:    #f8fafc;
  --border:     #e2e8f0;
}

/* Logo switching */
html.dark  .logo-light, @media (prefers-color-scheme: dark) { }
.logo-dark  { display: none; }
.logo-light { display: block; }
html.dark .logo-light  { display: none; }
html.dark .logo-dark   { display: block; }
@media (prefers-color-scheme: dark) {
  .logo-light { display: none; }
  .logo-dark  { display: block; }
}
html.light .logo-light { display: block !important; }
html.light .logo-dark  { display: none  !important; }

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--surface); color: var(--text); }
.theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun  { display: none; }
html.dark .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  .theme-toggle .icon-sun  { display: none; }
  .theme-toggle .icon-moon { display: block; }
}
html.light .theme-toggle .icon-sun  { display: block !important; }
html.light .theme-toggle .icon-moon { display: none  !important; }
.theme-toggle svg { width: 16px; height: 16px; }

/* â”€â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text-muted); }

.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-white:hover { background: #f0f4ff; }

.btn-lg  { padding: 0.75rem 1.75rem; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* â”€â”€â”€ Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.85rem;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links > a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links > a:not(.btn):hover { color: var(--text); }

.nav-hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile a {
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin: 0.5rem clamp(1rem, 4vw, 2.5rem) 0; width: calc(100% - clamp(2rem, 8vw, 5rem)); }

@media (max-width: 700px) {
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
}

/* â”€â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--bg);
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  text-align: left;
}
.hero-right {
  position: relative;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgb(124 58 237 / 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgb(0 100 224 / 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% -10%, rgb(0 100 224 / 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  background: linear-gradient(135deg, rgb(124 58 237 / 0.15), rgb(0 100 224 / 0.15));
  border: 1px solid rgb(124 58 237 / 0.3);
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-br { display: none; }
.hero-sub {
  max-width: 480px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}
/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.proof-faces {
  display: flex;
}
.proof-face {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  flex-shrink: 0;
}
.proof-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 16px;
}
.btn-glow {
  box-shadow: 0 0 24px rgb(0 100 224 / 0.4), 0 4px 12px rgb(0 100 224 / 0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px rgb(0 100 224 / 0.4), 0 4px 12px rgb(0 100 224 / 0.3); }
  50%       { box-shadow: 0 0 40px rgb(0 100 224 / 0.6), 0 4px 20px rgb(0 100 224 / 0.5); }
}

/* â”€â”€â”€ Old hero mockup (unused) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-mockup {
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 0.2),
    0 32px 80px -20px rgb(0 0 0 / 0.5),
    0 0 60px -10px rgb(0 100 224 / 0.15);
  overflow: hidden;
  background: #0d1526;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0a1020;
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: #ef4444; }
.dot-amber { background: #f59e0b; }
.dot-green { background: #22c55e; }
.mockup-url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgb(255 255 255 / 0.25);
  font-family: monospace;
}
.mockup-body {
  display: flex;
  height: 340px;
}

/* Sidebar */
.mockup-sidebar {
  width: 56px;
  flex-shrink: 0;
  border-right: 1px solid rgb(255 255 255 / 0.06);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #080e1c;
}
.mockup-brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  margin-bottom: 8px;
  align-self: center;
}
.mockup-nav-item {
  height: 26px;
  border-radius: 6px;
  background: rgb(255 255 255 / 0.06);
}
.mockup-nav-item.active {
  background: rgb(59 130 246 / 0.25);
  border: 1px solid rgb(59 130 246 / 0.4);
}

/* Main content area */
.mockup-content {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* Page header */
.mockup-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.mockup-page-title {
  height: 10px;
  width: 90px;
  border-radius: 4px;
  background: rgb(255 255 255 / 0.15);
}
.mockup-header-actions { display: flex; gap: 6px; }
.mockup-btn-ghost {
  height: 20px; width: 52px; border-radius: 5px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
}
.mockup-btn-primary {
  height: 20px; width: 68px; border-radius: 5px;
  background: rgb(59 130 246 / 0.5);
}

/* Stats row */
.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mockup-stat-card {
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: 8px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-stat-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup-stat-icon svg { width: 12px; height: 12px; }
.mockup-stat-num {
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  font-family: ui-monospace, monospace;
}
.mockup-stat-lbl {
  font-size: 0.52rem;
  color: rgb(255 255 255 / 0.3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Task list */
.mockup-task-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  border: 1px solid rgb(255 255 255 / 0.07);
  border-radius: 8px;
  overflow: hidden;
}
.mockup-task-header {
  display: grid;
  grid-template-columns: 8px 1fr 80px 50px 28px;
  gap: 8px;
  align-items: center;
  padding: 5px 10px;
  background: rgb(255 255 255 / 0.04);
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
}
.mockup-th-col {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgb(255 255 255 / 0.25);
  font-weight: 600;
}
.mockup-task {
  display: grid;
  grid-template-columns: 8px 1fr 80px 50px 28px;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-bottom: 1px solid rgb(255 255 255 / 0.04);
}
.mockup-task:last-child { border-bottom: none; }
.mockup-task-active { background: rgb(59 130 246 / 0.06); }
.mockup-task-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-task-bar {
  height: 6px;
  border-radius: 3px;
  background: rgb(255 255 255 / 0.12);
}
.mockup-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.mockup-task-date {
  height: 5px; width: 36px;
  border-radius: 3px;
  background: rgb(255 255 255 / 0.08);
}
.mockup-task-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.42rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* â”€â”€â”€ Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.strip {
  border-block: 1px solid var(--border);
  padding-block: 1rem;
  background: var(--surface);
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.strip-svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.strip-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* â”€â”€â”€ Section labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* â”€â”€â”€ Features â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 32px -8px rgb(0 0 0 / 0.2);
  transform: translateY(-3px);
  border-color: rgb(59 130 246 / 0.3);
}
.feature-card-accent {
  border-color: rgb(139 92 246 / 0.4);
  background: linear-gradient(135deg, rgb(139 92 246 / 0.05), rgb(59 130 246 / 0.05));
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.feature-icon svg { width: 22px; height: 22px; }

/* Light mode: soft coloured tint per icon */
.fi-blue   { background: #eff6ff; color: #0064e0; border: 1px solid #bfdbfe; }
.fi-green  { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.fi-purple { background: #faf5ff; color: #7c3aed; border: 1px solid #e9d5ff; }
.fi-orange { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.fi-amber  { background: #fefce8; color: #ca8a04; border: 1px solid #fde68a; }

/* Dark mode: uniform dark tile, icon colour stays vivid */
html.dark .fi-blue, html.dark .fi-green, html.dark .fi-purple,
html.dark .fi-orange, html.dark .fi-amber {
  background: #1e293b;
  border: 1px solid rgb(255 255 255 / 0.07);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.25);
}
html.dark .fi-blue   { color: #60a5fa; }
html.dark .fi-green  { color: #4ade80; }
html.dark .fi-purple { color: #c084fc; }
html.dark .fi-orange { color: #fb923c; }
html.dark .fi-amber  { color: #fbbf24; }

@media (prefers-color-scheme: dark) {
  html:not(.light) .fi-blue, html:not(.light) .fi-green, html:not(.light) .fi-purple,
  html:not(.light) .fi-orange, html:not(.light) .fi-amber {
    background: #1e293b;
    border: 1px solid rgb(255 255 255 / 0.07);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.25);
  }
  html:not(.light) .fi-blue   { color: #60a5fa; }
  html:not(.light) .fi-green  { color: #4ade80; }
  html:not(.light) .fi-purple { color: #c084fc; }
  html:not(.light) .fi-orange { color: #fb923c; }
  html:not(.light) .fi-amber  { color: #fbbf24; }
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.badge-new {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* â”€â”€â”€ How it works â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
}
.how-step {
  flex: 1;
  padding: 2rem;
}
.how-connector {
  width: 2px;
  height: 80px;
  margin-top: 2.5rem;
  background: linear-gradient(to bottom, var(--brand), transparent);
  flex-shrink: 0;
  align-self: flex-start;
}
.how-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-subtle);
  opacity: 1;
  margin-bottom: 0.75rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .how-steps    { flex-direction: column; }
  .how-connector { width: 40px; height: 2px; margin: 0 0 0 2rem; background: linear-gradient(to right, var(--brand), transparent); }
}

/* â”€â”€â”€ Pricing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px;
  margin-bottom: 2.5rem;
}
.toggle-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toggle-btn.toggle-active {
  background: var(--brand);
  color: #fff;
}
.toggle-save {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  padding: 0.1rem 0.4rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.toggle-btn:not(.toggle-active) .toggle-save {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.plan-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.plan-card-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgb(0 100 224 / 0.08);
}
.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.plan-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.plan-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.plan-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.plan-features .check {
  width: 14px;
  height: 14px;
  color: var(--brand);
  flex-shrink: 0;
}
.plan-feature-muted { opacity: 0.55; }
.plan-trial-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: -0.5rem;
}
.plan-card-enterprise {
  background: var(--surface);
}
.badge-ai {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  background: linear-gradient(135deg, #7c3aed, #0064e0);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 2px;
}
.x-icon {
  width: 14px;
  height: 14px;
  color: var(--text-subtle);
  flex-shrink: 0;
}
.pricing-footnote {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
}
.pricing-footnote a {
  color: var(--brand);
  text-decoration: underline;
}

/* â”€â”€â”€ CTA banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: linear-gradient(135deg, #0050b8 0%, #0064e0 50%, #3b82f6 100%);
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 2rem;
}

/* â”€â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-subtle);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 100px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-subtle);
}

/* â”€â”€â”€ App window (hero) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.app-window {
  border-radius: 12px;
  overflow: hidden;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 60px -10px rgba(59,130,246,0.15);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.app-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #080d14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-chrome-url {
  margin-left: 8px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  font-family: monospace;
}
.app-layout {
  display: flex;
  height: 460px;
}

/* Sidebar */
.app-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: #070c15;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 6px;
}
.app-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FF751F, #FBAE42);
  flex-shrink: 0;
}
.app-brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
}
.app-nav { display: flex; flex-direction: column; gap: 2px; }
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.1s;
}
.app-nav-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.app-nav-item:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); }
.app-nav-active {
  background: rgba(59,130,246,0.15) !important;
  color: #60a5fa !important;
  font-weight: 600;
  box-shadow: inset 2px 0 0 #3b82f6;
}

/* Main content */
.app-main {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background: #0d1117;
}
.app-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.app-page-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.app-page-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.app-btn-new {
  padding: 4px 10px;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.app-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
}
.app-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 8px 10px;
}
.app-stat-val {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
  font-family: ui-monospace, monospace;
}
.app-stat-lbl {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-section-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}
.app-tasks {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.app-task {
  display: grid;
  grid-template-columns: 8px 1fr auto auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.68rem;
}
.app-task:last-child { border-bottom: none; }
.app-task-hl { background: rgba(59,130,246,0.05); }
.app-task-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.app-task-name { color: rgba(255,255,255,0.8); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-task-proj { color: rgba(255,255,255,0.3); white-space: nowrap; font-size: 0.6rem; }
.app-task-badge { padding: 2px 6px; border-radius: 4px; font-size: 0.58rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.02em; }
.app-task-date { color: rgba(255,255,255,0.3); white-space: nowrap; font-size: 0.6rem; }
.app-task-av { width: 20px; height: 20px; border-radius: 50%; font-size: 0.45rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* â”€â”€â”€ Feature Spotlights â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spotlights { background: var(--bg); }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(3rem, 5vw, 5rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  max-width: 1140px;
  margin-inline: auto;
  border-bottom: 1px solid var(--border);
}
.spotlight:last-child { border-bottom: none; }
.spotlights { border-top: 1px solid var(--border); }
.spotlight-flip { direction: rtl; }
.spotlight-flip > * { direction: ltr; }
.spotlight-visual { align-self: center; }

.spotlight-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.spotlight-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 440px;
}
.spot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.spot-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.spot-list li svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Spotlight app windows */
.sp-window {
  border-radius: 10px;
  overflow: hidden;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6), 0 0 40px -8px rgba(59,130,246,0.12);
}
.sp-win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #080d14;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-win-title {
  margin-left: 8px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  font-family: ui-sans-serif, sans-serif;
}

/* Kanban */
.sp-kanban {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: 14px;
  gap: 8px;
  min-height: 320px;
}
.sp-col { display: flex; flex-direction: column; gap: 6px; }
.sp-col-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 6px;
}
.sp-col-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sp-col-cnt {
  margin-left: auto;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}
.sp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-card-active {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.06);
}
.sp-card-done { opacity: 0.5; }
.sp-card-title { font-size: 0.68rem; color: rgba(255,255,255,0.8); line-height: 1.3; font-weight: 500; }
.sp-card-meta { display: flex; align-items: center; justify-content: space-between; }
.sp-pri { font-size: 0.55rem; font-weight: 700; padding: 2px 5px; border-radius: 3px; }
.sp-pri-high { background: rgba(239,68,68,0.2); color: #ef4444; }
.sp-pri-med  { background: rgba(245,158,11,0.2); color: #f59e0b; }
.sp-pri-low  { background: rgba(100,116,139,0.2); color: #94a3b8; }
.sp-av { width: 18px; height: 18px; border-radius: 50%; font-size: 0.42rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-av-sm { width: 16px; height: 16px; font-size: 0.38rem; }
.sp-check-ic { font-size: 0.75rem; color: #22c55e; font-weight: 700; }
.sp-progress-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.sp-progress-fill { height: 100%; background: #3b82f6; border-radius: 2px; }

/* Client view */
.sp-client { padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 320px; }
.sp-client-header { display: flex; align-items: center; gap: 10px; }
.sp-client-av {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg,#3b82f6,#8b5cf6);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sp-client-name { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.sp-client-meta { font-size: 0.6rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.sp-client-btn {
  margin-left: auto; padding: 4px 8px;
  background: rgba(59,130,246,0.2); border: 1px solid rgba(59,130,246,0.4);
  color: #60a5fa; border-radius: 5px; font-size: 0.58rem; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.sp-client-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.sp-cs { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 7px 8px; }
.sp-cs-val { font-size: 0.9rem; font-weight: 800; line-height: 1; margin-bottom: 2px; font-family: ui-monospace, monospace; }
.sp-cs-lbl { font-size: 0.52rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.04em; }
.sp-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sp-tab { font-size: 0.65rem; padding: 5px 10px; color: rgba(255,255,255,0.3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.sp-tab-active { color: #60a5fa; border-bottom-color: #3b82f6; font-weight: 600; }
.sp-activity { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sp-act-item { display: flex; align-items: center; gap: 8px; }
.sp-act-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sp-act-text { font-size: 0.65rem; color: rgba(255,255,255,0.5); flex: 1; }
.sp-act-text strong { color: rgba(255,255,255,0.75); }
.sp-act-time { font-size: 0.58rem; color: rgba(255,255,255,0.25); white-space: nowrap; }

/* AI meeting notes */
.sp-ai { display: flex; flex-direction: column; gap: 0; min-height: 320px; }
.sp-ai-input {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-ai-input-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.65rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.sp-ai-processing { display: flex; align-items: center; gap: 6px; }
.sp-ai-wave { display: flex; align-items: center; gap: 2px; height: 14px; }
.sp-ai-wave span {
  display: block; width: 3px; border-radius: 2px; background: #8b5cf6;
  animation: wave 1s ease-in-out infinite;
}
.sp-ai-wave span:nth-child(1) { height: 4px; animation-delay: 0s; }
.sp-ai-wave span:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.sp-ai-wave span:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.sp-ai-wave span:nth-child(4) { height: 10px; animation-delay: 0.3s; }
.sp-ai-wave span:nth-child(5) { height: 6px; animation-delay: 0.4s; }
.sp-ai-wave span:nth-child(6) { height: 12px; animation-delay: 0.5s; }
.sp-ai-wave span:nth-child(7) { height: 4px; animation-delay: 0.6s; }
@keyframes wave {
  0%,100% { transform: scaleY(1); opacity:0.6; }
  50%      { transform: scaleY(1.6); opacity:1; }
}
.sp-ai-output { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sp-ai-section-title {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.sp-ai-bullets { list-style: none; display: flex; flex-direction: column; gap: 5px; padding-left: 6px; }
.sp-ai-bullets li {
  font-size: 0.68rem; color: rgba(255,255,255,0.65); line-height: 1.4;
  padding-left: 10px; position: relative;
}
.sp-ai-bullets li::before { content: ''; position: absolute; left: 0; top: 6px; width: 4px; height: 4px; border-radius: 50%; background: rgba(139,92,246,0.7); }
.sp-ai-tasks { display: flex; flex-direction: column; gap: 5px; }
.sp-ai-task { display: flex; align-items: center; gap: 7px; }
.sp-ai-cb {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: #3b82f6; flex-shrink: 0;
}
.sp-ai-task span:nth-child(2) { font-size: 0.68rem; color: rgba(255,255,255,0.7); flex: 1; }

/* â”€â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-card-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgb(0 100 224 / 0.06);
}
.testi-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  color: #fff; font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text-subtle); margin-top: 1px; }

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-left { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-proof { justify-content: center; }
  .app-window { max-width: 680px; margin-inline: auto; }
  .app-layout { height: 380px; }
  .spotlight { grid-template-columns: 1fr; gap: 2rem; }
  .spotlight-flip { direction: ltr; }
  /* Text always first, visual always second on mobile */
  .spotlight-text  { order: 1; }
  .spotlight-visual { order: 2; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 860px) {
  .how-connector { display: none; }
  .app-sidebar { width: 120px; }
  .app-nav-item span { display: none; }
  .app-task-proj, .app-task-date { display: none; }
  .app-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .app-layout { height: 300px; }
  .app-sidebar { display: none; }
  .sp-kanban { grid-template-columns: 1fr 1fr; }
  .sp-kanban .sp-col:last-child { display: none; }
  .strip-inner { gap: 0; }
  .strip-item { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero-left .btn { width: 100%; justify-content: center; }
  .app-window { animation: none; }
}

/* â”€â”€â”€ Showcase (gradient ClickUp-style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.showcase {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 70% 80% at 15% 30%, #7c6ff7 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 20%, #3b82f6 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 100%, #1e1b4b 0%, transparent 70%),
    linear-gradient(135deg, #0f1729 0%, #1e1b4b 40%, #312e81 100%);
  overflow: hidden;
}
.showcase-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgb(255 255 255 / 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
}
.showcase-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  max-width: 640px;
}
.showcase-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-dark {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  font-weight: 700;
  border-radius: 12px;
}
.btn-dark:hover { background: #1a1a1a; border-color: #1a1a1a; }
.showcase-cta-note {
  font-size: 0.88rem;
  color: rgb(255 255 255 / 0.92);
  line-height: 1.35;
}
.showcase-cta-note strong { font-weight: 700; }
.showcase-trust {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.showcase-trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: rgb(255 255 255 / 0.75);
}
.showcase-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.trust-pill {
  padding: 0.5rem 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}

.showcase-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 50px 100px -20px rgb(0 0 0 / 0.45),
    0 30px 60px -30px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(255 255 255 / 0.1);
}
.ss-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.ss-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: ui-monospace, monospace;
}
.ss-body {
  display: flex;
  min-height: 520px;
  background: #fff;
}
html.dark .showcase-shot { background: #0b1220; }
html.dark .ss-chrome { background: #111827; border-bottom-color: #1e2d40; }
html.dark .ss-body { background: #0b1220; }

.ss-sidebar {
  width: 200px;
  flex-shrink: 0;
  padding: 14px 10px;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.78rem;
}
html.dark .ss-sidebar { background: #111827; border-right-color: #1e2d40; }
.ss-side-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  padding: 4px;
  font-size: 0.95rem;
}
html.dark .ss-side-brand { color: #f1f5f9; }
.ss-side-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7c6ff7, #a855f7);
}
.ss-side-section {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 14px 6px 6px;
}
.ss-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #475569;
  font-weight: 500;
  cursor: pointer;
}
html.dark .ss-side-item { color: #94a3b8; }
.ss-side-item.active {
  background: rgb(124 111 247 / 0.12);
  color: #7c6ff7;
  font-weight: 600;
}
.ss-side-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ss-side-cnt {
  margin-left: auto;
  font-size: 0.65rem;
  background: #ef4444;
  color: #fff;
  padding: 1px 6px;
  border-radius: 99px;
  font-weight: 700;
}
.ss-side-emoji {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.ss-main {
  flex: 1;
  padding: 16px 20px;
  overflow: hidden;
}
.ss-bar {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.ss-bar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
html.dark .ss-bar-title { color: #f1f5f9; }
.ss-bar-tabs { display: flex; gap: 4px; }
.ss-tab {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
}
.ss-tab-active { background: #f1f5f9; color: #0f172a; }
html.dark .ss-tab { color: #94a3b8; }
html.dark .ss-tab-active { background: #1e2d40; color: #f1f5f9; }
.ss-bar-new {
  margin-left: auto;
  background: #7c6ff7;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.ss-table {
  font-size: 0.78rem;
  color: #0f172a;
}
html.dark .ss-table { color: #f1f5f9; }
.ss-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 6px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  border-bottom: 1px solid #e2e8f0;
}
html.dark .ss-table-head { border-bottom-color: #1e2d40; }
.ss-group { margin-top: 10px; }
.ss-group-hd {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 6px;
  color: #64748b;
  margin-bottom: 4px;
}
.ss-group-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
}
.ss-group-pill span {
  background: rgb(0 0 0 / 0.1);
  padding: 0 5px;
  border-radius: 99px;
  font-size: 0.65rem;
}
.ss-pill-done { background: rgb(34 197 94 / 0.15); color: #16a34a; }
.ss-pill-progress { background: rgb(59 130 246 / 0.15); color: #2563eb; }
.ss-pill-todo { background: rgb(148 163 184 / 0.18); color: #64748b; }
.ss-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
}
.ss-row-hl { background: rgb(124 111 247 / 0.06); }
.ss-cell, .ss-cell-name, .ss-cell-avs { display: flex; align-items: center; gap: 6px; }
.ss-cell-name { font-weight: 500; }
.ss-muted { color: #94a3b8; }
.ss-check {
  width: 14px; height: 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
}
.ss-check-done {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
  font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.ss-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.ss-cell-avs .ss-av:not(:first-child) { margin-left: -8px; }
html.dark .ss-av { border-color: #0b1220; }
.ss-label {
  padding: 2px 7px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
}
.ss-label-blue   { background: rgb(59 130 246 / 0.15);  color: #2563eb; }
.ss-label-green  { background: rgb(34 197 94 / 0.15);   color: #16a34a; }
.ss-label-purple { background: rgb(168 85 247 / 0.15);  color: #9333ea; }
.ss-flag { font-size: 0.7rem; }
.ss-flag-high { color: #ef4444; }
.ss-flag-med  { color: #f59e0b; }
.ss-flag-low  { color: #94a3b8; }

@media (max-width: 880px) {
  .showcase-top { flex-direction: column; align-items: flex-start; }
  .ss-sidebar { display: none; }
  .ss-body { min-height: 360px; }
}
@media (max-width: 500px) {
  .ss-table-head, .ss-row { grid-template-columns: 1.4fr 1fr; }
  .ss-table-head > :nth-child(3), .ss-table-head > :nth-child(4),
  .ss-row > :nth-child(3), .ss-row > :nth-child(4) { display: none; }
}

/* â”€â”€â”€ Showcase: Serova brand styling + interactivity â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.showcase-shot { font-family: 'Satoshi', 'Inter', var(--font); }
.ss-side-mark { background: linear-gradient(135deg, #7c6ff7 0%, #a78bfa 100%); }
.ss-side-item.active { background: rgb(124 111 247 / 0.10); color: #7c6ff7; }
.ss-side-item.active .ss-side-dot { background: #7c6ff7 !important; }
.ss-side-item:hover { background: rgb(124 111 247 / 0.06); color: #0f172a; cursor: pointer; }
html.dark .ss-side-item:hover { color: #f1f5f9; }
.ss-bar-new {
  background: #7c6ff7;
  box-shadow: 0 1px 2px rgb(124 111 247 / 0.3);
}
.ss-bar-new:hover { background: #6d5fe0; }

.ss-tab {
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ss-tab:hover:not(.ss-tab-active) { background: rgb(124 111 247 / 0.05); color: #7c6ff7; }
.ss-tab-active { background: #fff; color: #7c6ff7; border-color: #e2e8f0; box-shadow: 0 1px 2px rgb(0 0 0 / 0.04); }
html.dark .ss-tab-active { background: #1e2d40; color: #a78bfa; border-color: #2a3a52; }

/* Views */
.ss-view { display: none; animation: ssFade 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
.ss-view-active { display: block; }
@keyframes ssFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Group caret rotation */
.ss-caret { transition: transform 0.2s; }
.ss-group.collapsed .ss-caret { transform: rotate(-90deg); }
.ss-group.collapsed .ss-row { display: none; }
.ss-group-hd { cursor: pointer; user-select: none; }

/* Row interactivity */
.ss-row {
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
}
.ss-row:hover { background: rgb(124 111 247 / 0.05); }
html.dark .ss-row:hover { background: rgb(124 111 247 / 0.08); }
.ss-row[data-done="true"] .ss-cell-name { color: #94a3b8; text-decoration: line-through; text-decoration-color: #cbd5e1; }
.ss-row-hl { background: rgb(124 111 247 / 0.08); border-left: 2px solid #7c6ff7; }

.ss-check {
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.ss-check:hover { border-color: #7c6ff7; }
.ss-check:active { transform: scale(0.9); }
.ss-check-done { background: #7c6ff7 !important; border-color: #7c6ff7 !important; }

/* Brand colors for badges/labels */
.ss-label-purple { background: rgb(124 111 247 / 0.12); color: #7c6ff7; }
.ss-pill-progress { background: rgb(124 111 247 / 0.12); color: #7c6ff7; }

/* â”€â”€ Board view â”€â”€ */
.ss-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 6px;
}
.ss-board .ss-col {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}
html.dark .ss-board .ss-col { background: #111827; }
.ss-board .ss-col-hd { margin-bottom: 4px; }
.ss-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: grab;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.ss-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgb(0 0 0 / 0.12);
  border-color: rgb(124 111 247 / 0.4);
}
html.dark .ss-card { background: #0b1220; border-color: #1e2d40; }
.ss-card-active {
  border-color: rgb(124 111 247 / 0.5);
  box-shadow: 0 4px 12px -4px rgb(124 111 247 / 0.3);
}
.ss-card-done { opacity: 0.72; }
.ss-card-done .ss-card-title { text-decoration: line-through; text-decoration-color: #94a3b8; }
.ss-card-title { font-size: 0.82rem; font-weight: 600; color: #0f172a; line-height: 1.35; }
html.dark .ss-card-title { color: #f1f5f9; }
.ss-card-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ss-card-bar {
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  overflow: hidden;
}
html.dark .ss-card-bar { background: #1e2d40; }
.ss-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c6ff7, #a78bfa);
  border-radius: 2px;
}
.ss-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.ss-mini-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px; height: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 0.5rem;
  border-radius: 3px;
  margin-right: 5px;
}

/* â”€â”€ Gantt view â”€â”€ */
.ss-gantt {
  position: relative;
  font-size: 0.78rem;
  padding-top: 4px;
}
.ss-gantt-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin-bottom: 8px;
}
.ss-gantt-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
}
html.dark .ss-gantt-weeks { border-bottom-color: #1e2d40; }
.ss-gantt-weeks span {
  padding-left: 8px;
  border-left: 1px solid #e2e8f0;
}
html.dark .ss-gantt-weeks span { border-left-color: #1e2d40; }
.ss-gantt-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}
html.dark .ss-gantt-row { border-bottom-color: #1e2d40; }
.ss-gantt-task {
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  padding-right: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html.dark .ss-gantt-task { color: #cbd5e1; }
.ss-gantt-track {
  position: relative;
  height: 22px;
  background:
    linear-gradient(to right, transparent calc(25% - 1px), #e2e8f0 calc(25% - 1px), #e2e8f0 25%, transparent 25%) repeat-x;
  background-size: 100% 100%;
}
html.dark .ss-gantt-track {
  background:
    linear-gradient(to right, transparent calc(25% - 1px), #1e2d40 calc(25% - 1px), #1e2d40 25%, transparent 25%) repeat-x;
}
.ss-gantt-bar {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.ss-gantt-bar:hover { transform: translateY(-1px); box-shadow: 0 4px 8px -2px rgb(0 0 0 / 0.15); }
.ss-gb-done     { background: linear-gradient(90deg, #22c55e, #16a34a); }
.ss-gb-progress { background: rgb(124 111 247 / 0.25); border: 1px solid rgb(124 111 247 / 0.5); }
.ss-gb-todo     { background: rgb(148 163 184 / 0.2); border: 1px dashed #94a3b8; }
.ss-gantt-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c6ff7, #a78bfa);
}
.ss-gantt-today {
  position: absolute;
  top: 32px; bottom: 0;
  width: 2px;
  background: #ef4444;
  margin-left: 160px;
  pointer-events: none;
}
.ss-gantt-today::before {
  content: 'Today';
  position: absolute;
  top: -16px;
  left: -16px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ef4444;
  background: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid #ef4444;
}
html.dark .ss-gantt-today::before { background: #0b1220; }

@media (max-width: 880px) {
  .ss-board { grid-template-columns: 1fr; }
  .ss-gantt-head, .ss-gantt-row { grid-template-columns: 110px 1fr; }
  .ss-gantt-today { margin-left: 110px; }
}

