/* ============================================
   CAPTURO — Light Minimalist Startup Design
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg:         #FFFFFF;
  --bg-subtle:  #FAFAFA;
  --surface:    #FFFFFF;
  --surface-alt: #F5F5F5;
  --glass:      rgba(0,0,0,.02);
  --glass-border: rgba(0,0,0,.06);
  --text:       #111111;
  --text-mid:   rgba(17,17,17,.55);
  --text-dim:   rgba(17,17,17,.35);
  --accent:     #E31B23;
  --accent-hover: #C41A22;
  --accent-glow: rgba(227,27,35,.12);
  --accent-soft: rgba(227,27,35,.06);
  --border:     rgba(0,0,0,.08);
  --border-vis: rgba(0,0,0,.12);
  --shadow-xs:  0 1px 3px rgba(0,0,0,.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.05);
  --shadow-md:  0 8px 30px rgba(0,0,0,.07);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.10);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-pill: 100px;
  --font:       'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(227,27,35,.12); color: #111; }

/* ---------- Utilities ---------- */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================
   NAV
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
  line-height: 0;
}
.logo-img {
  height: 30px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-size: .875rem; font-weight: 500; color: var(--text-mid);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: .875rem;
  border: none; cursor: pointer; border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-accent {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: .95rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227,27,35,.2);
}
.btn-accent:hover::before { opacity: 1; }
.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
}
.btn-outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-vis);
  border-radius: var(--radius-md);
  font-size: .9rem;
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* Nav CTA */
.nav-cta {
  padding: 9px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO — Split: Text Left, Problem Right
   ============================================ */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero-split {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

/* LEFT: Text content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--accent-soft);
  border: 1px solid rgba(227,27,35,.12);
  color: var(--accent);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-headline .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.hero-headline .serif-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .3;
}

.hero-outcome {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  max-width: 560px;
  line-height: 1.45;
  letter-spacing: -.015em;
  margin-bottom: 14px;
}
.hero-outcome em {
  font-style: normal;
  color: var(--accent);
}

/* Reminder channels — compact strip (browser, email, calendar) */
.hero-notify-bundle {
  margin-bottom: 18px;
  max-width: 560px;
}
.hero-notify-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.hero-notify-pill-hub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(227, 27, 35, .14);
  color: var(--accent);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-notify-pill-hub:hover {
  border-color: rgba(227, 27, 35, .28);
  box-shadow: var(--shadow-sm);
}
.hero-notify-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border-vis);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-notify-pill:hover {
  border-color: rgba(227, 27, 35, .18);
  box-shadow: var(--shadow-sm);
}
.hero-notify-pill-bell {
  flex-shrink: 0;
  color: var(--accent);
}
.hero-notify-pill-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.hero-notify-pill-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1.2;
}
.hero-notify-hint {
  margin: 10px 0 0;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: -.01em;
  line-height: 1.4;
}
.hero-typing-wrapper {
  margin-bottom: 20px;
  min-height: 28px;
}
.hero-typing {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.6;
}
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink-cursor .75s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-subtitle {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 20px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: .75rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ============================================
   RIGHT: Animated Problem Visualization
   ============================================ */
.hero-problem {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Chaos pulsing background */
.chaos-pulse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .06;
}
.chaos-pulse-1 {
  width: 300px; height: 300px;
  top: 10%; left: -10%;
  background: var(--accent);
  animation: chaos-drift 6s ease-in-out infinite;
}
.chaos-pulse-2 {
  width: 200px; height: 200px;
  bottom: 5%; right: -5%;
  background: #f39c12;
  animation: chaos-drift 8s ease-in-out infinite reverse;
}
@keyframes chaos-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -15px) scale(1.1); }
  66%      { transform: translate(-10px, 10px) scale(.95); }
}

/* Notification cards */
.notif-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  opacity: 0;
  max-width: 280px;
  animation: notif-appear .5s ease forwards, notif-float 4s ease-in-out infinite;
}
.notif-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.notif-icon-gmail    { background: #fce8e6; color: #c5221f; }
.notif-icon-slack    { background: #f0ebff; color: #611f69; }
.notif-icon-gcal     { background: #e8f0fe; color: #1a73e8; }
.notif-icon-notion   { background: #f5f5f5; color: #000000; }
.notif-icon-chrome   { background: #e6f4ea; color: #137333; }
.notif-icon-linkedin { background: #e8f0fe; color: #0a66c2; border-radius: var(--radius-sm); overflow: hidden; padding: 0; }
.notif-icon-linkedin svg { width: 100%; height: 100%; }
.notif-icon-x        { background: #f5f5f5; color: #000000; }

.notif-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.notif-source {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
}
.notif-text {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notif-date {
  font-size: .68rem;
  color: var(--text-dim);
}
.notif-status {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.notif-urgent {
  background: #fee2e2;
  color: #991b1b;
}
.notif-warning { font-size: .75rem; }
.notif-overdue {
  background: #fef3c7;
  color: #92400e;
}

/* Notification card positions — tightly packed, less whitespace */
.notif-1 { top: 3%;  left: 6%;  animation-delay: 0s, 0s; }
.notif-2 { top: 14%; right: 4%; animation-delay: .12s, -.8s; }
.notif-3 { top: 28%; left: 8%;  animation-delay: .24s, -1.6s; }
.notif-4 { top: 40%; right: 6%; animation-delay: .36s, -2.4s; }
.notif-5 { top: 54%; left: 4%;  animation-delay: .48s, -3.2s; }
.notif-6 { top: 66%; right: 5%; animation-delay: .6s, -1.2s; }
.notif-7 { top: 78%; left: 10%; animation-delay: .72s, -2s; }

@keyframes notif-appear {
  from { opacity: 0; transform: scale(.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes notif-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20%      { transform: translate(3px, -5px) rotate(.3deg); }
  40%      { transform: translate(-4px, 3px) rotate(-.2deg); }
  60%      { transform: translate(5px, 2px) rotate(.2deg); }
  80%      { transform: translate(-2px, -4px) rotate(-.3deg); }
}

/* Bottom label */
.problem-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  padding: 5px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.problem-label-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ============================================
   FLOW DIAGRAM SECTION
   ============================================ */
.flow-section {
  padding: 80px 0 60px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.flow-header {
  text-align: center;
  margin-bottom: 56px;
}
.flow-diagram {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 0;
  align-items: center;
  min-height: 360px;
  position: relative;
}

/* Flow sources — left column */
.flow-sources {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-source {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  opacity: 0;
  animation: flow-src-in .5s ease forwards;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flow-source:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.flow-source svg { color: var(--text-mid); flex-shrink: 0; }
.flow-src-1 { animation-delay: 0s; }
.flow-src-2 { animation-delay: .08s; }
.flow-src-3 { animation-delay: .16s; }
.flow-src-4 { animation-delay: .24s; }
.flow-src-5 { animation-delay: .32s; }
.flow-src-6 { animation-delay: .4s; }
.flow-src-7 { animation-delay: .48s; }

@keyframes flow-src-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Flow center — hub with particles */
.flow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 360px;
}

/* Animated particles flowing left→right */
.flow-arrows-in {
  position: absolute;
  left: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}
.flow-particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .4;
  animation: particle-flow 2.5s ease-in-out infinite;
}
.flow-particle-1 { top: 15%; animation-delay: 0s; }
.flow-particle-2 { top: 30%; animation-delay: .5s; }
.flow-particle-3 { top: 50%; animation-delay: 1s; }
.flow-particle-4 { top: 70%; animation-delay: 1.5s; }
.flow-particle-5 { top: 85%; animation-delay: 2s; }

@keyframes particle-flow {
  0%   { left: 0; opacity: 0; transform: scale(.5); }
  20%  { opacity: .6; transform: scale(1); }
  80%  { opacity: .6; transform: scale(1); }
  100% { left: 90%; opacity: 0; transform: scale(.5); }
}

/* Hub in center */
.flow-hub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.flow-hub-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  animation: hub-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hub-pulse {
  0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: .5; }
  50%      { transform: translate(-50%, -60%) scale(1.2); opacity: .8; }
}
.flow-hub-inner {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 1px solid var(--border-vis);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  position: relative;
  z-index: 1;
}
.flow-hub-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.flow-hub-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

/* Particles flowing out */
.flow-arrows-out {
  position: absolute;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}
.flow-particle-out {
  position: absolute;
  width: 6px; height: 6px;
  background: #27ae60;
  border-radius: 50%;
  opacity: .4;
  animation: particle-flow-out 2.5s ease-in-out infinite;
}
.flow-particle-out-1 { top: 25%; animation-delay: .3s; }
.flow-particle-out-2 { top: 50%; animation-delay: .8s; }
.flow-particle-out-3 { top: 75%; animation-delay: 1.3s; }

@keyframes particle-flow-out {
  0%   { right: 90%; opacity: 0; transform: scale(.5); }
  20%  { opacity: .6; transform: scale(1); }
  80%  { opacity: .6; transform: scale(1); }
  100% { right: 0; opacity: 0; transform: scale(.5); }
}

/* Flow output — right column: sorted results */
.flow-output {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  opacity: 0;
  animation: flow-res-in .5s ease forwards;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flow-result:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-sm);
}
.flow-res-1 { animation-delay: .6s; }
.flow-res-2 { animation-delay: .72s; }
.flow-res-3 { animation-delay: .84s; }
.flow-res-4 { animation-delay: .96s; }

@keyframes flow-res-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.flow-result-priority {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  flex-shrink: 0;
}
.priority-high { background: var(--accent); }
.priority-med  { background: #f39c12; }

.flow-result-body {
  flex: 1;
  min-width: 0;
}
.flow-result-title {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.flow-result-meta {
  display: block;
  font-size: .66rem;
  color: var(--text-dim);
}
.flow-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  white-space: nowrap;
}
.badge-synced {
  background: #dcfce7;
  color: #166534;
}
.badge-notify {
  background: #dbeafe;
  color: #1e40af;
}

/* Labels below flow diagram */
.flow-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0 8px;
}
.flow-label-item {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.flow-label-center {
  color: var(--accent);
}
.flow-label-emoji {
  font-size: .9rem;
}

.pain-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(227,27,35,.14);
  border-radius: var(--radius-pill);
}

/* ============================================
   SOLUTION REVEAL
   ============================================ */
.solution-section {
  padding: 100px 0 60px;
  text-align: center;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.solution-inner {
  max-width: 720px;
  margin: 0 auto;
}
.solution-divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.solution-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.solution-headline .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.solution-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.solution-logo-reveal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 28px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.solution-brand-img {
  height: 40px;
  width: auto;
  max-width: min(100%, 320px);
  object-fit: contain;
  display: block;
}
.solution-tagline {
  font-size: .82rem;
  color: var(--text-dim);
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* ============================================
   PLAYGROUND — Compact
   ============================================ */
.playground-section {
  padding: 48px 0 64px;
}
.playground-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-dim);
}
.section-subtitle-wide {
  font-size: 1rem;
  color: var(--text-mid);
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-subtitle-wide::-webkit-scrollbar {
  display: none;
}

/* Browser shell — slightly smaller */
.playground-browser {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-vis);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex; gap: 6px;
}
.dot-red, .dot-yellow, .dot-green {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(0,0,0,.08);
  transition: background .2s;
}
.dot-red:hover   { background: #FF5F57; }
.dot-yellow:hover { background: #FFBD2E; }
.dot-green:hover  { background: #28CA42; }
.browser-url-bar {
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 16px;
  font-size: .75rem;
  color: var(--text-dim);
  text-align: center;
}

/* Viewport — compacted */
.playground-viewport {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

/* Step layers */
.pg-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.pg-step-active {
  opacity: 1;
  pointer-events: all;
}

/* ------ STEP 1 ------ */
.step1-content {
  padding: 36px 44px;
  max-width: 560px;
}
.step1-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e67e22;
  margin-bottom: 12px;
}
.step1-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.step1-body {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 26px;
}
.step1-highlight-area {
  position: relative;
  display: inline-block;
}
.step1-highlight {
  display: inline;
  background: rgba(59,130,246,.1);
  color: #1e40af;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  cursor: default;
  user-select: all;
}

/* Floating capture button */
.capture-float-btn {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  color: var(--text);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  white-space: nowrap;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  animation: capture-btn-pulse 2.4s ease-in-out infinite;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.capture-float-btn:hover {
  background: var(--accent-soft);
  transform: translateX(-50%) scale(1.04);
  box-shadow: var(--shadow-lg);
  animation-play-state: paused;
}
.capture-float-btn:active {
  transform: translateX(-50%) scale(0.98);
}
@keyframes capture-btn-pulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%      { box-shadow: var(--shadow-md), 0 0 0 4px rgba(227, 27, 35, 0.12); }
}

.cursor-hint {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex; align-items: center; gap: 4px;
  color: var(--text-dim);
  font-size: .72rem;
  opacity: .6;
  pointer-events: none;
}

/* ------ STEP 2 ------ */
.step2-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.03);
}
.step2-blurred-content {
  padding: 36px 44px;
  max-width: 560px;
  opacity: .3;
  filter: blur(3px);
  pointer-events: none;
}

/* Modal — slightly smaller */
.step2-modal {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) translateX(20px);
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border-vis);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  transition: opacity .4s ease .1s, transform .4s ease .1s;
}
.pg-step-active .step2-modal {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.modal-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.modal-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
}
.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.modal-field label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.modal-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: .85rem;
  font-family: var(--font);
  background: var(--bg-subtle);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.modal-field input:focus { border-color: var(--accent); }
.modal-field input.link-input { color: var(--accent); }
.modal-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-save-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.modal-save-btn:hover { background: var(--accent-hover); }

/* ------ STEP 3: Dashboard + synced calendar preview ------ */
.step3-split {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 100%;
  padding: 18px 20px 22px;
  background: var(--bg-subtle);
  box-sizing: border-box;
}
.step3-dashboard {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  background: transparent;
}

/* Nested Google Calendar preview (demo step 3) */
.step3-gcal-panel {
  flex: 0 0 248px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-vis);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.step3-gcal-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.step3-gcal-chrome-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.step3-gcal-chrome-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .1);
}
.step3-gcal-url {
  flex: 1;
  min-width: 0;
  font-size: .6rem;
  color: var(--text-dim);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 8px;
}
.step3-gcal-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step3-gcal-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
}
.step3-gcal-month-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.step3-gcal-month {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
}
.step3-gcal-view-chip {
  font-size: .58rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.step3-gcal-week {
  display: flex;
  justify-content: space-between;
  gap: 3px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step3-gcal-wd {
  text-align: center;
  font-size: .52rem;
  color: var(--text-dim);
  line-height: 1.25;
  flex: 1;
}
.step3-gcal-wd strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  margin-top: 4px;
  padding: 0 2px;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-mid);
}
.step3-gcal-wd-active strong {
  background: #1a73e8;
  color: #fff;
}
.step3-gcal-event {
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: #e8f0fe;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 115, 232, .2);
  overflow: hidden;
}
.step3-gcal-event-color {
  width: 4px;
  flex-shrink: 0;
  background: #1a73e8;
}
.step3-gcal-event-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding: 10px 10px 10px 10px;
}
.step3-gcal-event-title {
  font-weight: 600;
  font-size: .76rem;
  color: #1967d2;
  line-height: 1.25;
}
.step3-gcal-event-meta {
  font-size: .62rem;
  color: var(--text-dim);
  line-height: 1.3;
}
.step3-gcal-foot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding: 4px 8px;
  align-self: flex-start;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #166534;
  background: #dcfce7;
  border-radius: var(--radius-pill);
}
.step3-gcal-foot svg {
  flex-shrink: 0;
  stroke: #166534;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-header-left {
  display: flex; align-items: center; gap: 12px;
}
.dash-title {
  font-size: 1.15rem;
  font-weight: 700;
}
.dash-next-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(227,27,35,.12);
  border-radius: var(--radius-pill);
}
.dash-reset-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  font-size: .75rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.dash-reset-btn:hover { color: var(--text); }

/* Tabs */
.dash-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  padding-left: 4px;
}
.dash-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.dash-tab:hover { color: var(--text-mid); }
.dash-tab-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* Table */
.dash-table {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  flex: 1;
}
.dash-table-head {
  display: grid;
  grid-template-columns: 40px 1.5fr 1fr 1.2fr 1.5fr 100px;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dim);
  align-items: center;
}
.dash-row {
  display: grid;
  grid-template-columns: 40px 1.5fr 1fr 1.2fr 1.5fr 100px;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  align-items: center;
  transition: background var(--transition);
}
.dash-row:last-child { border-bottom: none; }
.dash-row:hover { background: var(--bg-subtle); }
.dash-row-new { background: rgba(59,130,246,.04); }
.dash-row-new:hover { background: rgba(59,130,246,.07); }

.col-check { display: flex; justify-content: center; }
.col-title { font-weight: 500; display: flex; align-items: center; gap: 8px; }
.col-date  { font-size: .8rem; color: var(--text-mid); }
.col-link a {
  font-size: .75rem;
  color: var(--accent);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}
.col-link a:hover { text-decoration: underline; }
.col-remarks {
  font-size: .75rem;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.col-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.row-checkbox {
  width: 15px; height: 15px;
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: 3px;
}
.row-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red-indicator    { background: var(--accent); }
.dot-yellow-indicator { background: #f39c12; }
.row-action {
  background: none; border: none; cursor: pointer;
  color: rgba(0,0,0,.2);
  padding: 2px;
  transition: color var(--transition);
}
.row-action:hover { color: var(--text); }
.row-action[title="Done"]:hover { color: #27ae60; }
.row-action[title="Delete"]:hover { color: #e74c3c; }
.row-action[title="Snooze"]:hover { color: #3498db; }

/* Progress dots */
.progress-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
}
.progress-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-vis);
  transition: background var(--transition);
}
.progress-dots .dot.active { background: var(--accent); }
.progress-dots .dot-line {
  width: 32px; height: 1.5px;
  background: var(--border);
  transition: background var(--transition);
}
.progress-dots .dot-line.active { background: var(--accent); }

/* ============================================
   FEATURES — Bento with Live UI Mockups
   ============================================ */
.features-section {
  padding: 80px 0 100px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.features-header {
  text-align: center;
  margin-bottom: 20px;
}

.features-highlight-box {
  display: flex;
  max-width: 720px;
  margin: 0 auto 44px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-vis);
  box-shadow: var(--shadow-md);
}
.features-highlight-accent {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--accent) 0%, #ff6b6b 50%, var(--accent) 100%);
}
.features-highlight-inner {
  flex: 1;
  padding: 22px 26px 24px 22px;
  background: linear-gradient(135deg, rgba(227,27,35,.06) 0%, var(--surface) 42%, var(--surface) 100%);
}
.features-highlight-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.features-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.features-highlight-icon svg {
  display: block;
}
.features-highlight-kicker {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-dim);
}
.features-highlight-lead {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 10px;
}
.features-highlight-body {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
  max-width: 620px;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-vis);
}

.feature-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}
.feature-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: .02em;
}
.feature-tag-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-dim);
  padding: 4px 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* Preview panel — unique mini UI mockup */
.feature-preview {
  margin: 18px 24px 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

/* Preview 1 — Capture (extraction) */
.preview-capture {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(227,27,35,.16);
  border-radius: var(--radius-pill);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  align-self: flex-start;
}
.preview-chip-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.preview-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.preview-field {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.preview-field-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
}
.preview-field-value {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-link { color: var(--accent); }

/* Preview 2 — Dashboard */
.preview-dashboard {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-tabs {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.preview-tab {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-dim);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  margin-bottom: -9px;
}
.preview-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.preview-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .74rem;
}
.preview-row-highlight {
  background: var(--accent-soft);
  border-color: rgba(227,27,35,.18);
}
.preview-row-muted { opacity: .55; }
.preview-row-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.preview-row-dot-amber { background: #f39c12; }
.preview-row-dot-gray  { background: rgba(0,0,0,.2); }
.preview-row-text {
  flex: 1;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preview-row-date {
  font-size: .68rem;
  color: var(--text-dim);
  font-weight: 500;
  flex-shrink: 0;
}

/* Preview 3 — Calendar */
.preview-calendar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-cal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.preview-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.preview-cal-cell {
  text-align: center;
  font-size: .55rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 2px 0;
}
.preview-cal-day {
  text-align: center;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 0;
  border-radius: 4px;
}
.preview-cal-event {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 6px var(--accent-glow);
}
.preview-cal-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  padding: 3px 8px;
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius-pill);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Body text */
.feature-body {
  padding: 18px 24px 24px;
  margin-top: auto;
}
.feature-title-v2 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-desc-v2 {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.6;
  min-height: 2.75em;
}

/* ============================================
   CTA — Premium Scheduler
   ============================================ */
.cta-section {
  padding: 40px 0 80px;
}
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: none;
  border-radius: 28px;
  padding: 44px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(227,27,35,.24) 0%, transparent 70%);
  top: -120px; left: -80px;
  pointer-events: none;
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* LEFT pitch column */
.cta-content {
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: rgba(227,27,35,.12);
  border: 1px solid rgba(227,27,35,.22);
  color: #ff9d94;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 20px;
}
.cta-overline-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.cta-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.1;
}
.cta-headline-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: #ff6b5e;
  font-weight: 700;
}
.cta-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 400px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.cta-check {
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(39,174,96,.15);
  border: 1px solid rgba(39,174,96,.3);
  color: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  align-self: flex-start;
  flex-wrap: wrap;
}
.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.cta-meta-item svg { color: rgba(255,255,255,.5); }
.cta-meta-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.1);
}

/* RIGHT scheduler panel — light card on dark */
.cta-scheduler {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
}
.scheduler-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.scheduler-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scheduler-avatar {
  flex-shrink: 0;
  width: auto;
  max-width: 160px;
  height: 40px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.scheduler-avatar-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.scheduler-host-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.scheduler-host-role {
  font-size: .72rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.scheduler-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #166534;
  padding: 4px 10px;
  background: #dcfce7;
  border-radius: var(--radius-pill);
}
.scheduler-status-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.scheduler-body {
  position: relative;
  flex: 1;
  background: #fff;
}
.scheduler-body .calendly-inline-widget {
  width: 100%;
  min-height: 540px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  line-height: 0;
}
.footer-logo-img {
  height: 24px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .92;
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: .82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: .78rem;
  color: var(--text-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-problem {
    height: 380px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-outcome { margin-left: auto; margin-right: auto; }
  .hero-notify-bundle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-notify-pills {
    justify-content: center;
  }
  .hero-notify-hint {
    text-align: center;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group { justify-content: center; }

  .features-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-card { padding: 32px 24px; }
  .cta-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .scheduler-body .calendly-inline-widget {
    min-height: 500px;
  }
  .flow-diagram {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .flow-sources {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .flow-center { min-height: 160px; }
  .flow-arrows-in, .flow-arrows-out { display: none; }
  .flow-output { align-items: center; }
  .flow-labels { justify-content: center; gap: 24px; }
  .step2-modal {
    position: absolute;
    right: 16px;
    width: 300px;
    padding: 20px;
  }
  .dash-table-head,
  .dash-row {
    grid-template-columns: 32px 1.3fr .8fr 1fr 0 80px;
  }
  .col-remarks { display: none; }
}

@media (max-width: 680px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hero {
    padding: 80px 20px 60px;
  }
  .hero-headline { font-size: 2rem; }
  .hero-outcome { font-size: .95rem; }
  .hero-notify-pill-label { font-size: .74rem; }
  .hero-notify-hint { font-size: .72rem; }
  .hero-subtitle { font-size: .9rem; }
  .logo-img { height: 26px; max-width: 180px; }
  .features-highlight-box {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .features-highlight-accent {
    width: 100%;
    height: 5px;
  }
  .features-highlight-inner {
    padding: 18px 18px 20px;
    text-align: center;
  }
  .features-highlight-head {
    justify-content: center;
  }
  .features-highlight-body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-problem { height: 340px; }
  .notif-card { max-width: 240px; padding: 8px 10px; }
  .notif-text { font-size: .72rem; }
  .notif-status { display: none; }
  .step1-content { padding: 28px 20px; }
  .step1-heading { font-size: 1.35rem; }
  .step2-modal {
    position: absolute;
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    transform: none;
  }
  .pg-step-active .step2-modal { transform: none; }
  .step3-split {
    flex-direction: column;
    padding: 16px 14px 18px;
    gap: 16px;
  }
  .step3-dashboard { padding: 0; }
  .step3-gcal-panel {
    flex: none;
    width: 100%;
  }
  .dash-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .playground-viewport { min-height: 520px; }
  .cta-card { padding: 28px 20px; border-radius: 20px; }
  .cta-split {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
  .solution-logo-reveal {
    padding: 14px 20px;
  }
  .solution-brand-img {
    height: 34px;
    max-width: 260px;
  }
  .solution-tagline {
    margin: 0;
  }
  .flow-source { padding: 8px 10px; font-size: .7rem; }
}
