/* ════════════════════════════════════════════════════════════════════
   Planned — landing
   Dark, calm, lime. Bricolage Grotesque display · Instrument Serif
   italics · IBM Plex Mono micro-labels.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0e0e0e;
  --bg-deep: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.06);
  --txt: #f4f4f2;
  --txt-dim: rgba(255, 255, 255, 0.55);
  --txt-faint: rgba(255, 255, 255, 0.3);
  --txt-ghost: rgba(255, 255, 255, 0.16);
  --lime: #a3e635;
  --lime-ink: #101403;
  --lime-soft: rgba(163, 230, 53, 0.1);
  --lime-line: rgba(163, 230, 53, 0.32);
  --orange: #fb923c;
  --sky: #60a5fa;
  --violet: #a78bfa;
  --gold: #facc15;
  --f-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;
  --f-mono: "IBM Plex Mono", "Consolas", monospace;
  --r-lg: 22px;
  --r-md: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Base ───────────────────────────────────────────────────────────── */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

::selection {
  background: var(--lime);
  color: var(--lime-ink);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: rgba(163, 230, 53, 0.4); }

.mono {
  font-family: var(--f-mono);
  font-weight: 500;
}

.serif-i {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c, var(--lime));
  flex-shrink: 0;
}

.skip {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--lime-ink);
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  font-size: 13px;
  transition: top 0.2s;
}
.skip:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Buttons ────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, filter 0.25s,
    background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.25), 0 6px 28px rgba(163, 230, 53, 0.22);
}
.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1.5px);
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.35), 0 10px 36px rgba(163, 230, 53, 0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--txt-dim);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--txt);
  transform: translateY(-1.5px);
}

.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 11px; }
.btn-lg { padding: 17px 30px; font-size: 16px; border-radius: 16px; }

.btn-disabled {
  cursor: default;
  opacity: 0.45;
}
.btn-disabled:hover { transform: none; background: transparent; color: var(--txt-dim); }

.gchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

/* ── Nav ────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  font-size: 15px;
}
.brand-mark.sm { width: 24px; height: 24px; font-size: 12px; border-radius: 7px; }

.brand-name {
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-faint);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-links a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime-line);
}

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 168px 24px 96px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.blob-lime {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -80px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.11), transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
}
.blob-sky {
  width: 480px;
  height: 480px;
  bottom: -220px;
  left: -140px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.07), transparent 65%);
  animation: drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-50px, 44px) scale(1.12); }
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--txt-faint);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--lime);
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 1px;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.98;
  font-stretch: 95%;
}

.hero-title .serif-i {
  font-size: 1.04em;
  color: rgba(255, 255, 255, 0.92);
}

.hl {
  color: var(--lime);
  text-shadow: 0 0 44px rgba(163, 230, 53, 0.4);
}

.hero-sub {
  margin-top: 26px;
  max-width: 470px;
  font-size: 17.5px;
  color: var(--txt-dim);
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  margin-top: 26px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--txt-ghost);
}

/* ── Hero visual / demo ─────────────────────────────────────────────── */

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-confetti {
  position: absolute;
  inset: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  pointer-events: none;
  z-index: 6;
}

.float-card {
  position: absolute;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: #121212;
  border: 1px solid var(--line-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  width: 172px;
}

.float-note {
  top: -8px;
  left: -14px;
  transform: rotate(-5deg);
  animation: bob 7s ease-in-out infinite;
}

.float-event {
  bottom: 4px;
  right: -10px;
  transform: rotate(3.5deg);
  width: 188px;
  animation: bob 8s ease-in-out infinite reverse;
}

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

.fc-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.fc-item {
  font-size: 11px;
  color: var(--txt-dim);
  padding: 3px 0 3px 16px;
  position: relative;
}
.fc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.fc-item.done { color: var(--txt-faint); text-decoration: line-through; }
.fc-item.done::before {
  background: var(--violet);
  border-color: var(--violet);
}

.fc-event {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  border-left: 3px solid var(--sky);
  padding: 6px 0 6px 10px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 4px 8px 8px 4px;
}
.fc-event .mono { font-size: 10px; color: var(--txt-faint); }

/* the star of the show */
.demo-card {
  position: relative;
  z-index: 3;
  width: min(430px, 100%);
  padding: 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #161616, #101010);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transition: border-color 0.5s, box-shadow 0.5s, background 0.5s;
}

.demo-card.perfect {
  border-color: var(--lime-line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 54px rgba(163, 230, 53, 0.14);
}

.demo-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.demo-date {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--txt-faint);
}
.demo-dayname {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: rgba(163, 230, 53, 0.75);
}

.demo-greet {
  margin-top: 3px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.demo-pct-wrap { position: relative; }

.demo-pct {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 0.4s;
}
.perfect .demo-pct {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(163, 230, 53, 0.45);
}

.demo-floats {
  position: absolute;
  top: -4px;
  right: 0;
}
.demo-floats span {
  position: absolute;
  right: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--lime);
  animation: floatUp 0.9s ease-out forwards;
  white-space: nowrap;
}

@keyframes floatUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-40px); opacity: 0; }
}

.demo-bar {
  margin-top: 16px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.demo-bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(163, 230, 53, 0.75), var(--lime));
  box-shadow: 0 0 14px rgba(163, 230, 53, 0.4);
  transition: width 0.55s var(--ease-out);
}
.demo-bar.snap i { transition: none; }

.demo-meta {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 18px;
}

.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--txt-faint);
  transition: color 0.3s;
}
.demo-status .ic-zap { color: rgba(255, 255, 255, 0.22); transition: color 0.3s; }

.demo-status.combo {
  color: var(--orange);
  font-weight: 800;
  animation: comboPop 0.3s var(--ease-pop);
}
.demo-status.combo .ic-zap { color: var(--orange); }

.demo-status.win { color: var(--lime); font-weight: 700; }
.demo-status.win .ic-zap { color: var(--lime); }

@keyframes comboPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.demo-count {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--txt-ghost);
  text-transform: uppercase;
}

.demo-cols {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-group {
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.demo-group-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--txt-faint);
  margin-bottom: 9px;
}
.demo-group-name .dot { background: var(--gc); }

.demo-task {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 4px;
  border-radius: 9px;
}

.demo-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.demo-check svg {
  opacity: 0;
  transform: scale(0);
}

.demo-task.done .demo-check {
  background: var(--gc, var(--lime));
  border-color: var(--gc, var(--lime));
}
.demo-task.done .demo-check svg {
  opacity: 1;
  animation: checkPop 0.35s var(--ease-pop) forwards;
}

@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.demo-task-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s;
}
.demo-task.done .demo-task-label {
  color: var(--txt-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.demo-event {
  margin-top: 14px;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gc);
  border-radius: 8px 15px 15px 8px;
  background: rgba(251, 146, 60, 0.05);
  padding: 11px 14px;
}
.demo-event .demo-time {
  margin-left: auto;
  font-size: 10px;
  color: var(--txt-faint);
}

/* ── Marquee ────────────────────────────────────────────────────────── */

.marquee {
  border-block: 1px solid var(--line-soft);
  padding: 15px 0;
  overflow: hidden;
  background: var(--bg-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--txt-faint);
  white-space: nowrap;
}
.marquee-set i {
  font-style: normal;
  color: var(--lime);
  font-size: 9px;
}

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

/* ── Sections ───────────────────────────────────────────────────────── */

.section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px 30px;
}

.section-head { margin-bottom: 46px; }

.section-head h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4.4vw, 56px);
}

.section-head .serif-i {
  color: var(--lime);
  font-size: 1.03em;
}

/* ── Bento ──────────────────────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "a a a a a a a b b b b b"
    "a a a a a a a c c c c c"
    "d d d d e e e e f f f f";
  gap: 15px;
}

.cell-a { grid-area: a; }
.cell-b { grid-area: b; }
.cell-c { grid-area: c; }
.cell-d { grid-area: d; }
.cell-e { grid-area: e; }
.cell-f { grid-area: f; }

.cell {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}

.cell:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--panel-2);
}

.cell-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(163, 230, 53, 0.65);
}

.cell h3 {
  margin-top: 9px;
  font-size: 20.5px;
  letter-spacing: -0.02em;
}

.cell p {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--txt-dim);
}

.mock {
  margin-bottom: 22px;
  border-radius: 15px;
  flex-shrink: 0;
}

/* A · mini dashboard */
.mock-dash {
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #121212;
  border: 1px solid var(--line-soft);
}

.md-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.md-pct {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--txt);
}
.md-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.md-bar i {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: 3px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.4);
  transition: width 1s var(--ease-out);
}
.cell-a:hover .md-bar i { width: 100%; }

.md-cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.md-col { display: flex; flex-direction: column; gap: 9px; }

.md-ev {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 11px;
  border-left: 3px solid var(--c);
  border-radius: 4px 9px 9px 4px;
  background: rgba(255, 255, 255, 0.03);
}
.md-ev b { width: 64%; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.22); }
.md-ev u { width: 38%; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.09); text-decoration: none; }

.md-note {
  flex: 1;
  min-height: 40px;
  border-radius: 9px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 12px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.055) 0 5px,
    transparent 5px 19px
  );
  background-size: 72% 100%;
  background-position: 12px 12px;
  background-repeat: no-repeat;
  background-clip: content-box;
}

.md-goal {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
}
.md-goal i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.md-goal b { width: 62%; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.16); }
.md-goal.done i { background: var(--lime); border-color: var(--lime); }
.md-goal.done b { background: rgba(255, 255, 255, 0.08); }

/* B · weekday chips + skip */
.mock-goals {
  padding: 18px;
  background: #121212;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wk-chips { display: flex; gap: 7px; }
.wk-chips span {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 9px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--txt-faint);
  border: 1px solid var(--line-soft);
}
.wk-chips .on {
  color: var(--lime);
  border-color: var(--lime-line);
  background: var(--lime-soft);
}

.skip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
}
.skip-check {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
.skip-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--txt-faint);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}
.skip-pill {
  margin-left: auto;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px dashed rgba(250, 204, 21, 0.35);
  border-radius: 999px;
  padding: 3px 9px;
}

/* C · event card */
.mock-event {
  padding: 18px;
  background: #121212;
  border: 1px solid var(--line-soft);
}

.ev-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 13px;
  border: 1px solid var(--line-soft);
  background: rgba(96, 165, 250, 0.05);
}
.ev-stripe {
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--sky);
  flex-shrink: 0;
}
.ev-body { flex: 1; min-width: 0; }
.ev-title { font-size: 13.5px; font-weight: 700; }
.ev-sub {
  margin-top: 4px;
  font-size: 9.5px;
  color: var(--txt-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ev-badge {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 8.5px;
  color: var(--sky);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  padding: 2px 8px;
}
.ev-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: var(--lime);
  flex-shrink: 0;
}

/* D · note */
.mock-note {
  padding: 16px 18px;
  background: #121212;
  border: 1px solid var(--line-soft);
}
.nt-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 9px;
}
.nt-item {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 11.5px;
  color: var(--txt-dim);
}
.nt-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.nt-item.done { color: var(--txt-faint); text-decoration: line-through; }
.nt-item.done::before { background: var(--violet); border-color: var(--violet); }

/* E · email */
.mock-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: #121212;
  border: 1px solid var(--line-soft);
}
.ml-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.ml-body { flex: 1; min-width: 0; }
.ml-subject {
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ml-preview {
  margin-top: 2px;
  font-size: 10.5px;
  color: var(--txt-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ml-time { font-size: 9px; color: var(--txt-ghost); flex-shrink: 0; }

/* F · 100% */
.mock-party {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(circle 2.5px at 18% 30%, rgba(163, 230, 53, 0.8) 99%, transparent),
    radial-gradient(circle 2px at 78% 22%, rgba(251, 146, 60, 0.8) 99%, transparent),
    radial-gradient(circle 2px at 62% 74%, rgba(96, 165, 250, 0.8) 99%, transparent),
    radial-gradient(circle 2.5px at 32% 78%, rgba(255, 255, 255, 0.55) 99%, transparent),
    radial-gradient(circle 2px at 88% 60%, rgba(163, 230, 53, 0.7) 99%, transparent),
    radial-gradient(circle 1.5px at 8% 62%, rgba(251, 146, 60, 0.7) 99%, transparent),
    #121212;
  border: 1px solid var(--line-soft);
}
.party-pct {
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(163, 230, 53, 0.45);
}
.cell-f:hover .party-flame { animation: flick 0.5s ease-in-out infinite alternate; }

@keyframes flick {
  from { transform: rotate(-6deg) scale(1); }
  to { transform: rotate(6deg) scale(1.12); }
}

/* ── Steps ──────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 230, 53, 0.22);
}
.steps li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 34px;
  height: 2px;
  background: var(--lime);
  border-radius: 0 0 2px 2px;
  opacity: 0.85;
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(163, 230, 53, 0.6);
}

.steps h3 {
  margin-top: 13px;
  font-size: 23px;
}
.steps h3 .serif-i { color: var(--lime); }

.steps p {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--txt-dim);
  line-height: 1.6;
}

/* ── Week strip ─────────────────────────────────────────────────────── */

.week-card {
  margin-top: 15px;
  padding: 30px 26px 26px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.week-cap {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--txt-ghost);
  text-align: center;
  margin-bottom: 24px;
}

.week-strip {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3.4vw, 38px);
}

.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.day-name {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--txt-faint);
}
.day.today .day-name { color: var(--lime); }

.ring {
  --p: 0;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--lime) calc(var(--p) * 1%), rgba(255, 255, 255, 0.07) 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ring i {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #101010;
}
.ring b {
  position: relative;
  font-size: 11.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--txt-dim);
}

.day.today .ring {
  box-shadow: 0 0 0 2px rgba(163, 230, 53, 0.25), 0 0 22px rgba(163, 230, 53, 0.18);
}
.day.today .ring b { color: var(--lime); }

.day.future .ring { background: none; border: 1.5px dashed rgba(255, 255, 255, 0.1); }
.day.future .ring i { display: none; }
.day.future .ring b { color: var(--txt-ghost); font-weight: 500; }

/* ── Pricing ────────────────────────────────────────────────────────── */

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 880px;
}

.plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--line-soft);
}

.plan-free {
  border-color: var(--lime-line);
  background: linear-gradient(170deg, rgba(163, 230, 53, 0.06), rgba(163, 230, 53, 0.015) 55%);
  box-shadow: 0 0 54px rgba(163, 230, 53, 0.07);
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  border: 1px solid var(--lime-line);
  background: var(--lime-soft);
  border-radius: 999px;
  padding: 5px 12px;
}
.plan-pill-dim {
  color: var(--txt-faint);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.plan-price {
  margin-top: 20px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-price .serif-i {
  font-size: 21px;
  color: var(--txt-faint);
  margin-left: 4px;
}
.plan-price.dim { color: var(--txt-faint); }

.plan-list {
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--txt-dim);
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: var(--lime);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.plan-list.dim li { color: var(--txt-faint); }
.plan-list.dim li::before { background: rgba(255, 255, 255, 0.25); }

/* ── Final CTA ──────────────────────────────────────────────────────── */

.cta {
  position: relative;
  margin-top: 120px;
  padding: 150px 24px 170px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse 62% 55% at 50% 108%, rgba(163, 230, 53, 0.1), transparent 70%),
    var(--bg-deep);
}

.watermark {
  position: absolute;
  bottom: -0.24em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(90px, 19vw, 300px);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-inner .eyebrow::before { display: none; }

.cta-title {
  margin-top: 18px;
  font-size: clamp(52px, 8.5vw, 116px);
  line-height: 0.96;
}

.cta .btn-lg { margin-top: 44px; }

.cta-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--txt-faint);
}

/* ── Footer ─────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12.5px; color: var(--txt-faint); }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12.5px;
  color: var(--txt-faint);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--lime); }

.footer-ver {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-ghost);
}

/* ── Reveal on scroll ───────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1060px) {
  .bento {
    grid-template-areas:
      "a a a a a a b b b b b b"
      "a a a a a a c c c c c c"
      "d d d d d d e e e e e e"
      "f f f f f f f f f f f f";
  }
}

@media (max-width: 940px) {
  .hero { padding-top: 130px; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-sub { max-width: 560px; }
  .hero-visual { min-height: 0; margin-top: 8px; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .bento {
    grid-template-areas: "a" "b" "c" "d" "e" "f";
    grid-template-columns: 1fr;
  }
  .float-note { left: -6px; top: -22px; }
  .float-event { right: -6px; bottom: -18px; }
  .demo-cols { grid-template-columns: 1fr; }
  .section { padding-top: 84px; }
  .cta { padding: 110px 20px 130px; }
}

@media (max-width: 480px) {
  .week-strip { gap: 8px; }
  .ring { width: 40px; height: 40px; }
  .ring i { inset: 4px; }
  .ring b { font-size: 10px; }
}

@media (max-width: 420px) {
  .float-card { display: none; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .blob { animation: none; }
  .float-card { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cell, .steps li, .btn { transition: none; }
}
