/* ============================================
   AlessIA Flow — Landing Page styles
   ============================================ */

:root {
  --accent: #684da0;
  --accent-fg: #ffffff;
  --accent-soft: #f0ecf8;
  --accent-ring: rgba(104, 77, 160, 0.22);

  --bg: oklch(98.5% 0.004 80);
  --bg-soft: oklch(96.5% 0.005 80);
  --surface: #ffffff;
  --ink: oklch(18% 0.01 260);
  --ink-2: oklch(38% 0.015 260);
  --ink-3: oklch(58% 0.012 260);
  --line: oklch(92% 0.005 260);
  --line-2: oklch(96% 0.004 260);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 0 rgba(15, 23, 42, 0.02);
  --shadow: 0 6px 14px -6px rgba(15, 23, 42, 0.10), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 22px 40px -16px rgba(15, 23, 42, 0.18), 0 4px 12px -4px rgba(15, 23, 42, 0.08);
  --shadow-float: 0 30px 60px -28px rgba(15, 23, 42, 0.30), 0 8px 18px -8px rgba(15, 23, 42, 0.10);

  --font-sans: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-display: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; }

.app {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 1px 1px, oklch(85% 0.005 260 / 0.5) 1px, transparent 0)
    0 0 / 22px 22px,
    var(--bg);
}

/* ============================================
   NAV
   ============================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 28px;
  backdrop-filter: saturate(140%) blur(8px);
  background: oklch(98.5% 0.004 80 / 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav-wrap.scrolled {
  border-color: var(--line);
  background: oklch(98.5% 0.004 80 / 0.92);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}
.brand-mark::before {
  width: 8px; height: 8px;
  background: var(--accent);
  top: 7px; left: 7px;
}
.brand-mark::after {
  width: 5px; height: 5px;
  background: oklch(95% 0.02 260);
  bottom: 7px; right: 7px;
}
.brand b { font-weight: 600; }
.brand span { color: var(--ink-3); font-weight: 400; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-2);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-links a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.nav-cta {
  display: flex; gap: 8px; align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s, box-shadow .15s, border-color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ghost { color: var(--ink-2); }
.btn--ghost:hover { background: var(--bg-soft); color: var(--ink); }

.btn--outline {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: oklch(85% 0.01 260); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 4px 12px -2px var(--accent-ring);
}
.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 18px -4px var(--accent-ring);
}

.btn--lg {
  padding: 14px 26px;
  font-size: 15.5px;
  border-radius: 999px;
}

/* ============================================
   LAYOUT
   ============================================ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 28px;
  position: relative;
}
.section--tight { padding: 64px 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.section-head {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 560px;
  margin: 0;
  text-wrap: pretty;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 64px 28px 120px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 640px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 48px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  max-width: 920px;
  text-wrap: balance;
}
.hero h1 .muted {
  color: var(--ink-3);
  font-weight: 500;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 540px;
  margin: 8px 0 4px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.hero-meta {
  display: flex; gap: 16px 20px; align-items: center;
  flex-wrap: wrap; justify-content: center;
  max-width: 600px;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 999px;
  background: oklch(80% 0.01 260);
}
.hero-meta .check {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-meta .check svg { color: oklch(60% 0.15 145); }

/* Hero floating elements */
.hero-float {
  position: absolute;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-float);
  z-index: 1;
  transition: transform .3s ease;
}
.hero-float:hover { transform: translateY(-4px) rotate(0deg) !important; }

.float-note {
  top: 70px; left: 32px;
  width: 220px; padding: 18px 18px 22px;
  background: oklch(96% 0.06 95);
  transform: rotate(-6deg);
  font-family: "Caveat", "Bradley Hand", cursive;
  font-size: 17px;
  color: oklch(30% 0.05 80);
  line-height: 1.35;
}
.float-note::before {
  content: "";
  position: absolute;
  top: -6px; left: 22px;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: oklch(40% 0.05 25);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.float-check {
  top: 240px; left: 90px;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  transform: rotate(-8deg);
  background: var(--surface);
}
.float-check .box {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: white;
}

.float-reminders {
  top: 80px; right: 32px;
  width: 240px; padding: 18px;
  transform: rotate(5deg);
}
.float-reminders .header-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.float-reminders h4 {
  font-size: 15px; margin: 0; font-weight: 600;
}
.float-reminders .tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  padding: 2px 6px;
  background: var(--bg-soft);
  border-radius: 4px;
}
.float-reminders .row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
}
.float-reminders .row .time {
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 11.5px;
  margin-left: auto;
}
.float-reminders .row .pip {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
}

.float-clock {
  top: 250px; right: 100px;
  width: 70px; height: 70px;
  border-radius: 999px;
  display: grid; place-items: center;
  transform: rotate(8deg);
}
.float-clock .face {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  position: relative;
}
.float-clock .face::before, .float-clock .face::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  left: 50%; top: 50%;
  transform-origin: 50% 100%;
}
.float-clock .face::before {
  width: 2px; height: 14px;
  transform: translate(-50%, -100%) rotate(40deg);
}
.float-clock .face::after {
  width: 2px; height: 18px;
  transform: translate(-50%, -100%) rotate(-30deg);
}

.hero-orb {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-float);
  display: grid; place-items: center;
  margin-bottom: 4px;
  position: relative;
}
.hero-orb .pips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.hero-orb .pip {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--ink);
}
.hero-orb .pip.accent { background: var(--accent); }

/* Hero floating cards — flanqueiam a lede/CTA */
.float-tasks {
  position: absolute;
  top: 59%; left: 28px;
  width: 240px;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-float);
  padding: 14px;
  z-index: 1;
}
.float-tasks h5 {
  font-size: 12px; margin: 0 0 8px;
  font-weight: 600;
  color: var(--ink-2);
}
.task-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line-2);
}
.task-row:first-of-type { border-top: 0; }
.task-row .icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.task-row .info {
  flex: 1; min-width: 0;
}
.task-row .info .title {
  font-size: 13px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.task-row .info .sub {
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.task-row .pct {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  width: 36px; text-align: right;
}
.task-row .bar {
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.task-row .bar > span {
  display: block; height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.float-integrations {
  position: absolute;
  top: 62%; right: 28px;
  width: 236px;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-float);
  padding: 14px;
  z-index: 1;
}
.float-integrations .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.float-integrations .head h5 {
  margin: 0; font-size: 12px; font-weight: 600;
}
.float-integrations .head .count {
  font-size: 11px; color: var(--ink-3);
  font-family: var(--font-mono);
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.int-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
}
.int-tile.solid { background: var(--surface); box-shadow: var(--shadow-sm); }

/* ============================================
   LOGO STRIP
   ============================================ */
.logos {
  padding: 32px 0 16px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.logos p {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-family: var(--font-mono);
}
.logos-marquee {
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 90px, #000 calc(100% - 90px), transparent);
}
.logos-marquee.dragging { cursor: grabbing; }
.logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.logos-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  text-wrap: pretty;
}
.feature-card .preview {
  margin-top: 22px;
  height: 200px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}

.feature-card.span-3 { grid-column: span 3; }
.feature-card.span-2 { grid-column: span 2; }
.feature-card.span-4 { grid-column: span 4; }
.feature-card.span-6 { grid-column: span 6; }

/* Feature: Workflow board preview */
.preview-board {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 100%;
}
.preview-board .col {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.preview-board .col-title {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.preview-board .card {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
}
.preview-board .card .meta {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  margin-top: 4px;
}
.preview-board .card.accent {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Feature: Auto-flow */
.preview-flow {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.preview-flow .node {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
}
.preview-flow .node .pip {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent);
}
.preview-flow .node.dim {
  background: var(--bg-soft);
  color: var(--ink-3);
}
.preview-flow .node.dim .pip { background: var(--line); }
.preview-flow .arrow {
  width: 1px;
  height: 8px;
  background: var(--line);
  margin-left: 16px;
}
.preview-flow .label {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  margin-left: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Feature: AI suggest */
.preview-ai {
  padding: 18px;
  height: 100%;
  display: flex; flex-direction: column;
  gap: 10px;
}
.preview-ai .chat {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  max-width: 80%;
}
.preview-ai .chat.user {
  align-self: flex-end;
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.preview-ai .chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: auto;
}
.preview-ai .chip {
  font-size: 10.5px;
  padding: 4px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-family: var(--font-mono);
}

/* Feature: Stats */
.preview-stats {
  padding: 18px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.preview-stats .stat {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column;
}
.preview-stats .stat .num {
  font-size: 21px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.preview-stats .stat .lbl {
  font-size: 11px;
  line-height: 1.2;
  color: var(--ink-3);
  font-family: var(--font-mono);
  margin-top: 2px;
}
.preview-stats .stat .delta {
  font-size: 10px;
  line-height: 1.2;
  font-family: var(--font-mono);
  margin-top: auto;
  color: oklch(60% 0.15 145);
}

/* Feature: Calendar */
.preview-cal {
  padding: 20px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.preview-cal .d {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 4px 5px;
}
.preview-cal .d.has::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 14px; margin-left: 1px;
}
.preview-cal .d.today {
  background: var(--ink);
  color: white;
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.showcase {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.showcase-tabs {
  display: flex; gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 auto 36px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.showcase-tabs button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .15s;
}
.showcase-tabs button.active {
  background: var(--ink);
  color: white;
}

.product-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.product-frame .bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.product-frame .bar .dots {
  display: flex; gap: 6px;
}
.product-frame .bar .dot {
  width: 11px; height: 11px;
  border-radius: 999px;
  background: var(--line);
}
.product-frame .bar .url {
  flex: 1;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-align: center;
}
.product-frame .body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 500px;
}
.product-frame .sidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 20px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-frame .sidebar .group {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 8px 6px;
}
.product-frame .sidebar .item {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-2);
}
.product-frame .sidebar .item.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.product-frame .sidebar .item .ic {
  width: 14px; height: 14px;
  background: var(--line);
  border-radius: 4px;
}
.product-frame .sidebar .item.active .ic { background: var(--accent); }

.product-frame .main {
  padding: 24px 28px;
  background: var(--surface);
}
.product-frame .greet {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.product-frame .greet .you { color: var(--accent); }
.product-frame .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 20px;
}
.product-frame .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.product-frame .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.product-frame .panel h6 {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
.product-frame .panel.col-span-2 { grid-column: span 2; }
.product-frame .timer {
  font-size: 36px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-frame .timer-row {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.product-frame .timer-btn {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--accent);
  display: grid; place-items: center;
  color: white; font-size: 11px;
}
.product-frame .ring {
  --p: 72;
  width: 92px; height: 92px;
  border-radius: 999px;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--bg-soft) 0);
  display: grid; place-items: center;
  margin: 0 auto;
}
.product-frame .ring-inner {
  width: 70px; height: 70px;
  border-radius: 999px;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
}
.product-frame .task-list {
  display: flex; flex-direction: column;
  margin-top: 10px;
}
.product-frame .task-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
  font-size: 12px;
}
.product-frame .task-item:first-child { border: 0; }
.product-frame .task-item .check {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--line);
}
.product-frame .task-item.done .check {
  background: var(--accent);
  border-color: var(--accent);
}
.product-frame .task-item.done .label {
  text-decoration: line-through;
  color: var(--ink-3);
}
.product-frame .task-item .label { flex: 1; }
.product-frame .task-item .pct {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
}

/* ============================================
   INTEGRATIONS
   ============================================ */
.int-section {
  text-align: center;
}
.int-board {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  background:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px) 0 0 / 80px 100%,
    linear-gradient(to bottom, var(--line-2) 1px, transparent 1px) 0 0 / 100% 80px;
  padding: 48px 0;
}
.int-center {
  width: 64px; height: 64px;
  margin: 0 auto 32px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-float);
  display: grid; place-items: center;
}
.int-center .pips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.int-center .pip {
  width: 10px; height: 10px; border-radius: 999px; background: var(--ink);
}
.int-center .pip.accent { background: var(--accent); }

.int-row-big {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 12px;
}
.int-row-big .tile {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.int-row-big .tile .glyph {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  color: white;
  font-size: 13px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.t-card.tall { grid-row: span 2; }
.t-card .quote {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.t-card .author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.t-card .avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}
.t-card .who {
  display: flex; flex-direction: column;
}
.t-card .who b {
  font-size: 13.5px; font-weight: 600;
}
.t-card .who span {
  font-size: 12px; color: var(--ink-3);
}
.t-card.featured {
  background: var(--ink);
  color: white;
}
.t-card.featured .quote { color: white; font-size: 19px; line-height: 1.4; font-weight: 500; }
.t-card.featured .who b { color: white; }
.t-card.featured .who span { color: oklch(75% 0.01 260); }

.t-card.video {
  background: linear-gradient(135deg, var(--accent), oklch(35% 0.2 310));
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  justify-content: flex-end;
}
.t-card.video .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .15s;
}
.t-card.video .play:hover { transform: translate(-50%, -50%) scale(1.05); }
.t-card.video .play::after {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--accent);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.t-card.video .badge {
  font-size: 11px;
  font-family: var(--font-mono);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}
.t-card.video .quote { color: white; font-size: 14px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-toggle {
  display: flex; gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 auto 40px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 13.5px;
  color: var(--ink-3);
  cursor: pointer;
}
.pricing-toggle button.active {
  background: var(--ink);
  color: white;
}
.pricing-toggle .save {
  font-size: 10px;
  font-family: var(--font-mono);
  background: oklch(94% 0.08 145);
  color: oklch(40% 0.1 145);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.featured {
  background: var(--accent);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.price-card .plan-head h3 {
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.price-card .plan-head p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
}
.price-card.featured .plan-head p { color: oklch(95% 0.04 260); }
.price-card .price {
  display: flex; align-items: baseline; gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.price-card.featured .price { border-color: rgba(255,255,255,0.2); }
.price-card .price .amount {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .price .per {
  font-size: 14px;
  color: var(--ink-3);
}
.price-card.featured .price .per { color: oklch(90% 0.04 260); }
.price-card .features-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13.5px;
}
.price-card .features-list li {
  display: flex; align-items: flex-start; gap: 8px;
}
.price-card .features-list li::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' d='M6.5 11.5 3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5z'/></svg>") center/contain no-repeat;
}
.price-card.featured .features-list li::before { background: white; }
.price-card .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10.5px;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card .btn { width: 100%; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  user-select: none;
}
.faq-q .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink-2);
  border-radius: 2px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
  font-size: 14.5px;
  color: var(--ink-3);
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 22px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  max-width: 1144px;
  margin: 0 auto;
  padding: 60px 48px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 12px;
  text-wrap: balance;
}
.cta-banner p {
  font-size: 15.5px;
  color: oklch(80% 0.01 260);
  margin: 0 0 24px;
  max-width: 460px;
}
.cta-banner .btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.cta-banner .btn--outline:hover { border-color: white; }
.cta-banner .btn--primary {
  background: white;
  color: var(--ink);
}
.cta-art {
  position: relative;
  height: 200px;
}
.cta-art .blob {
  position: absolute;
  border-radius: 22px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-float);
  padding: 14px;
}
.cta-art .b1 {
  top: 0; right: 40px;
  width: 140px;
  transform: rotate(-4deg);
  font-family: var(--font-mono);
  font-size: 11px;
}
.cta-art .b1 .row { display: flex; justify-content: space-between; padding: 4px 0; }
.cta-art .b2 {
  bottom: 0; right: 0;
  width: 70px; height: 70px;
  display: grid; place-items: center;
  transform: rotate(8deg);
}
.cta-art .b2 .pips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.cta-art .b2 .pips .p {
  width: 10px; height: 10px; border-radius: 999px; background: var(--ink);
}
.cta-art .b2 .pips .p.a { background: var(--accent); }
.cta-art .b3 {
  bottom: 30px; left: 0;
  width: 110px; padding: 12px 14px;
  background: var(--accent);
  color: white;
  transform: rotate(-3deg);
  font-size: 12px;
  font-weight: 500;
}
.cta-art .b3 .num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 64px 28px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
}
.footer .brand-blurb {
  font-size: 13.5px;
  color: var(--ink-3);
  max-width: 280px;
  margin-top: 12px;
}
.footer-col h6 {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature-card.span-3, .feature-card.span-2, .feature-card.span-4, .feature-card.span-6 { grid-column: span 2; }
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-frame .body { grid-template-columns: 1fr; }
  .product-frame .sidebar { display: none; }
  .nav-links { display: none; }
  .float-note, .float-check, .float-reminders, .float-clock { display: none; }
  .cta-banner { grid-template-columns: 1fr; }
}
@media (max-width: 1120px) {
  .hero { padding-bottom: 56px; }
  .float-tasks, .float-integrations { position: static; width: 100%; max-width: 420px; margin: 16px auto 0; }
  .hero-meta { max-width: none; }
}
