/* Chronell marketing site — brand gradients + glass */

:root {
  --brand-sky: #78b8fd;
  --brand-royal: #424cd0;
  --brand-violet: #7c6fe1;
  --brand-gradient: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-royal) 52%, var(--brand-violet) 100%);
  --brand-gradient-soft: linear-gradient(135deg, #8ec5ff 0%, #5a64e0 55%, #9a8ef0 100%);

  --chronell-primary: 224 58% 54%;
  --chronell-primary-soft: 212 96% 73%;
  --chronell-accent: 249 65% 66%;
  --chronell-accent-soft: 249 72% 74%;
  --chronell-blue: 212 96% 73%;
  --chronell-primary-glow: 224 58% 54% / 0.42;
  --chronell-navy: 234 28% 6%;
  --chronell-violet: 249 65% 66%;
  --chronell-magenta: 249 65% 66%;
  --chronell-cyan: 212 96% 73%;
  --chronell-green: 142 71% 45%;

  --background: 234 22% 7%;
  --foreground: 220 12% 96%;
  --muted: 225 12% 62%;

  --glass-blur: 20px;
  --glass-saturation: 1.35;
  --glass-surface: 234 18% 12% / 0.74;
  --glass-border: 220 30% 96% / 0.12;
  --glass-highlight: 220 15% 100% / 0.08;
  --glass-shadow: 0 12px 40px hsl(0 0% 0% / 0.42);
  --glass-shadow-sm: 0 4px 20px hsl(0 0% 0% / 0.28);

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-sm: 0.5rem;
  --font: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-h: 4.5rem;
  --max-w: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-feature-settings: 'rlig' 1, 'calt' 1;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Mesh background */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: hsl(var(--chronell-navy));
  overflow: hidden;
}

.mesh-bg::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 12% 18%, color-mix(in srgb, var(--brand-sky) 38%, transparent), transparent 52%),
    radial-gradient(ellipse at 88% 12%, color-mix(in srgb, var(--brand-violet) 28%, transparent), transparent 50%),
    radial-gradient(ellipse at 50% 72%, color-mix(in srgb, var(--brand-royal) 32%, transparent), transparent 58%),
    radial-gradient(ellipse at 92% 88%, color-mix(in srgb, var(--brand-violet) 22%, transparent), transparent 48%);
  filter: blur(60px);
  animation: mesh-drift 25s ease-in-out infinite;
}

.mesh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.mesh-orb {
  display: none;
}

@keyframes mesh-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(3%, -2%) rotate(1deg);
  }
  66% {
    transform: translate(-2%, 3%) rotate(-1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mesh-bg::before {
    animation: none;
  }

  .hero-badge-dot {
    animation: none;
  }

  .starfield,
  .co,
  .celestial--hero .co,
  .chronos-sundial::after,
  .chronos-timeline::before,
  .chronos-timeline::after,
  .chronos-pendulum,
  .chronos-hour-ring {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glass-panel,
  .glass-panel-elevated,
  .site-header,
  .hero-search,
  .screenshot-frame {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: hsl(220 8% 12%);
  }
}

a {
  color: hsl(var(--chronell-primary));
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: hsl(217 91% 72%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* Glass utilities */
.glass-panel {
  background: hsl(var(--glass-surface));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  border: 1px solid hsl(var(--glass-border));
  box-shadow: var(--glass-shadow-sm);
  border-radius: var(--radius-lg);
}

.glass-panel-elevated {
  background: hsl(var(--glass-surface));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturation));
  border: 1px solid hsl(var(--glass-border));
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}

.glass-panel-elevated:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--chronell-primary) / 0.35);
  box-shadow:
    var(--glass-shadow),
    0 0 40px hsl(var(--chronell-primary-glow));
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: hsl(220 8% 10% / 0.65);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid hsl(var(--glass-border));
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: hsl(var(--foreground));
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.brand-text {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: hsl(var(--muted));
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: hsl(var(--foreground));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid hsl(var(--glass-border));
  border-radius: 999px;
  overflow: hidden;
  background: hsl(220 8% 12% / 0.6);
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: hsl(var(--muted));
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.active {
  background: hsl(var(--chronell-primary));
  color: #fff;
}

.lang-toggle button:hover:not(.active) {
  color: hsl(var(--foreground));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 24px hsl(var(--chronell-primary-glow));
}

.btn-download {
  gap: 0.55rem;
  padding-inline: 1.35rem;
}

.btn-download svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsl(var(--chronell-primary-glow));
}

.btn-ghost {
  background: hsl(var(--glass-surface));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--glass-border));
}

.btn-ghost:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--chronell-primary) / 0.4);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: hsl(var(--foreground));
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem;
  background: hsl(220 8% 10% / 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--glass-border));
  z-index: 99;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 0;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header-actions .btn-ghost.nav-github {
    display: inline-flex;
  }
}

@media (max-width: 899px) {
  .header-actions .btn-primary span.full {
    display: none;
  }
}

/* Sections */
main {
  padding-top: var(--header-h);
}

.section {
  padding: 5rem 0;
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--chronell-primary));
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: hsl(var(--muted));
  max-width: 40rem;
  margin: 0 0 2.5rem;
}

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

.text-center .section-lead {
  margin-inline: auto;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

/* Celestial / Chronos decorations */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(1px 1px at 12% 22%, color-mix(in srgb, var(--brand-sky) 80%, transparent), transparent),
    radial-gradient(1px 1px at 78% 14%, color-mix(in srgb, var(--brand-violet) 70%, transparent), transparent),
    radial-gradient(1.5px 1.5px at 44% 68%, color-mix(in srgb, var(--brand-sky) 90%, transparent), transparent),
    radial-gradient(1px 1px at 88% 72%, color-mix(in srgb, var(--brand-royal) 75%, transparent), transparent),
    radial-gradient(1px 1px at 24% 84%, color-mix(in srgb, var(--brand-violet) 65%, transparent), transparent),
    radial-gradient(1px 1px at 62% 38%, color-mix(in srgb, white 55%, transparent), transparent);
  animation: starfield-twinkle 8s ease-in-out infinite alternate;
}

@keyframes starfield-twinkle {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.55;
  }
}

.celestial {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.co {
  --sz: 20rem;
  --ry: 1;
  --sx: 1;
  position: absolute;
  left: 50%;
  width: var(--sz);
  height: calc(var(--sz) * var(--ry));
  margin-left: calc(var(--sz) / -2);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--brand-violet) 32%, transparent);
  opacity: 0.5;
  transform: translateX(-50%) scaleX(var(--sx));
  animation: celestial-spin var(--dur, 40s) linear infinite;
  animation-direction: var(--dir, normal);
}

/* Hero orbits: centered on logo hub */
.celestial--hero {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 0;
}

.celestial--hero .co {
  top: 50%;
  left: 50%;
  margin-left: calc(var(--sz) / -2);
  margin-top: calc(var(--sz) * var(--ry, 1) / -2);
  transform: translate(-50%, -50%) scaleX(var(--sx, 1));
  animation-name: celestial-spin-hub;
}

.celestial--hero .cs {
  transform: rotate(var(--ang, 0deg)) translateY(calc(var(--sz) / -2 * var(--ry, 1)));
}

@keyframes celestial-spin-hub {
  to {
    transform: translate(-50%, -50%) scaleX(var(--sx, 1)) rotate(360deg);
  }
}

.celestial--hero .co-h1 {
  --sz: min(42rem, 90vw);
  --dur: 48s;
}

.celestial--hero .co-h2 {
  --sz: min(28rem, 70vw);
  --dur: 32s;
  --dir: reverse;
  border-color: color-mix(in srgb, var(--brand-sky) 28%, transparent);
}

.celestial--hero .co-h3 {
  --sz: min(52rem, 95vw);
  --sx: 1.42;
  --ry: 0.68;
  --dur: 70s;
  opacity: 0.38;
}

.celestial--hero .co-h4 {
  --sz: min(18rem, 45vw);
  --dur: 24s;
  opacity: 0.65;
}

.celestial--hero .co-h5 {
  --sz: min(36rem, 80vw);
  --sx: 0.72;
  --ry: 1.28;
  --dur: 55s;
  --dir: reverse;
  opacity: 0.4;
}

.celestial--hero .co-h6 {
  --sz: min(24rem, 55vw);
  --dur: 40s;
}

.celestial--hero .co-h7 {
  --sz: min(30rem, 65vw);
  --dur: 65s;
  --dir: reverse;
  border-color: color-mix(in srgb, var(--brand-sky) 25%, transparent);
}

.celestial--hero .co-h8 {
  --sz: min(14rem, 35vw);
  --dur: 20s;
  opacity: 0.7;
}

.celestial--hero .co-h9 {
  --sz: min(58rem, 100vw);
  --sx: 1.2;
  --ry: 0.82;
  --dur: 88s;
  opacity: 0.28;
}

.co-q1 {
  --sz: 11rem;
  --dur: 36s;
  top: 10%;
  left: 8%;
  opacity: 0.45;
}

.co-q2 {
  --sz: 8rem;
  --sx: 0.85;
  --ry: 1.15;
  --dur: 28s;
  --dir: reverse;
  bottom: 15%;
  right: 6%;
  left: auto;
  margin-left: 0;
  margin-right: -4rem;
  transform: scaleX(var(--sx));
  animation-name: celestial-spin-alt;
}

.co-m1 {
  --sz: 9rem;
  --dur: 42s;
  top: 12%;
  right: 4%;
  left: auto;
  margin-left: 0;
  margin-right: -4.5rem;
  animation-name: celestial-spin-alt;
}

.co-m2 {
  --sz: 14rem;
  --sx: 1.25;
  --ry: 0.75;
  --dur: 58s;
  --dir: reverse;
  bottom: 8%;
  left: 6%;
}

.co-c1 {
  --sz: 7rem;
  --dur: 26s;
  top: 20%;
  left: 10%;
}

.co-c2 {
  --sz: 10rem;
  --sx: 1.1;
  --ry: 0.9;
  --dur: 34s;
  --dir: reverse;
  bottom: 18%;
  right: 8%;
  left: auto;
  margin-left: 0;
  margin-right: -5rem;
  animation-name: celestial-spin-alt;
}

.cs {
  --star-size: 0.55rem;
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--star-size);
  height: var(--star-size);
  margin-left: calc(var(--star-size) / -2);
  margin-top: calc(var(--star-size) / -2);
  background: var(--brand-sky);
  clip-path: polygon(50% 0%, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0% 50%, 36% 36%);
  box-shadow: 0 0 12px color-mix(in srgb, var(--brand-sky) 80%, transparent);
  transform: rotate(var(--ang, 0deg)) translateY(calc(var(--sz) / -2 * var(--ry, 1)));
}

.cs-sm {
  --star-size: 0.42rem;
}

.cs-xs {
  --star-size: 0.32rem;
}

.cs-bright {
  background: color-mix(in srgb, white 85%, var(--brand-sky));
  box-shadow: 0 0 16px var(--brand-sky);
}

.cs-dim {
  opacity: 0.55;
  background: var(--brand-violet);
  box-shadow: 0 0 8px color-mix(in srgb, var(--brand-violet) 60%, transparent);
}

@keyframes celestial-spin {
  to {
    transform: translateX(-50%) scaleX(var(--sx, 1)) rotate(360deg);
  }
}

@keyframes celestial-spin-alt {
  to {
    transform: scaleX(var(--sx, 1)) rotate(360deg);
  }
}

.chronos-sundial {
  position: absolute;
  right: 12%;
  top: 50%;
  width: 5rem;
  height: 5rem;
  margin-top: -2.5rem;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--brand-violet) 35%, transparent);
  opacity: 0.35;
}

.chronos-sundial::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 1px;
  height: 42%;
  margin-left: -0.5px;
  background: linear-gradient(to top, var(--brand-sky), transparent);
  transform-origin: bottom center;
  animation: sundial-hand 90s linear infinite;
}

.chronos-timeline {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 42%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--brand-sky) 40%, transparent) 20%,
    color-mix(in srgb, var(--brand-violet) 40%, transparent) 80%,
    transparent
  );
  opacity: 0.4;
}

.chronos-timeline::before,
.chronos-timeline::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-sky);
  box-shadow: 0 0 10px var(--brand-sky);
  animation: timeline-pulse 3s ease-in-out infinite;
}

.chronos-timeline::before {
  left: 18%;
}

.chronos-timeline::after {
  right: 22%;
  animation-delay: 1.4s;
  background: var(--brand-violet);
  box-shadow: 0 0 10px var(--brand-violet);
}

.chronos-pendulum {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 1px;
  height: 4.5rem;
  margin-left: -0.5px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--brand-violet) 50%, transparent), transparent);
  transform-origin: top center;
  animation: pendulum-swing 5.5s ease-in-out infinite;
  opacity: 0.45;
}

.chronos-pendulum::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: -0.225rem;
  border-radius: 50%;
  background: var(--brand-sky);
  box-shadow: 0 0 10px var(--brand-sky);
}

.chronos-hour-ring {
  position: absolute;
  right: 14%;
  bottom: 12%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--brand-sky) 30%, transparent);
  opacity: 0.35;
  animation: hour-ring 120s linear infinite;
}

.chronos-hour-ring::before {
  content: '';
  position: absolute;
  inset: 0.65rem;
  border-radius: 50%;
  border-top: 1px solid var(--brand-sky);
  opacity: 0.6;
}

@keyframes sundial-hand {
  to {
    transform: rotate(360deg);
  }
}

@keyframes timeline-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes pendulum-swing {
  0%,
  100% {
    transform: rotate(-14deg);
  }
  50% {
    transform: rotate(14deg);
  }
}

@keyframes hour-ring {
  to {
    transform: rotate(360deg);
  }
}

.quote-section,
#method,
.cta-band {
  position: relative;
}

.hero-whats-new {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  max-width: 36rem;
  margin: -0.5rem auto 1.25rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: hsl(220 10% 82%);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--brand-royal) 22%, transparent),
    color-mix(in srgb, var(--brand-violet) 14%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--brand-sky) 35%, transparent);
  border-radius: var(--radius);
  box-shadow: 0 0 28px color-mix(in srgb, var(--brand-royal) 25%, transparent);
}

.hero-whats-new-label {
  flex-shrink: 0;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  background: var(--brand-gradient);
  border-radius: 999px;
}

.feature-tile--new,
.screenshot-frame--highlight {
  border-color: color-mix(in srgb, var(--brand-sky) 45%, transparent);
  box-shadow:
    var(--glass-shadow-sm),
    0 0 32px color-mix(in srgb, var(--brand-royal) 22%, transparent);
}

.feature-new-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  background: var(--brand-gradient);
  border-radius: 999px;
}

.feature-tile--new {
  position: relative;
}

.module-pill--new {
  border-color: color-mix(in srgb, var(--brand-sky) 50%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--brand-royal) 30%, transparent);
}

.mockup-sidebar-item--accent {
  color: var(--brand-sky);
  background: color-mix(in srgb, var(--brand-royal) 18%, transparent);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 1.75rem;
  z-index: 1;
  overflow: visible;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(14rem, 58vw);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 40px color-mix(in srgb, var(--brand-royal) 45%, transparent));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: hsl(var(--muted));
  background: hsl(var(--glass-surface));
  border: 1px solid hsl(var(--glass-border));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--chronell-accent));
  box-shadow: 0 0 8px hsl(var(--chronell-accent));
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero-tagline {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  background: linear-gradient(180deg, hsl(var(--foreground)) 0%, hsl(220 15% 75%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline .accent {
  background: var(--brand-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-positioning {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: hsl(var(--chronell-primary));
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero-subline {
  color: hsl(var(--muted));
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.hero-download-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2.25rem;
  font-size: 0.82rem;
  color: hsl(var(--muted));
}

.hero-download-version {
  font-weight: 600;
  color: var(--brand-sky);
}

.hero-download-version[hidden] {
  display: none;
}

/* Hero interactive app demo */
.hero-mockup-interactive {
  margin-top: 0.75rem;
  text-align: left;
  max-width: 100%;
}

.hero-demo-tabs {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  gap: 0.15rem;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hero-mockup-interactive .app-chrome--demo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.5rem 0.55rem;
  border-bottom: 1px solid hsl(var(--glass-border));
}

.app-chrome-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-right: 0.35rem;
  border-right: 1px solid hsl(var(--glass-border));
}

.hero-mockup-interactive .app-chrome--demo .app-chrome-title {
  white-space: nowrap;
}

.hero-demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.5rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: hsl(var(--muted));
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.hero-demo-tab:hover {
  color: hsl(220 15% 88%);
  background: hsl(0 0% 100% / 0.04);
}

.hero-demo-tab.active {
  color: #fff;
  background: hsl(var(--chronell-primary) / 0.18);
  box-shadow: inset 0 -2px 0 hsl(var(--chronell-primary));
}

.hero-demo-tab svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-demo-tab.active svg {
  opacity: 1;
  color: hsl(var(--chronell-primary-soft));
}

.hero-mockup-interactive .mockup-frame {
  transform: none;
  transition: box-shadow 0.25s ease;
}

.hero-mockup-interactive .mockup-frame:hover {
  transform: none;
  box-shadow:
    var(--glass-shadow),
    0 0 48px hsl(var(--chronell-primary) / 0.28);
}

.hero-demo-panels {
  position: relative;
  min-height: 35rem;
}

.hero-demo-panel.active {
  display: block;
  height: 100%;
}

@keyframes hero-demo-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-demo-panel {
    animation: none;
  }
}

.hero-demo-panel {
  display: none;
  animation: hero-demo-fade 0.28s ease;
}

.hero-demo-captions {
  margin-top: 1rem;
  min-height: 1.6em;
  text-align: center;
}

.hero-demo-caption {
  display: none;
  margin: 0;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.5;
  color: hsl(220 12% 80%);
  font-weight: 500;
}

.hero-demo-caption.active {
  display: block;
}

.mockup-frame {
  background: hsl(240 20% 14% / 0.72);
  border: 1px solid hsl(var(--glass-border));
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    var(--glass-shadow),
    0 0 40px hsl(var(--chronell-primary) / 0.22);
}

.mockup-frame--flat:hover {
  box-shadow:
    var(--glass-shadow),
    0 0 40px hsl(var(--chronell-primary) / 0.22);
}

.app-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem 0.75rem;
  border-bottom: 1px solid hsl(var(--glass-border));
  margin-bottom: 0.5rem;
}

.app-chrome-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.app-chrome-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--muted));
  letter-spacing: 0.02em;
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr 1fr;
  gap: 0.5rem;
  min-height: 22rem;
  background: hsl(240 20% 8% / 0.85);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
}

.hero-demo-panels .mockup-body {
  min-height: 33rem;
  height: 100%;
}

.hero-demo-panels .mockup-graph {
  min-height: 31rem;
}

.hero-demo-panels .mockup-graph-tile-text .lines .title {
  font-size: 0.58rem;
}

.hero-demo-panels .mockup-graph-tile-text .lines .sub {
  font-size: 0.48rem;
}

.hero-demo-panels .mockup-graph-isle-title {
  font-size: 0.58rem;
  white-space: normal;
  line-height: 1.2;
}

.hero-demo-panels .mockup-graph-isle--1 {
  top: 2%;
  left: 5%;
  width: 46%;
}

.hero-demo-panels .mockup-graph-isle--2 {
  top: auto;
  bottom: 28%;
  left: 2%;
  width: 30%;
}

.hero-demo-panels .mockup-graph-isle--3 {
  bottom: 3%;
  right: 2%;
  width: 36%;
}

.hero-demo-panels .mockup-graph-isle--4 {
  top: 16%;
  right: 2%;
  width: 24%;
}

.hero-demo-panels .mockup-graph-isle--5 {
  top: 44%;
  left: 34%;
  width: 32%;
}

.hero-demo-panels .mockup-notes-editor {
  min-height: 30rem;
}

.hero-demo-panels .mockup-body--notes {
  min-height: 31rem;
}

.hero-demo-panels .mockup-cal-grid {
  min-height: 30rem;
}

.hero-demo-panels .mockup-task-cal {
  min-height: 28rem;
}

.mockup-body--mail-triage .mockup-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.mockup-list-check {
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.12rem;
  border-radius: 3px;
  border: 1px solid hsl(var(--chronell-primary) / 0.45);
  flex-shrink: 0;
  background: hsl(var(--chronell-primary) / 0.12);
}

.mockup-list-check.checked {
  background: hsl(var(--chronell-primary) / 0.45);
  border-color: hsl(var(--chronell-primary));
}

.mockup-list-item .lines-wrap {
  flex: 1;
  min-width: 0;
}

.mockup-bulk-bar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.45rem;
  margin-bottom: 0.35rem;
  border-radius: 6px;
  background: hsl(var(--chronell-primary) / 0.12);
  border: 1px solid hsl(var(--chronell-primary) / 0.22);
}

.mockup-bulk-bar .mockup-skel {
  height: 0.55rem;
  width: 2.5rem;
  border-radius: 3px;
}

.mockup-bulk-bar .mockup-bulk-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 4px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.65);
}

.mockup-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted));
}

.mockup-sidebar-item.active {
  color: #fff;
  background: hsl(var(--chronell-primary) / 0.2);
  border-left: 2px solid hsl(var(--chronell-primary));
}

.mockup-sidebar-item .nav-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: hsl(var(--muted));
  opacity: 0.85;
}

.mockup-sidebar-item.active .nav-icon {
  color: var(--brand-sky);
  opacity: 1;
}

.mockup-sidebar-divider {
  height: 1px;
  margin: 0.65rem 0;
  background: hsl(var(--glass-border));
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.65);
}

.mockup-list-item {
  padding: 0.6rem;
  border-radius: 6px;
  background: hsl(240 20% 12% / 0.65);
  border-left: 2px solid transparent;
}

.mockup-list-item.unread {
  border-left-color: hsl(var(--chronell-primary));
}

.mockup-list-item.urgent {
  border-left-color: hsl(var(--chronell-accent));
}

.mockup-list-item.done {
  opacity: 0.5;
}

.mockup-list-item .top-line {
  height: 6px;
  width: 60%;
  margin-bottom: 0.35rem;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.2);
}

.mockup-list-item .bot-line {
  height: 4px;
  width: 80%;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.65);
}

.mockup-detail .header {
  height: 1.1rem;
  width: 70%;
  border-radius: 4px;
  background: hsl(0 0% 100% / 0.25);
}

.mockup-detail .sub {
  height: 0.6rem;
  width: 40%;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.12);
}

.mockup-detail .body-line {
  height: 6px;
  margin-top: 0.65rem;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.08);
}

.mockup-detail .body-line:nth-of-type(3) {
  width: 95%;
}

.mockup-detail .body-line:nth-of-type(4) {
  width: 100%;
}

.mockup-detail .body-line:nth-of-type(5) {
  width: 85%;
}

.mockup-detail .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.62rem;
  color: hsl(var(--chronell-primary-soft));
  background: hsl(var(--chronell-primary) / 0.2);
  border: 1px solid hsl(var(--chronell-primary) / 0.35);
}

@media (max-width: 900px) {
  .mockup-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-demo-panels .mockup-body--mail-triage {
    grid-template-columns: 1fr;
  }

  .hero-demo-panels .mockup-body--mail-triage .mockup-sidebar,
  .hero-demo-panels .mockup-body--mail-triage .mockup-detail {
    display: none;
  }

  .hero-demo-panels .mockup-body--calendar .mockup-pane--nav,
  .hero-demo-panels .mockup-body--calendar .mockup-pane--timeline,
  .hero-demo-panels .mockup-body--calendar .mockup-pane--preview,
  .hero-demo-panels .mockup-body--tasks .mockup-pane--nav,
  .hero-demo-panels .mockup-body--tasks .mockup-pane--empty,
  .hero-demo-panels .mockup-body--notes .mockup-notes-tree,
  .hero-demo-panels .mockup-body--notes .mockup-notes-list,
  .hero-demo-panels .mockup-body--contacts .mockup-pane:last-child,
  .hero-demo-panels .mockup-body--connections .mockup-list-compact {
    display: none;
  }

  .hero-demo-tab {
    flex-shrink: 0;
  }

  .hero-demo-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .hero-demo-panels {
    min-height: 22rem;
  }

  .hero-demo-panels .mockup-body {
    min-height: 20rem;
  }

  .hero-demo-panels .mockup-graph {
    min-height: 18rem;
  }
}

@media (max-width: 520px) {
  .hero-demo-tab span {
    display: none;
  }

  .hero-demo-tab {
    padding: 0.35rem 0.42rem;
  }

  .app-chrome-brand {
    padding-right: 0.25rem;
  }
}

/* Module mockups — shared chrome */
.mockup-frame--module {
  transform: none;
}

.mockup-frame--module:hover {
  transform: translateY(-2px);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0.35rem 0.5rem 0.55rem;
  margin-bottom: 0.45rem;
  border-bottom: 1px solid hsl(var(--glass-border));
}

.mockup-topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 500;
  color: hsl(var(--muted));
  white-space: nowrap;
}

.mockup-topbar-pill svg {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.75;
}

.mockup-topbar-pill.active {
  color: #fff;
  background: hsl(var(--chronell-primary) / 0.22);
  box-shadow: inset 0 -2px 0 hsl(var(--chronell-primary));
}

.mockup-topbar-search {
  flex: 1;
  min-width: 4rem;
  height: 1.15rem;
  margin-left: auto;
  border-radius: 6px;
  background: hsl(240 20% 8% / 0.9);
  border: 1px solid hsl(var(--glass-border));
}

.mockup-skel {
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.12);
}

.mockup-skel--dim {
  background: hsl(0 0% 100% / 0.07);
}

.mockup-skel--bright {
  background: hsl(0 0% 100% / 0.22);
}

.mockup-pane {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.65);
  min-height: 0;
  overflow: hidden;
}

/* Calendar mockup */
.mockup-body--calendar {
  grid-template-columns: minmax(72px, 88px) 1.4fr minmax(88px, 110px) minmax(72px, 96px);
  min-height: 16rem;
}

.mockup-cal-mini {
  display: none;
}

/* Realistic mini month (sidebar) */
.mockup-mini-month {
  margin-bottom: 0.55rem;
  padding: 0.35rem;
  border-radius: 6px;
  background: hsl(240 20% 8% / 0.55);
  border: 1px solid hsl(var(--glass-border) / 0.35);
}

.mockup-mini-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.mockup-mini-nav {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-mini-title {
  flex: 1;
  height: 0.45rem;
  max-width: 3.2rem;
  margin: 0 auto;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.18);
}

.mockup-mini-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 0.2rem;
}

.mockup-mini-weekdays span {
  font-size: 0.42rem;
  font-weight: 600;
  text-align: center;
  color: hsl(var(--muted));
  line-height: 1.2;
}

.mockup-mini-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.mockup-mini-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.44rem;
  font-weight: 500;
  color: hsl(220 12% 78%);
  border-radius: 4px;
  line-height: 1;
}

.mockup-mini-day.outside {
  color: hsl(var(--muted));
  opacity: 0.45;
}

.mockup-mini-day.today {
  color: #fff;
  font-weight: 700;
  background: hsl(0 72% 55% / 0.85);
  box-shadow: 0 0 0 1px hsl(0 72% 55% / 0.5);
}

.mockup-mini-day.has-dot {
  position: relative;
}

.mockup-mini-day.has-dot::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: hsl(var(--chronell-primary-soft));
}

.mockup-sidebar-section {
  margin-top: 0.45rem;
  padding-top: 0.35rem;
  border-top: 1px solid hsl(var(--glass-border) / 0.45);
}

.mockup-sidebar-section-label {
  height: 0.4rem;
  width: 55%;
  margin-bottom: 0.35rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-cal-account-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0;
}

.mockup-cal-account-row .chk {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  border: 1px solid hsl(var(--glass-border));
  background: hsl(var(--chronell-primary) / 0.25);
  flex-shrink: 0;
}

.mockup-cal-account-row .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.mockup-cal-account-row .dot--violet { background: hsl(var(--chronell-primary) / 0.7); }
.mockup-cal-account-row .dot--orange { background: hsl(28 85% 52% / 0.7); }
.mockup-cal-account-row .dot--blue { background: hsl(212 70% 48% / 0.7); }
.mockup-cal-account-row .dot--green { background: hsl(142 55% 42% / 0.7); }

.mockup-cal-account-row .mockup-skel {
  flex: 1;
  height: 4px;
}

.mockup-cal-account-row .chk.checked {
  background: hsl(var(--chronell-primary) / 0.45);
  border-color: hsl(var(--chronell-primary) / 0.55);
}

.mockup-sidebar .mockup-mail-accounts {
  margin-top: 0.35rem;
  padding-top: 0.3rem;
  border-top: 1px solid hsl(var(--glass-border) / 0.35);
}

.mockup-sidebar .mockup-mail-accounts .mockup-sidebar-section-label {
  width: 42%;
  height: 0.36rem;
  margin-bottom: 0.28rem;
}

.mockup-sidebar .mockup-mail-accounts .mockup-cal-account-row {
  padding: 0.16rem 0;
}

.mockup-sidebar .mockup-mail-accounts .mockup-cal-account-row .mockup-skel {
  height: 3.5px;
}

.mockup-pane-head {
  height: 0.45rem;
  width: 45%;
  margin-bottom: 0.45rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.12);
  flex-shrink: 0;
}

.mockup-pane-head--tiny {
  width: 35%;
  height: 0.38rem;
  margin-bottom: 0.35rem;
}

.mockup-week-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  min-height: 0;
  padding: 0.35rem !important;
}

.mockup-pane--grid.mockup-week-wrap {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.mockup-pane--timeline {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 0.35rem !important;
}

.mockup-pane--timeline .mockup-timeline-scroll {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.mockup-cal-accounts {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.mockup-pane--preview.mockup-detail {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.mockup-week-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.mockup-week-toolbar .mockup-skel {
  height: 0.5rem;
  border-radius: 3px;
}

.mockup-week-toolbar .w-range { width: 42%; }
.mockup-week-toolbar .w-btn { width: 12%; }
.mockup-week-toolbar .w-spacer { flex: 1; }

.mockup-week-grid {
  display: grid;
  grid-template-columns: 1.35rem repeat(7, 1fr);
  grid-template-rows: 0.85rem repeat(11, minmax(1.35rem, 1fr));
  flex: 1;
  min-height: 0;
  gap: 1px;
  background: hsl(var(--glass-border) / 0.28);
  border-radius: 6px;
  overflow: hidden;
}

.mockup-week-corner {
  background: hsl(240 20% 10% / 0.85);
}

.mockup-week-dayhead {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.46rem;
  font-weight: 600;
  color: hsl(var(--muted));
  background: hsl(240 20% 10% / 0.85);
}

.mockup-week-dayhead.today {
  color: hsl(0 72% 58%);
  background: hsl(0 72% 55% / 0.12);
}

.mockup-week-time {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.15rem 0.2rem 0 0;
  font-size: 0.42rem;
  color: hsl(var(--muted));
  background: hsl(240 20% 10% / 0.75);
  border-top: 1px solid hsl(var(--glass-border) / 0.2);
}

.mockup-week-cell {
  position: relative;
  background: hsl(240 20% 8% / 0.45);
  border-top: 1px solid hsl(var(--glass-border) / 0.15);
}

.mockup-week-cell.today-col {
  background: hsl(0 72% 55% / 0.04);
}

.mockup-week-now {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(212 96% 73% / 0.9);
  z-index: 2;
  pointer-events: none;
}

.mockup-week-now::before {
  content: '';
  position: absolute;
  left: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(212 96% 73%);
}

.mockup-week-event {
  position: absolute;
  left: 2px;
  right: 2px;
  border-radius: 4px;
  z-index: 1;
  min-height: 0.65rem;
  border-left: 2px solid hsl(0 0% 100% / 0.25);
}

.mockup-week-event--violet {
  background: hsl(var(--chronell-primary) / 0.62);
  border-left-color: hsl(var(--chronell-primary-soft));
}

.mockup-week-event--orange {
  background: hsl(28 85% 52% / 0.58);
  border-left-color: hsl(28 90% 65%);
}

.mockup-week-event--blue {
  background: hsl(212 70% 48% / 0.55);
  border-left-color: hsl(212 80% 65%);
}

.mockup-week-event--green {
  background: hsl(142 55% 42% / 0.5);
  border-left-color: hsl(142 60% 55%);
}

.mockup-week-event--red {
  background: hsl(0 65% 50% / 0.45);
  border-left-color: hsl(0 75% 65%);
}

.mockup-timeline-scroll {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  flex: 1;
}

.mockup-timeline-dayhead {
  height: 0.42rem;
  width: 70%;
  margin: 0.35rem 0 0.25rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.14);
}

.mockup-timeline-item .chk {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  border: 1px solid hsl(var(--glass-border));
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.mockup-timeline-item .tag--later {
  background: hsl(var(--chronell-primary) / 0.35);
}

.mockup-detail-toolbar {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.mockup-detail-toolbar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 4px;
  background: hsl(0 0% 100% / 0.08);
}

.mockup-detail-meta {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.mockup-detail-meta .avatar {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: hsl(var(--chronell-primary) / 0.35);
  flex-shrink: 0;
}

.mockup-detail-meta .lines {
  flex: 1;
}

.mockup-detail-meta .lines .mockup-skel {
  height: 4px;
  margin-bottom: 0.22rem;
}

.mockup-detail-block {
  height: 2.5rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  background: hsl(0 0% 100% / 0.04);
  border: 1px dashed hsl(var(--glass-border) / 0.5);
}

.mockup-list-fill {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 0;
}

.hero-demo-panels .mockup-list,
.hero-demo-panels .mockup-sidebar,
.hero-demo-panels .mockup-detail {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mockup-task-group-label--later {
  background: hsl(var(--chronell-primary) / 0.4);
  width: 2.5rem;
}

.mockup-task-row .mockup-skel.meta {
  width: 28% !important;
  max-width: none;
  flex: none;
  opacity: 0.6;
}

.mockup-task-detail-head {
  height: 0.42rem;
  width: 40%;
  margin-bottom: 0.65rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-notes-tree-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0;
}

.mockup-notes-tree-item .icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.08);
  flex-shrink: 0;
}

.mockup-notes-tree-item .mockup-skel {
  flex: 1;
  height: 4px;
}

.mockup-notes-tree-item.indent-1 { padding-left: 0.55rem; }
.mockup-notes-tree-item.indent-2 { padding-left: 1.1rem; }

.mockup-notes-list-item {
  padding: 0.35rem 0.25rem;
  border-radius: 5px;
  margin-bottom: 0.2rem;
}

.mockup-notes-list-item.active {
  background: hsl(var(--chronell-primary) / 0.15);
}

.mockup-notes-list-item .mockup-skel.title {
  height: 5px;
  margin-bottom: 0.25rem;
}

.mockup-notes-list-item .mockup-skel.sub {
  height: 3px;
  width: 55%;
}

.mockup-notes-editor-head {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.mockup-notes-editor-head .mockup-skel {
  height: 0.45rem;
  flex: 1;
}

.mockup-contact-field {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.4rem;
}

.mockup-contact-field .lbl {
  width: 1.8rem;
  height: 0.35rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.08);
  flex-shrink: 0;
}

.mockup-contact-field .mockup-skel {
  flex: 1;
  height: 4px;
}

.mockup-linked-head {
  height: 0.38rem;
  width: 50%;
  margin-bottom: 0.4rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-linked-item .type-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  background: hsl(var(--chronell-primary) / 0.3);
  flex-shrink: 0;
}

.mockup-graph-controls {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 3;
}

.mockup-graph-controls span {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 5px;
  background: hsl(240 20% 14% / 0.9);
  border: 1px solid hsl(var(--glass-border));
}

.mockup-graph-legend {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  height: 0.35rem;
  width: 55%;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.06);
  z-index: 3;
}

.mockup-graph-node--f {
  top: 72%;
  left: 18%;
}

.mockup-graph-node--g {
  top: 15%;
  left: 52%;
}

.mockup-body--calendar {
  grid-template-columns: minmax(88px, 108px) 1.55fr minmax(96px, 118px) minmax(80px, 100px);
  min-height: 16rem;
}

.mockup-cal-accounts .mockup-skel {
  height: 5px;
  margin: 0.35rem 0;
}

.mockup-cal-accounts .mockup-skel:first-child {
  width: 70%;
}

.mockup-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto repeat(6, 1fr);
  gap: 2px;
  height: 100%;
  min-height: 13rem;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.5);
}

.mockup-cal-grid-head {
  height: 0.55rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.08);
}

.mockup-cal-grid-head.today-col {
  background: hsl(0 72% 55% / 0.25);
}

.mockup-cal-event {
  border-radius: 4px;
  min-height: 1.1rem;
  margin: 1px;
  opacity: 0.9;
}

.mockup-cal-event--violet {
  background: hsl(var(--chronell-primary) / 0.55);
}

.mockup-cal-event--orange {
  background: hsl(28 85% 52% / 0.55);
}

.mockup-cal-event--blue {
  background: hsl(212 70% 48% / 0.5);
}

.mockup-cal-now {
  grid-column: 1 / -1;
  height: 2px;
  background: hsl(212 96% 73% / 0.85);
  margin: 0.15rem 0;
  border-radius: 1px;
}

.mockup-timeline-item {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  border-bottom: 1px solid hsl(var(--glass-border) / 0.5);
}

.mockup-timeline-item .time {
  width: 1.4rem;
  height: 0.45rem;
  flex-shrink: 0;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-timeline-item .lines {
  flex: 1;
}

.mockup-timeline-item .lines .mockup-skel {
  height: 4px;
  margin-bottom: 0.2rem;
}

.mockup-timeline-item .tag {
  width: 2.2rem;
  height: 0.45rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.mockup-timeline-item .tag--overdue {
  background: hsl(0 72% 55% / 0.4);
}

.mockup-timeline-item .tag--today {
  background: hsl(28 85% 52% / 0.4);
}

/* Tasks mockup */
.mockup-body--tasks {
  grid-template-columns: minmax(72px, 88px) 1fr 1.1fr minmax(64px, 80px);
  min-height: 16rem;
}

.mockup-task-group {
  margin-bottom: 0.5rem;
}

.mockup-task-group-label {
  height: 0.45rem;
  width: 3rem;
  margin-bottom: 0.35rem;
  border-radius: 2px;
}

.mockup-task-group-label--overdue {
  background: hsl(0 72% 55% / 0.45);
}

.mockup-task-group-label--today {
  background: hsl(28 85% 52% / 0.45);
}

.mockup-task-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0;
}

.mockup-task-check {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 3px;
  border: 1px solid hsl(var(--glass-border));
  flex-shrink: 0;
}

.mockup-task-row .mockup-skel {
  height: 4px;
}

.mockup-task-row .mockup-skel:first-of-type {
  flex: 1;
  max-width: 75%;
}

.mockup-task-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  min-height: 12rem;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.5);
}

.mockup-task-block {
  grid-column: span 2;
  grid-row: span 3;
  margin: 0.35rem 0.15rem;
  border-radius: 6px;
  background: hsl(var(--chronell-primary) / 0.5);
  border: 1px solid hsl(var(--chronell-primary) / 0.35);
}

.mockup-pane--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.45);
}

.mockup-pane--empty .mockup-skel {
  width: 80%;
  height: 0.45rem;
}

/* Notes mockup */
.mockup-body--notes {
  grid-template-columns: minmax(80px, 100px) minmax(72px, 88px) 1fr;
  min-height: 15rem;
}

.mockup-notes-tree .mockup-skel {
  height: 4px;
  margin: 0.28rem 0;
}

.mockup-notes-tree .mockup-skel:nth-child(odd) {
  width: 85%;
}

.mockup-notes-tree .mockup-skel:nth-child(even) {
  width: 65%;
  margin-left: 0.65rem;
}

.mockup-notes-list .mockup-skel {
  height: 5px;
  margin: 0.4rem 0;
}

.mockup-notes-list .mockup-skel.active-note {
  width: 90%;
  background: hsl(var(--chronell-primary) / 0.35);
}

.mockup-notes-editor {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  min-height: 13rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.5);
}

.mockup-notes-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-height: 0;
  overflow: hidden;
}

.mockup-notes-h1 {
  height: 7px;
  width: 68%;
  border-radius: 3px;
  background: hsl(0 0% 100% / 0.28);
  flex-shrink: 0;
}

.mockup-notes-p {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.11);
  flex-shrink: 0;
}

.mockup-notes-p.w-full { width: 100%; }
.mockup-notes-p.w-95 { width: 95%; }
.mockup-notes-p.w-92 { width: 92%; }
.mockup-notes-p.w-88 { width: 88%; }
.mockup-notes-p.w-82 { width: 82%; }
.mockup-notes-p.w-80 { width: 80%; }
.mockup-notes-p.w-78 { width: 78%; }
.mockup-notes-p.w-72 { width: 72%; }
.mockup-notes-p.w-65 { width: 65%; }
.mockup-notes-p.w-58 { width: 58%; }

.mockup-notes-p--bold {
  height: 5px;
  background: hsl(0 0% 100% / 0.24);
}

.mockup-notes-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.35rem;
  border-radius: 5px;
  background: hsl(212 70% 48% / 0.12);
  border: 1px solid hsl(212 70% 48% / 0.22);
  flex-shrink: 0;
}

.mockup-notes-link-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  background: hsl(212 80% 65% / 0.45);
  flex-shrink: 0;
}

.mockup-notes-link-text {
  flex: 1;
  height: 4px;
  max-width: 72%;
  border-radius: 2px;
  background: hsl(212 85% 72% / 0.55);
}

.mockup-notes-ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.15rem 0 0.15rem 0.45rem;
  flex-shrink: 0;
}

.mockup-notes-ul-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mockup-notes-ul-item::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: hsl(var(--chronell-primary-soft));
  flex-shrink: 0;
}

.mockup-notes-image {
  position: relative;
  height: 4.75rem;
  border-radius: 7px;
  background:
    linear-gradient(145deg, hsl(var(--chronell-primary) / 0.22) 0%, hsl(212 70% 48% / 0.18) 55%, hsl(240 20% 12% / 0.5) 100%);
  border: 1px solid hsl(var(--glass-border) / 0.55);
  flex-shrink: 0;
}

.mockup-notes-image-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.35rem;
  height: 1.1rem;
  border-radius: 4px;
  background: hsl(0 0% 100% / 0.12);
  box-shadow:
    inset 0 -0.35rem 0 hsl(212 70% 48% / 0.35),
    inset 0.35rem 0.35rem 0 hsl(28 85% 52% / 0.25);
}

.mockup-notes-callout {
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  border-left: 2px solid hsl(var(--chronell-primary));
  background: hsl(var(--chronell-primary) / 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  flex-shrink: 0;
}

.mockup-notes-tree-item .icon--open {
  background: hsl(var(--chronell-primary) / 0.35);
}

.mockup-notes-tree-item .icon--note {
  border-radius: 1px;
  background: hsl(0 0% 100% / 0.14);
}

.mockup-notes-list-item {
  position: relative;
}

.mockup-notes-att,
.mockup-notes-link-dot {
  position: absolute;
  top: 0.4rem;
  right: 0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 3px;
}

.mockup-notes-att {
  background: hsl(28 85% 52% / 0.45);
  border: 1px solid hsl(28 90% 60% / 0.5);
}

.mockup-notes-link-dot {
  background: hsl(212 70% 48% / 0.4);
  border: 1px solid hsl(212 80% 65% / 0.45);
}

.mockup-notes-toolbar span,
.mockup-notes-toolbar div {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 4px;
  background: hsl(0 0% 100% / 0.08);
  flex-shrink: 0;
}

.mockup-notes-toolbar .active {
  background: hsl(var(--chronell-primary) / 0.35);
  box-shadow: inset 0 -2px 0 hsl(var(--chronell-primary));
}

.mockup-notes-toolbar {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}

.mockup-notes-editor .col .mockup-skel {
  height: 4px;
  margin-bottom: 0.35rem;
}

/* Contacts mockup */
.mockup-body--contacts {
  grid-template-columns: minmax(100px, 118px) 1fr minmax(80px, 98px);
  min-height: 15rem;
}

.mockup-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mockup-contact-row-lines {
  flex: 1;
  min-width: 0;
}

.mockup-contact-row-lines .mockup-skel.title {
  height: 4px;
  margin-bottom: 0.22rem;
}

.mockup-contact-row-lines .mockup-skel.sub {
  height: 3px;
  width: 62%;
}

.mockup-contacts-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: stretch;
  align-content: start;
  min-height: 0;
  padding: 0.4rem;
}

.mockup-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.55rem 0.75rem;
  min-height: 9.5rem;
  border-radius: 10px;
  background: hsl(240 20% 12% / 0.65);
  border: 1px solid hsl(var(--glass-border) / 0.45);
}

.mockup-contact-card.active {
  background: hsl(var(--chronell-primary) / 0.12);
  border-color: hsl(var(--chronell-primary) / 0.38);
  box-shadow: 0 0 0 1px hsl(var(--chronell-primary) / 0.12);
}

.mockup-contact-card-body {
  width: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mockup-contact-card-body .mockup-skel.name {
  height: 5px;
  width: 78%;
  margin: 0 auto 0.32rem;
}

.mockup-contact-card-body .mockup-skel.role {
  height: 3.5px;
  width: 52%;
  margin: 0 auto 0.42rem;
}

.mockup-contact-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-top: auto;
  width: 100%;
}

.mockup-contact-meta-row {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}

.mockup-contact-meta-row .ico {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 3px;
  flex-shrink: 0;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-contact-meta-row .ico.mail {
  background: hsl(var(--chronell-primary) / 0.4);
}

.mockup-contact-meta-row .ico.phone {
  background: hsl(142 55% 42% / 0.4);
}

.mockup-contact-meta-row .ico.org {
  background: hsl(212 70% 48% / 0.38);
}

.mockup-contact-meta-row .mockup-skel {
  flex: 1;
  height: 3.5px;
  max-width: 100%;
}

.mockup-contact-meta-row .mockup-skel.w-78 { max-width: 78%; }
.mockup-contact-meta-row .mockup-skel.w-70 { max-width: 70%; }
.mockup-contact-meta-row .mockup-skel.w-65 { max-width: 65%; }
.mockup-contact-meta-row .mockup-skel.w-62 { max-width: 62%; }
.mockup-contact-meta-row .mockup-skel.w-55 { max-width: 55%; }
.mockup-contact-meta-row .mockup-skel.w-48 { max-width: 48%; }

.mockup-avatar--lg {
  width: 2.25rem;
  height: 2.25rem;
}

.hero-demo-panels .mockup-contacts-cards {
  gap: 0.6rem;
  padding: 0.5rem;
}

.hero-demo-panels .mockup-contact-card {
  min-height: 11.5rem;
  padding: 0.85rem 0.65rem 0.9rem;
}

.hero-demo-panels .mockup-avatar--lg {
  width: 2.5rem;
  height: 2.5rem;
}

.hero-demo-panels .mockup-contact-card-body .mockup-skel.name {
  height: 6px;
  width: 82%;
}

.hero-demo-panels .mockup-contact-card-body .mockup-skel.role {
  height: 4px;
  width: 58%;
}

.hero-demo-panels .mockup-contact-meta-row .mockup-skel {
  height: 4px;
}

.hero-demo-panels .mockup-body--contacts {
  min-height: 31rem;
}

.mockup-avatar--a {
  background: hsl(var(--chronell-primary) / 0.55);
}

.mockup-avatar--b {
  background: hsl(28 85% 52% / 0.5);
}

.mockup-avatar--c {
  background: hsl(212 70% 48% / 0.48);
}

.mockup-avatar--d {
  background: hsl(142 55% 42% / 0.45);
}

.mockup-contact-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.25rem;
  border-radius: 6px;
}

.mockup-contact-row.active {
  background: hsl(var(--chronell-primary) / 0.15);
}

.mockup-avatar {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: hsl(var(--chronell-primary) / 0.35);
  flex-shrink: 0;
}

.mockup-contact-detail {
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background: hsl(240 20% 10% / 0.5);
}

.mockup-contact-detail .mockup-avatar {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.mockup-linked-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0;
}

.mockup-linked-item .dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: hsl(var(--chronell-accent));
}

/* Connections mockup */
.mockup-body--connections {
  grid-template-columns: minmax(88px, 108px) 1fr;
  min-height: 17rem;
}

.mockup-graph {
  position: relative;
  min-height: 16rem;
  border-radius: var(--radius-sm);
  background: hsl(240 22% 7% / 0.92);
  overflow: hidden;
}

.mockup-graph-isle {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0.38rem 0.44rem 0.46rem;
  border-radius: 9px;
  border: 1px dashed hsl(0 0% 100% / 0.22);
  background: hsl(240 20% 9% / 0.62);
  z-index: 1;
  min-width: 0;
  box-shadow: 0 4px 18px hsl(0 0% 0% / 0.28);
}

.mockup-graph-isle--1 {
  top: 5%;
  left: 18%;
  width: 58%;
}

.mockup-graph-isle--2 {
  top: auto;
  bottom: 7%;
  left: 3%;
  width: 36%;
}

.mockup-graph-isle--3 {
  top: auto;
  bottom: 5%;
  left: auto;
  right: 3%;
  width: 44%;
}

.mockup-graph-isle--4 {
  top: 18%;
  right: 3%;
  width: 26%;
}

.mockup-graph-isle--5 {
  top: 46%;
  left: 38%;
  width: 28%;
}

.mockup-graph-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.mockup-graph-connectors line {
  stroke: hsl(var(--chronell-primary) / 0.58);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px hsl(var(--chronell-primary) / 0.35));
}

.mockup-graph-connectors circle {
  fill: hsl(var(--chronell-primary) / 0.82);
  filter: drop-shadow(0 0 2px hsl(var(--chronell-primary) / 0.5));
}

.mockup-graph-isle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.32rem;
}

.mockup-graph-isle-title {
  font-size: 0.5rem;
  font-weight: 600;
  color: hsl(220 10% 72%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.mockup-graph-isle-title-skel {
  display: block;
  height: 0.36rem;
  width: 46%;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
  font-size: 0;
  color: transparent;
}

.mockup-graph-isle-title-skel--wide {
  width: 72%;
}

.mockup-graph-isle-title-skel--short {
  width: 38%;
}

.mockup-graph-isle-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--glass-border) / 0.55);
  background: hsl(0 0% 100% / 0.04);
  flex-shrink: 0;
  color: hsl(220 10% 62%);
}

.mockup-graph-isle-action svg {
  width: 0.42rem;
  height: 0.42rem;
}

.mockup-graph-isle-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.mockup-graph-isle-body--row {
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.mockup-graph-isle-body--stack {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.mockup-graph-isle-body--diag {
  gap: 0.28rem;
  min-height: 4.8rem;
}

.mockup-graph-isle-body--diag .mockup-graph-tile:nth-child(2) {
  width: 88%;
  margin-left: 14%;
}

.mockup-graph-isle-body--chain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.34rem 0.42rem;
}

.mockup-graph-isle-body--chain .mockup-graph-tile:nth-child(1) {
  grid-column: 1 / -1;
}

.mockup-graph-isle-body--chain .mockup-graph-tile:nth-child(2) {
  grid-column: 1;
}

.mockup-graph-isle-body--chain .mockup-graph-tile:nth-child(3) {
  grid-column: 2;
  align-self: start;
}

.mockup-graph-isle-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.mockup-graph-isle-connectors line {
  stroke: hsl(var(--chronell-primary) / 0.68);
  stroke-width: 1.85;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px hsl(var(--chronell-primary) / 0.3));
}

.mockup-graph-tile-connector {
  flex: 0 0 1rem;
  height: 2px;
  background: hsl(var(--chronell-primary) / 0.65);
  margin: 0 -0.06rem;
  z-index: 0;
  box-shadow: 0 0 4px hsl(var(--chronell-primary) / 0.35);
}

.mockup-graph-tile {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.22rem;
  padding: 0.32rem 0.62rem 0.32rem 0.34rem;
  border-radius: 7px;
  background: hsl(240 18% 13% / 0.98);
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 2px 8px hsl(0 0% 0% / 0.35);
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.mockup-graph-tile-dot {
  position: absolute;
  top: 0.28rem;
  left: 0.28rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  z-index: 1;
}

.mockup-graph-tile-dot.dot--violet {
  background: hsl(var(--chronell-primary) / 0.9);
}

.mockup-graph-tile-dot.dot--orange {
  background: hsl(28 85% 52% / 0.9);
}

.mockup-graph-tile-dot.dot--blue {
  background: hsl(212 70% 48% / 0.9);
}

.mockup-graph-tile-dot.dot--green {
  background: hsl(142 55% 42% / 0.9);
}

.mockup-graph-tile .icon {
  width: 0.66rem;
  height: 0.66rem;
  margin-left: 0.4rem;
  margin-top: 0.04rem;
  flex-shrink: 0;
  color: hsl(220 12% 68%);
}

.mockup-graph-tile .lines {
  flex: 1;
  min-width: 0;
  padding-top: 0.06rem;
}

.mockup-graph-tile .lines .title {
  display: block;
  height: 4px;
  width: 92%;
  margin-bottom: 0.22rem;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.2);
}

.mockup-graph-tile .lines .title.mockup-skel--bright {
  background: hsl(0 0% 100% / 0.28);
}

.mockup-graph-tile .lines .sub {
  display: block;
  height: 3px;
  width: 72%;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
}

.mockup-graph-tile .lines .sub.mockup-skel--dim {
  background: hsl(0 0% 100% / 0.07);
}

.mockup-graph-tile-text .lines .title,
.mockup-graph-tile-text .lines .sub {
  height: auto;
  width: auto;
  border-radius: 0;
  background: none;
}

.mockup-graph-tile-text .lines .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1.28;
  color: hsl(220 14% 86%);
  margin-bottom: 0.1rem;
}

.mockup-graph-tile-text .lines .sub {
  font-size: 0.42rem;
  line-height: 1.2;
  color: hsl(220 8% 52%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-graph-tile-link {
  position: absolute;
  right: -0.14rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: hsl(var(--chronell-primary) / 0.88);
  border: 1px solid hsl(240 20% 10%);
  box-shadow: 0 0 0 1px hsl(var(--chronell-primary) / 0.35);
  z-index: 2;
  color: hsl(0 0% 100% / 0.92);
}

.mockup-graph-tile-link svg {
  width: 0.34rem;
  height: 0.34rem;
}

.mockup-graph-controls div {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 5px;
  background: hsl(240 20% 14% / 0.9);
  border: 1px solid hsl(var(--glass-border));
}

.mockup-graph-island-skel {
  width: 2.8rem;
  height: 0.36rem;
  padding: 0;
  border-radius: 2px;
  background: hsl(0 0% 100% / 0.1);
  font-size: 0;
  color: transparent;
  text-transform: none;
  letter-spacing: 0;
}

.mockup-graph-island-skel--wide {
  width: 3.6rem;
}

.mockup-graph-node {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.35rem 0.45rem;
  max-width: 5.5rem;
  border-radius: 8px;
  background: hsl(240 20% 14% / 0.92);
  border: 1px solid hsl(var(--chronell-primary) / 0.35);
  box-shadow: 0 4px 12px hsl(0 0% 0% / 0.35);
}

.mockup-graph-node .icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  color: hsl(var(--chronell-primary-soft));
}

.mockup-graph-node .lines .mockup-skel {
  height: 3px;
  margin-bottom: 0.2rem;
}

.mockup-graph-node .link-badge {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: hsl(var(--chronell-primary));
  border: 1px solid hsl(240 20% 12%);
}

.mockup-graph-island {
  position: absolute;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted));
  opacity: 0.85;
}

.mockup-graph-node--a {
  top: 18%;
  left: 38%;
}

.mockup-graph-node--b {
  top: 42%;
  left: 58%;
}

.mockup-graph-node--c {
  top: 58%;
  left: 28%;
}

.mockup-graph-node--d {
  top: 28%;
  left: 62%;
}

.mockup-graph-node--e {
  top: 68%;
  left: 52%;
}

.mockup-list-compact .mockup-list-item {
  padding: 0.4rem;
}

.mockup-list-compact .top-line {
  width: 75%;
}

/* Module showcase section */
#showcase {
  padding-top: 2rem;
}

.showcase-intro {
  margin-bottom: 3rem;
}

.showcase-rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.showcase-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
  }

  .showcase-row--reverse .showcase-copy {
    order: 2;
  }

  .showcase-row--reverse .showcase-mockup {
    order: 1;
  }
}

.showcase-copy h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
}

.showcase-copy .showcase-vs {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--chronell-primary-soft));
  margin: 0 0 0.5rem;
}

.showcase-copy p {
  margin: 0 0 1rem;
  color: hsl(220 12% 78%);
  font-size: 0.98rem;
}

.showcase-copy ul {
  margin: 0;
  padding-left: 1.15rem;
  color: hsl(var(--muted));
  font-size: 0.92rem;
}

.showcase-copy li {
  margin-bottom: 0.4rem;
}

.showcase-copy li strong {
  color: hsl(220 15% 88%);
  font-weight: 600;
}

.showcase-mockup .mockup-frame {
  margin: 0;
}

.showcase-row--featured .mockup-body--connections {
  min-height: 18rem;
}

@media (max-width: 899px) {
  .mockup-body--calendar,
  .mockup-body--tasks,
  .mockup-body--notes,
  .mockup-body--contacts,
  .mockup-body--connections {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mockup-pane--nav,
  .mockup-pane--timeline,
  .mockup-pane--preview,
  .mockup-pane--empty,
  .mockup-list-compact {
    display: none;
  }

  .mockup-topbar-search {
    display: none;
  }
}

/* Quote */
.quote-section {
  padding: 2rem 0 4rem;
}

.quote-block {
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-color: hsl(var(--chronell-primary) / 0.2);
  box-shadow:
    var(--glass-shadow-sm),
    inset 0 1px 0 hsl(var(--glass-highlight));
}

/* Method grid */
.method-intro {
  margin-bottom: 2.5rem;
}

.method-oneliner {
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(220 15% 80%);
  margin: 0 0 0.5rem;
}

.method-builtin {
  font-size: 0.95rem;
  color: hsl(var(--muted));
  margin: 0;
}

.principles-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.principle-card {
  padding: 1.75rem;
}

.principle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: hsl(var(--chronell-primary) / 0.2);
  color: hsl(var(--chronell-primary));
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.principle-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.principle-sub {
  color: hsl(var(--chronell-cyan));
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.principle-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: hsl(220 10% 78%);
  font-size: 0.92rem;
}

.principle-card li {
  margin-bottom: 0.35rem;
}

.principle-app {
  font-size: 0.8rem;
  color: hsl(var(--muted));
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--glass-border));
}

/* Compare */
.compare-columns {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .compare-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-col {
  padding: 1.75rem;
}

.compare-col.outlook {
  border-color: hsl(0 60% 50% / 0.2);
}

.compare-col.chronell {
  border-color: hsl(var(--chronell-primary) / 0.3);
  box-shadow:
    var(--glass-shadow-sm),
    0 0 30px hsl(var(--chronell-primary) / 0.08);
}

.compare-col h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: hsl(220 10% 78%);
}

.compare-col li::before {
  margin-right: 0.5rem;
}

.compare-col.outlook li::before {
  content: '✕';
  color: hsl(0 70% 58%);
}

.compare-col.chronell li::before {
  content: '✓';
  color: hsl(var(--chronell-green));
}

.claims-rotator {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.claim-item {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  opacity: 0.92;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--glass-border));
}

.compare-table th {
  color: hsl(var(--muted));
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table td:first-child {
  font-weight: 600;
  color: hsl(220 10% 85%);
}

.disclaimer {
  font-size: 0.85rem;
  color: hsl(var(--muted));
  margin: 0;
}

/* Feature tiles */
.section-lead {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: hsl(220 10% 78%);
}

.spotlight-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .spotlight-grid--quad {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .spotlight-grid--quad {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spotlight-card--featured {
  border-color: color-mix(in srgb, var(--brand-sky) 55%, transparent);
  box-shadow:
    var(--glass-shadow-sm),
    0 0 48px color-mix(in srgb, var(--brand-royal) 28%, transparent);
}

/* Release timeline */
.release-timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .release-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

.release-card {
  padding: 1.35rem 1.25rem 1.2rem;
}

.release-card--latest {
  border-color: color-mix(in srgb, var(--brand-sky) 50%, transparent);
}

@media (min-width: 900px) {
  .release-card--latest {
    grid-column: 1 / -1;
  }
}

.release-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
}

.release-version {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-sky);
  font-variant-numeric: tabular-nums;
}

.release-date {
  font-size: 0.82rem;
  color: hsl(220 10% 62%);
}

.release-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  color: hsl(220 20% 96%);
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-sky));
}

.release-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.release-bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: hsl(220 10% 76%);
}

.release-bullets li + li {
  margin-top: 0.35rem;
}

.spotlight-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  border-color: color-mix(in srgb, var(--brand-sky) 40%, transparent);
  box-shadow:
    var(--glass-shadow-sm),
    0 0 36px color-mix(in srgb, var(--brand-royal) 18%, transparent);
}

.spotlight-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  color: var(--brand-sky);
  background: color-mix(in srgb, var(--brand-royal) 20%, transparent);
  border-radius: 12px;
}

.spotlight-icon-wrap svg {
  width: 1.35rem;
  height: 1.35rem;
}

.spotlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.spotlight-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: hsl(220 10% 78%);
}

.spotlight-bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: hsl(220 10% 72%);
}

.spotlight-bullets li + li {
  margin-top: 0.35rem;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 2.5rem;
}

.feature-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 11.5rem;
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.feature-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: hsl(var(--chronell-primary));
  line-height: 1.25;
}

.feature-tile p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: hsl(var(--muted));
  flex: 1;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--brand-sky) 22%, transparent),
    color-mix(in srgb, var(--brand-royal) 18%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--brand-violet) 35%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand-royal) 25%, transparent);
}

.feature-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--brand-sky);
}

/* Screenshots */
.screenshot-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsl(var(--glass-border));
  background: hsl(220 8% 10% / 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 0.35s, box-shadow 0.35s;
}

.screenshot-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px hsl(0 0% 0% / 0.35);
}

.screenshot-frame .app-chrome {
  padding: 0.55rem 0.75rem;
  margin-bottom: 0;
  background: hsl(220 8% 12%);
}

.screenshot-body {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(
    145deg,
    hsl(220 8% 12%) 0%,
    hsl(262 30% 18%) 50%,
    hsl(217 40% 16%) 100%
  );
  position: relative;
}

.screenshot-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    hsl(0 0% 100% / 0.02) 2px,
    hsl(0 0% 100% / 0.02) 4px
  );
  pointer-events: none;
}

.screenshot-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--brand-royal) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-violet) 30%, transparent);
  z-index: 1;
}

.screenshot-icon {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--brand-sky);
}

.screenshot-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--muted));
  z-index: 1;
}

.screenshot-placeholder {
  font-size: 0.75rem;
  color: hsl(var(--muted));
  opacity: 0.7;
  z-index: 1;
}

.screenshot-body--image {
  padding: 0;
  background: hsl(220 8% 8%);
}

.screenshot-body--image .screenshot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screenshot-body--image .screenshot-icon-wrap,
.screenshot-body--image .screenshot-label,
.screenshot-body--image .screenshot-placeholder {
  display: none;
}

/* Modules */
.modules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.module-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: hsl(var(--glass-surface));
  border: 1px solid hsl(var(--glass-border));
  color: hsl(220 10% 85%);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.module-pill svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--brand-sky);
  flex-shrink: 0;
}

.module-pill:hover {
  border-color: hsl(var(--chronell-primary) / 0.4);
  box-shadow: 0 0 20px hsl(var(--chronell-primary) / 0.15);
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  padding: 1.5rem;
  text-align: center;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: hsl(220 10% 78%);
}

.trust-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand-royal) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-violet) 28%, transparent);
}

.trust-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand-sky);
}

/* Detailed compare table */
.compare-detailed {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsl(var(--glass-border));
}

.compare-detailed-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid hsl(var(--glass-border));
  align-items: center;
  font-size: 0.9rem;
}

.compare-detailed-row:last-child {
  border-bottom: none;
}

.compare-detailed-row.header {
  background: hsl(0 0% 0% / 0.22);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted));
}

.compare-detailed-row .label {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.compare-detailed-row .typical {
  color: hsl(var(--muted));
}

.compare-detailed-row .chronell-col {
  color: hsl(220 10% 88%);
  font-weight: 500;
}

.compare-detailed-row.header .chronell-col {
  color: hsl(var(--chronell-primary-soft));
}

@media (max-width: 768px) {
  .compare-detailed-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .compare-detailed-row.header {
    display: none;
  }

  .compare-detailed-row .typical::before {
    content: attr(data-typical-label) ': ';
    font-weight: 600;
    color: hsl(var(--muted));
  }

  .compare-detailed-row .chronell-col::before {
    content: 'Chronell: ';
    font-weight: 600;
    color: hsl(var(--chronell-primary-soft));
  }
}

/* Honest limits */
.limits-panel {
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
  border-left: 3px solid hsl(var(--chronell-accent));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: hsl(var(--chronell-accent) / 0.06);
}

.limits-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.limits-panel p {
  margin: 0 0 0.75rem;
  color: hsl(var(--muted));
}

.limits-panel p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
}

.cta-inner {
  text-align: center;
  padding: 3rem 2rem;
  border-color: hsl(var(--chronell-primary) / 0.25);
  background: linear-gradient(135deg, hsl(var(--glass-surface)), hsl(262 40% 20% / 0.35));
  box-shadow:
    var(--glass-shadow),
    0 0 60px hsl(var(--chronell-primary) / 0.15);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, hsl(var(--chronell-primary) / 0.12), transparent 55%);
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
}

.cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-inner p {
  color: hsl(var(--muted));
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid hsl(var(--glass-border));
}

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

.footer-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(220 15% 80%);
  max-width: 28rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: hsl(var(--muted));
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-copy {
  font-size: 0.8rem;
  color: hsl(var(--muted));
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
