:root {
  --bg-paper: #F7F5F0;
  --bg-subtle: #EFECE4;
  --bg-card: #FFFFFF;
  
  --ink-primary: #18181B;
  --ink-secondary: #52525B;
  --ink-muted: #71717A;
  --ink-faint: #A1A1AA;

  --amber-primary: #D97706;
  --amber-hover: #B45309;
  --amber-light: #FEF3C7;

  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-medium: rgba(0, 0, 0, 0.12);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Note Colors */
  --note-lemon: #FEF9C3;
  --note-lemon-ink: #713F12;
  --note-peach: #FFEDD5;
  --note-peach-ink: #9A3412;
  --note-mint: #DCFCE7;
  --note-mint-ink: #166534;
  --note-lavender: #F3E8FF;
  --note-lavender-ink: #6B21A8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-paper);
  color: var(--ink-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography elements */
kbd {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-primary);
  font-weight: 500;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* Navigation */
.nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-primary);
}

.brand-logo {
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

.brand-dot {
  color: var(--amber-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.15s ease;
  border-radius: 8px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
}

.btn-hero {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

.btn-amber {
  background-color: var(--amber-primary);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

.btn-amber:hover {
  background-color: var(--amber-hover);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-ghost {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--ink-primary);
  border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
  background-color: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.2);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  margin-left: 4px;
}

.price-tag s {
  opacity: 0.75;
}

.price-tag strong {
  font-size: 15px;
  font-weight: 800;
}

/* Hero Section */
.hero {
  padding: 72px 24px 48px 24px;
  text-align: center;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink-primary);
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--ink-secondary);
  max-width: 680px;
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.win-icon {
  margin-right: 2px;
}

.early-bird-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--amber-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.sparkle {
  font-size: 13px;
}

.hero-meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

/* Terminal command box */
.terminal-row {
  margin-bottom: 44px;
}

.terminal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-primary);
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.15s ease;
}

.terminal-box:hover {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.term-prompt {
  color: var(--ink-faint);
}

.term-icon {
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.toast {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #18181B;
  color: #FFFFFF;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Interactive Desktop Stage */
.desktop-stage {
  width: 100%;
  max-width: 960px;
  margin-bottom: 24px;
}

.desktop-frame {
  background: var(--bg-subtle);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.desktop-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}

.desktop-canvas {
  height: 380px;
  background: linear-gradient(135deg, #E4DFD5 0%, #D8D2C5 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 28px;
  overflow: hidden;
}

.canvas-hint {
  position: absolute;
  left: 28px;
  top: 24px;
  text-align: left;
}

.hint-pill {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink-primary);
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 6px;
}

.canvas-hint p {
  font-size: 12px;
  color: #57534E;
  margin: 0;
}

/* Fanned Notes Deck */
.fanned-deck {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-card {
  width: 250px;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: all 0.25s ease;
  cursor: pointer;
}

.sticky-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.sticky-card.active {
  transform: rotate(-1.5deg) scale(1.02);
  z-index: 10;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.sticky-card.peeking {
  width: 200px;
  opacity: 0.92;
}

.note-lemon { background-color: var(--note-lemon); color: var(--note-lemon-ink); }
.note-peach { background-color: var(--note-peach); color: var(--note-peach-ink); }
.note-mint  { background-color: var(--note-mint);  color: var(--note-mint-ink); }
.note-lavender { background-color: var(--note-lavender); color: var(--note-lavender-ink); }

.note-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.note-title {
  font-size: 12.5px;
  font-weight: 700;
}

.note-title-input {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  width: 130px;
  outline: none;
}

.note-time {
  font-size: 10px;
  opacity: 0.75;
}

.color-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease;
}

.dot:hover { transform: scale(1.2); }
.dot.active { outline: 1.5px solid #18181B; }

.dot-lemon { background: #EAB308; }
.dot-peach { background: #FB923C; }
.dot-mint  { background: #4ADE80; }
.dot-lavender { background: #C084FC; }

.note-body-textarea {
  width: 100%;
  background: transparent;
  border: none;
  resize: none;
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.5;
  color: inherit;
  outline: none;
  margin-bottom: 8px;
}

.note-preview {
  font-size: 11px;
  line-height: 1.45;
  opacity: 0.85;
}

.note-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9.5px;
  opacity: 0.8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 6px;
}

/* Edge Pill */
.edge-pill {
  width: 13px;
  height: 120px;
  background: #292524;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
  margin-left: 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: width 0.15s ease;
}

.edge-pill:hover {
  width: 16px;
}

.pill-dash {
  width: 4px;
  height: 18px;
  border-radius: 2px;
}

.dash-lemon { background: #FEF08A; }
.dash-peach { background: #FED7AA; }
.dash-mint  { background: #BBF7D0; }
.dash-lavender { background: #E9D5FF; }

.hero-subtext {
  font-size: 13px;
  color: var(--ink-muted);
}

/* Free Video Strip */
.strip-banner {
  width: 100%;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
}

.strip-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-primary);
  flex-wrap: wrap;
  gap: 10px;
}

.text-amber {
  color: var(--amber-primary);
  text-decoration: underline;
}

.strip-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--amber-primary);
}

/* Section styling */
.section {
  padding: 80px 24px;
}

.section-tinted {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-container.narrow {
  max-width: 820px;
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
  margin-bottom: 10px;
}

.section-desc {
  font-size: 16px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 10px;
}

.step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-secondary);
  margin-bottom: 24px;
}

.step-visual {
  height: 160px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.visual-rest {
  background: var(--bg-paper);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mini-edge-pill {
  width: 12px;
  height: 90px;
  background: #292524;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0;
}

.mini-dash {
  width: 4px;
  height: 14px;
  border-radius: 2px;
}

.visual-fan {
  background: var(--bg-paper);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.mini-fan-item {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
}

.mini-fan-item small {
  color: var(--ink-faint);
  font-weight: 400;
}

.item-lemon { border-left: 3px solid #FEF08A; }
.item-peach { border-left: 3px solid #FED7AA; }
.item-mint  { border-left: 3px solid #BBF7D0; }

.visual-edit {
  background: var(--note-lemon);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-note-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--note-lemon-ink);
}

.mini-note-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.mini-note-head small {
  font-size: 10px;
  opacity: 0.8;
}

.mini-note-body {
  font-size: 11px;
  line-height: 1.4;
}

.mini-note-foot {
  font-size: 9.5px;
  opacity: 0.8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 4px;
}

/* Facts Row */
.facts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  margin-bottom: 64px;
}

.fact-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 6px;
}

.fact-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-secondary);
}

/* Manager block */
.manager-title {
  font-size: 24px;
  font-weight: 750;
  color: var(--ink-primary);
  margin-bottom: 8px;
}

.manager-desc {
  font-size: 15px;
  color: var(--ink-secondary);
  margin-bottom: 24px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px;
}

.format-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-primary);
  display: block;
}

.format-desc {
  font-size: 12px;
  color: var(--ink-secondary);
  margin-top: 4px;
}

/* Privacy Table */
.privacy-table {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 14px;
  gap: 20px;
}

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

.row-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-primary);
  width: 200px;
  flex-shrink: 0;
}

.row-val {
  font-size: 13.5px;
  color: var(--ink-secondary);
  line-height: 1.5;
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  margin-bottom: 64px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 26px;
  font-weight: 750;
  color: var(--ink-primary);
  margin-bottom: 4px;
}

.pricing-meta {
  font-size: 13.5px;
  color: var(--ink-muted);
}

.pricing-cost {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cost-old {
  font-size: 16px;
  color: var(--ink-faint);
}

.cost-now {
  font-size: 32px;
  font-weight: 800;
  color: var(--amber-primary);
}

.pricing-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.perk-item strong {
  color: var(--ink-primary);
}

/* FAQ */
.faq-block {
  margin-top: 20px;
}

.faq-title {
  font-size: 26px;
  font-weight: 750;
  color: var(--ink-primary);
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-q {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-primary);
  outline: none;
}

.faq-a {
  font-size: 13.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background: var(--bg-paper);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 24px 40px 24px;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.tilted-note {
  width: 230px;
  background: var(--note-lemon);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 18px;
  transform: rotate(-2.5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tilted-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--note-lemon-ink);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink-secondary);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--ink-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 860px) {
  .nav-links { display: none; }
  
  .steps-grid,
  .facts-row,
  .formats-grid {
    grid-template-columns: 1fr;
  }

  .perks-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    flex-direction: column;
    gap: 4px;
  }

  .row-label {
    width: 100%;
  }

  .pricing-buttons {
    flex-direction: column;
  }

  .desktop-canvas {
    height: auto;
    padding: 60px 16px 20px 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .fanned-deck {
    flex-direction: column;
    width: 100%;
  }

  .sticky-card,
  .sticky-card.peeking {
    width: 100%;
  }

  .edge-pill {
    display: none;
  }
}
