    /* ─── Reset ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ─── Tokens ─────────────────────────────────────────── */
    :root {
      --accent:        #D4845A;
      --accent-hover:  #C0724A;
      --accent-bright: #EB7A45;
      --primary:       #1A1208;
      --secondary:     #8B7355;
      --muted:         #B8A898;
      --placeholder:   #C8B8A0;
      --bg:            #F5F0E8;
      --surface:       rgba(255,255,255,0.72);
      --input-surface: rgba(255,255,255,0.55);
      --divider:       rgba(0,0,0,0.06);
      --border:        rgba(0,0,0,0.08);
      --window-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 8px 24px rgba(0,0,0,0.12);
    }

    /* ─── Base ────────────────────────────────────────────── */
    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
      background: var(--bg);
      color: var(--primary);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── Nav ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 60px;
      background: rgba(245,240,232,0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 34px;
      font-weight: 100;
      color: var(--accent-bright);
      letter-spacing: -0.03em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 15px;
      color: var(--secondary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--primary); }

    .nav-cta {
      background: var(--accent);
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 20px;
      font-weight: 500;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--accent-hover) !important; color: #fff !important; }

    /* ─── Hero ────────────────────────────────────────────── */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: 0;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(212,132,90,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 64px;
      align-items: center;
      max-width: 1040px;
      width: 100%;
      margin: 0 auto;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .hero-eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 18px;
      opacity: 0.85;
    }
    .for-mac { color: var(--primary); font-weight: 300; }

    .hero h1 {
      font-size: clamp(44px, 6.5vw, 80px);
      font-weight: 300;
      color: var(--accent-bright);
      letter-spacing: -0.03em;
      line-height: 1.02;
      margin-bottom: 14px;
    }

    .hero-sub {
      font-size: clamp(20px, 2.6vw, 30px);
      font-weight: 400;
      color: var(--primary);
      letter-spacing: -0.01em;
      line-height: 1.18;
      margin-bottom: 18px;
    }

    .hero-desc {
      font-size: clamp(16px, 1.6vw, 18px);
      font-weight: 400;
      color: var(--secondary);
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 480px;
    }

    .hero-tools {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .tool-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      background: rgba(212,132,90,0.1);
      border: 1px solid rgba(212,132,90,0.22);
      border-radius: 20px;
      padding: 5px 12px;
    }

    .tool-pill-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.6;
    }

    .launch-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      background: rgba(212,132,90,0.12);
      border: 1px solid rgba(212,132,90,0.3);
      border-radius: 20px;
      padding: 5px 14px;
      margin-bottom: 16px;
      letter-spacing: 0.01em;
    }

    .launch-badge-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse-dot 1.8s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.45; transform: scale(0.75); }
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(212,132,90,0.35);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(212,132,90,0.45);
    }
    .btn-primary:active { transform: translateY(0); }

    .price-note {
      font-size: 14px;
      color: var(--placeholder);
    }

    /* ─── Hero right: app sidebar mockup ─────────────────── */
    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ─── Sidebar mockup (hero) ───────────────────────────── */
    .app-sidebar {
      width: 320px;
      height: 460px;
      background: rgba(245,240,232,0.95);
      border-radius: 14px;
      box-shadow: var(--window-shadow), inset 0 0 0 0.5px rgba(255,255,255,0.6);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      font-size: 13px;
      position: relative;
    }

    .sidebar-titlebar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 12px 6px;
      flex-shrink: 0;
    }

    .tl { width: 10px; height: 10px; border-radius: 50%; }
    .tl-r { background: #FF5F56; }
    .tl-y { background: #FFBD2E; }
    .tl-g { background: #27C93F; }

    /* What panel in sidebar */
    .sidebar-what {
      padding: 6px 12px 8px;
      flex-shrink: 0;
      border-bottom: 1px solid var(--divider);
    }
    .sw-question {
      font-size: 11px;
      font-style: italic;
      color: var(--accent);
      margin-bottom: 5px;
    }
    .sw-answer {
      font-size: 12px;
      color: var(--primary);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .sw-input {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 7px;
      background: rgba(255,255,255,0.65);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 8px;
    }
    .sw-input-icon {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(212,132,90,0.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 9px;
      color: var(--accent);
    }
    .sw-input-text { font-size: 12px; color: var(--placeholder); flex: 1; }
    .sw-shortcuts {
      display: flex; justify-content: space-between;
      padding: 4px 0 0;
      font-size: 10px; color: var(--muted);
    }
    .sc-key {
      background: rgba(255,255,255,0.7);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 0 3px;
      font-size: 9px;
      color: var(--secondary);
    }

    /* Next panel */
    .sidebar-next {
      padding: 7px 12px 7px;
      flex-shrink: 0;
      border-bottom: 1px solid var(--divider);
    }
    .panel-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 5px;
    }
    .task-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: var(--secondary);
      padding: 2px 0;
    }
    .task-check {
      width: 13px; height: 13px;
      border: 1px solid rgba(0,0,0,0.18);
      border-radius: 3px;
      flex-shrink: 0;
      background: rgba(255,255,255,0.7);
    }
    .task-check.done {
      background: var(--accent);
      border-color: var(--accent);
    }
    .panel-footer {
      font-size: 10px;
      color: var(--muted);
      margin-top: 4px;
      display: flex;
      justify-content: space-between;
    }

    /* When panel */
    .sidebar-when {
      padding: 7px 12px 7px;
      flex-shrink: 0;
      border-bottom: 1px solid var(--divider);
    }
    .when-date { font-size: 11px; color: var(--muted); margin-bottom: 5px; }
    .event-item {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      font-size: 12px;
    }
    .event-time { color: var(--muted); font-size: 11px; flex-shrink: 0; padding-top: 1px; }
    .event-bar { width: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; align-self: stretch; }
    .event-title { color: var(--primary); }

    /* Dump panel */
    .sidebar-dump {
      padding: 7px 12px 7px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .dump-content {
      font-size: 12px;
      color: var(--secondary);
      line-height: 1.5;
      flex: 1;
    }
    .dump-input {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      background: rgba(255,255,255,0.5);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 8px;
    }
    .dump-input-text { font-size: 12px; color: var(--placeholder); flex: 1; }

    /* ─── Tagline strip ───────────────────────────────────── */
    .tagline-strip {
      padding: 36px 0;
      overflow: hidden;
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
      background: transparent;
    }

    .tagline-track {
      display: flex;
      gap: 0;
      animation: marquee 32s linear infinite;
      width: max-content;
    }
    .tagline-track:hover { animation-play-state: paused; }

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

    .tagline-item {
      white-space: nowrap;
      padding: 0 18px;
      font-size: 15px;
      font-weight: 500;
      color: var(--secondary);
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .tagline-item span { color: var(--accent); }

    /* ─── Multi-window showcase ───────────────────────────── */
    .showcase-section {
      padding: 100px 24px;
      background: rgba(255,255,255,0.3);
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
    }

    .showcase-inner {
      max-width: 1040px;
      margin: 0 auto;
    }

    .showcase-stage {
      position: relative;
      height: 700px;
      margin-top: 64px;
    }

    /* ── Sidebar (main window) ── */
    .w-sidebar {
      position: absolute;
      right: 0; top: 0;
      width: 270px;
      height: 680px;
      background: rgba(245,240,232,0.97);
      border-radius: 14px;
      box-shadow: var(--window-shadow), inset 0 0 0 0.5px rgba(255,255,255,0.6);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      font-size: 13px;
    }

    .w-titlebar {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 9px 10px 5px;
      flex-shrink: 0;
    }
    .w-tl { width: 9px; height: 9px; border-radius: 50%; }
    .w-tl-r { background: #FF5F56; }
    .w-tl-y { background: #FFBD2E; }
    .w-tl-g { background: #27C93F; }

    /* Sidebar panels */
    .w-panel { padding: 6px 10px; border-bottom: 1px solid var(--divider); }
    .w-panel:last-child { border-bottom: none; flex: 1; }

    .w-panel-label { font-size: 12px; font-weight: 500; color: var(--accent); margin-bottom: 4px; }

    .w-q { font-size: 10px; font-style: italic; color: var(--accent); margin-bottom: 3px; }
    .w-a { font-size: 10.5px; color: var(--primary); line-height: 1.45;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

    .w-input {
      display: flex; align-items: center; gap: 5px;
      margin-top: 5px;
      background: rgba(255,255,255,0.65);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 4px 7px;
    }
    .w-input-icon {
      width: 15px; height: 15px; border-radius: 50%;
      background: rgba(212,132,90,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 8px; color: var(--accent); flex-shrink: 0;
    }
    .w-input-ph { font-size: 10px; color: var(--placeholder); }
    .w-shortcuts { display: flex; justify-content: space-between; padding-top: 3px; font-size: 9px; color: var(--muted); }
    .w-sc { background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 2px; padding: 0 3px; font-size: 8px; color: var(--secondary); }

    .w-task { display: flex; align-items: center; gap: 6px; padding: 2px 0; font-size: 10.5px; color: var(--secondary); }
    .w-chk { width: 11px; height: 11px; border: 1px solid rgba(0,0,0,0.18); border-radius: 2px; background: rgba(255,255,255,0.7); flex-shrink: 0; }

    .w-event { display: flex; gap: 6px; align-items: flex-start; }
    .w-etime { font-size: 9.5px; color: var(--muted); flex-shrink: 0; padding-top: 1px; }
    .w-ebar { width: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; align-self: stretch; }
    .w-etitle { font-size: 10.5px; color: var(--primary); }
    .w-when-date { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
    .w-panel-footer { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); margin-top: 4px; }

    .w-dump-content { font-size: 10.5px; color: var(--secondary); line-height: 1.5; }
    .w-dump-input {
      display: flex; align-items: center;
      margin-top: 5px; padding: 4px 7px;
      background: rgba(255,255,255,0.5);
      border: 1px solid var(--border); border-radius: 7px;
    }
    .w-dump-ph { font-size: 10px; color: var(--placeholder); }

    /* ── Sidebar: brand header + panel chrome (latest app) ── */
    .w-brand { display: flex; align-items: center; gap: 11px; padding: 2px 12px 12px; }
    .w-mic {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(212,132,90,0.5);
      background: rgba(212,132,90,0.06);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--accent); flex-shrink: 0;
    }
    .w-brand-row { display: flex; align-items: center; gap: 7px; }
    .w-brand-name { font-size: 23px; font-weight: 300; color: var(--accent); letter-spacing: -0.01em; }
    .w-pro {
      font-size: 9px; font-weight: 700; color: #fff; background: var(--accent);
      padding: 2px 7px; border-radius: 999px; letter-spacing: 0.04em;
    }
    .w-brand-sub { font-size: 11px; color: var(--secondary); margin-top: 2px; }

    .w-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
    .w-panel-meta { font-size: 9.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .w-nx-item { font-size: 11.5px; color: var(--primary); padding: 3px 0; }

    .w-pill {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 8px;
      background: rgba(255,255,255,0.6);
      border: 1px solid var(--border); border-radius: 9px;
      padding: 7px 8px 7px 11px;
    }
    .w-pill-ph { font-size: 11.5px; color: var(--placeholder); }
    .w-pill-add {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(0,0,0,0.06); color: var(--muted);
      display: flex; align-items: center; justify-content: center; font-size: 12px;
    }
    .w-foot-icons { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); }
    .w-esub { font-size: 10px; color: var(--muted); margin-top: 2px; }
    .w-ebar-p { background: #B061D9; }

    /* ── Answer popup ── */
    .w-answer {
      position: absolute;
      left: 0; top: 0;
      width: 360px;
      z-index: 1;
      background: rgba(245,240,232,0.97);
      border-radius: 12px;
      box-shadow: var(--window-shadow), inset 0 0 0 0.5px rgba(255,255,255,0.6);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .w-answer-header {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 12px 7px;
      border-bottom: 1px solid var(--divider);
    }
    .w-answer-title { font-size: 14px; font-weight: 300; color: var(--accent); flex: 1; }
    .w-icon-btn {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: rgba(200,184,160,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 8px; color: var(--secondary);
    }

    .w-answer-body { padding: 12px 14px; }
    .w-answer-q { font-size: 12px; font-style: italic; color: var(--accent); margin-bottom: 9px; }
    .w-answer-text {
      font-size: 13px; color: var(--primary); line-height: 1.6;
      display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
    }

    .w-answer-actions {
      display: flex; gap: 6px;
      padding: 10px 14px 12px;
      border-top: 1px solid var(--divider);
    }
    .w-action-btn {
      flex: 1;
      display: flex; align-items: center; justify-content: center; gap: 4px;
      font-size: 11.5px; color: var(--secondary);
      padding: 5px 8px;
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 6px;
    }

    /* ── Dump popup ── */
    .w-dump {
      position: absolute;
      left: 310px; bottom: 0;
      width: 420px;
      z-index: 5;
      background: rgba(245,240,232,0.99);
      border-radius: 14px;
      box-shadow: var(--window-shadow), inset 0 0 0 0.5px rgba(255,255,255,0.6);
      overflow: hidden;
    }
    .w-dump-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 13px 16px 9px;
      border-bottom: 1px solid var(--divider);
    }
    .w-dump-title { font-size: 17px; font-weight: 300; color: var(--accent); }
    .w-dump-hdr-icons { display: flex; gap: 6px; }

    .w-dump-form { padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; }
    .w-dump-field-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
    .w-dump-field {
      font-size: 14px; color: var(--primary);
      background: rgba(255,255,255,0.65); border: 1px solid var(--border);
      border-radius: 7px; padding: 7px 10px;
    }
    .w-dump-detail {
      font-size: 14px; color: var(--placeholder);
      background: rgba(255,255,255,0.65); border: 1px solid var(--border);
      border-radius: 7px; padding: 7px 10px;
      height: 64px;
    }
    .w-dump-form-actions {
      display: flex; gap: 6px;
      padding: 8px 12px;
      border-top: 1px solid var(--divider);
      justify-content: flex-end;
    }
    .w-dump-form-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 16px 13px;
    }
    .w-dump-cancel { font-size: 12.5px; color: var(--muted); }
    .w-dump-save {
      font-size: 12.5px; font-weight: 600; color: #fff;
      background: var(--accent); border-radius: 7px;
      padding: 6px 18px;
    }

    /* Unified card: Lives-in toggle + attachment sections */
    .w-seg { display: inline-flex; gap: 5px; }
    .w-seg-opt {
      font-size: 12px; color: var(--secondary);
      background: rgba(255,255,255,0.55);
      border: 1px solid var(--border);
      padding: 4px 14px; border-radius: 6px;
    }
    .w-seg-opt.active { background: #0A84FF; color: #fff; border-color: #0A84FF; font-weight: 500; }
    .w-help { font-size: 11px; color: var(--placeholder); margin: 1px 0 5px; line-height: 1.35; }
    .w-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
    .w-sec-btn {
      font-size: 11px; color: var(--secondary);
      background: rgba(255,255,255,0.7);
      border: 1px solid var(--border); border-radius: 6px;
      padding: 3px 10px;
    }
    .w-link-row { display: flex; align-items: center; gap: 8px; }
    .w-link-input {
      flex: 1; font-size: 12.5px; color: var(--placeholder);
      background: rgba(255,255,255,0.65); border: 1px solid var(--border);
      border-radius: 7px; padding: 7px 10px;
    }
    .w-plus-btn {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(212,132,90,0.25); color: var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0;
    }
    .w-dropzone {
      font-size: 11.5px; color: var(--placeholder); text-align: center;
      background: rgba(255,255,255,0.5); border: 1px solid var(--border);
      border-radius: 7px; padding: 13px 8px;
    }
    .w-dump-actions-row { display: flex; gap: 8px; padding: 10px 16px 0; }

    /* ── When popup ── */
    .w-when {
      position: absolute;
      left: 310px; bottom: 0;
      width: 380px;
      background: rgba(245,240,232,0.97);
      border-radius: 12px;
      box-shadow: var(--window-shadow), inset 0 0 0 0.5px rgba(255,255,255,0.6);
      overflow: hidden;
    }
    .w-when-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 12px 7px;
      border-bottom: 1px solid var(--divider);
    }
    .w-when-title { font-size: 14px; font-weight: 300; color: var(--accent); }
    .w-when-tabs { display: flex; gap: 2px; }
    .w-tab {
      font-size: 10px; padding: 3px 8px; border-radius: 12px;
      color: var(--secondary);
    }
    .w-tab.active { background: var(--accent); color: #fff; font-weight: 500; }
    .w-when-icons { display: flex; gap: 5px; }

    .w-cal { padding: 8px 12px; }
    .w-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
    .w-cal-month { font-size: 12px; font-weight: 500; color: var(--primary); }
    .w-cal-nav { font-size: 10px; color: var(--muted); }
    .w-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
    .w-cal-day-name { font-size: 9px; color: var(--muted); text-align: center; padding: 2px 0; }
    .w-cal-day {
      font-size: 10px; text-align: center; padding: 3px;
      color: var(--secondary); border-radius: 50%;
      width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto;
    }
    .w-cal-day.today { background: var(--accent); color: #fff; font-weight: 600; }
    .w-cal-day.empty { color: transparent; }

    .w-when-events { padding: 6px 12px 10px; border-top: 1px solid var(--divider); }
    .w-when-event-date { font-size: 10px; color: var(--accent); font-weight: 500; margin-bottom: 5px; }
    .w-when-event-row { display: flex; gap: 7px; align-items: flex-start; margin-bottom: 4px; }
    .w-when-event-time { font-size: 10px; color: var(--muted); flex-shrink: 0; }
    .w-when-event-bar { width: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; align-self: stretch; }
    .w-when-event-name { font-size: 11px; color: var(--primary); }

    .w-when-tasks { padding: 6px 12px 10px; border-top: 1px solid var(--divider); }
    .w-when-tasks-label { font-size: 11px; font-weight: 500; color: var(--accent); margin-bottom: 5px; }
    .w-when-task { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--secondary); padding: 2px 0; }
    .w-when-chk { width: 10px; height: 10px; border: 1px solid rgba(0,0,0,0.18); border-radius: 2px; background: rgba(255,255,255,0.7); flex-shrink: 0; }

    /* ─── Section base ────────────────────────────────────── */
    section {
      padding: 100px 24px;
    }

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

    .section-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-heading {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 200;
      color: var(--primary);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 17px;
      color: var(--secondary);
      line-height: 1.6;
      max-width: 520px;
    }

    /* ─── How it works ────────────────────────────────────── */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 64px;
    }

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

    .step-number {
      width: 40px; height: 40px;
      border-radius: 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 600;
      color: var(--accent);
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .step h3 { font-size: 17px; font-weight: 600; color: var(--primary); line-height: 1.3; }
    .step p  { font-size: 16px; color: var(--secondary); line-height: 1.6; }

    /* ─── Features ────────────────────────────────────────── */
    .features-section {
      background: rgba(255,255,255,0.35);
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      margin-top: 64px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .feature-card {
      background: var(--surface);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: background 0.2s;
    }
    .feature-card:hover { background: rgba(255,255,255,0.85); }

    .feature-icon {
      font-size: 22px;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(212,132,90,0.1);
      border-radius: 10px;
    }

    .feature-card h3 { font-size: 16px; font-weight: 600; color: var(--primary); }
    .feature-card p  { font-size: 15px; color: var(--secondary); line-height: 1.6; }

    /* ─── Pricing ─────────────────────────────────────────── */
    .pricing-section { text-align: center; }

    .pricing-card {
      display: inline-block;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px 56px;
      margin-top: 48px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      max-width: 420px;
      width: 100%;
    }

    .price-display {
      font-size: 52px;
      font-weight: 100;
      color: var(--accent-bright);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .price-period { font-size: 16px; color: var(--muted); margin-top: 4px; margin-bottom: 32px; }

    .price-features {
      list-style: none;
      text-align: left;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--secondary);
    }

    .price-features li::before {
      content: '';
      width: 16px; height: 16px;
      flex-shrink: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='none' stroke='%23D4845A' stroke-width='1'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23D4845A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    .pricing-cta {
      display: block;
      background: var(--accent);
      color: #fff;
      padding: 14px 24px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 16px rgba(212,132,90,0.35);
      transition: background 0.2s, transform 0.15s;
    }
    .pricing-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

    .pricing-cancel { font-size: 13px; color: var(--placeholder); margin-top: 12px; }

    /* Two-tier pricing */
    .pricing-grid {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .tier-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 32px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      max-width: 350px;
      width: 100%;
      text-align: left;
      display: flex;
      flex-direction: column;
    }
    .tier-card.pro {
      border-color: rgba(212,132,90,0.5);
      border-width: 1.5px;
      box-shadow: 0 12px 48px rgba(212,132,90,0.18);
    }
    .tier-badge {
      align-self: flex-start;
      font-size: 11px;
      font-weight: 600;
      color: var(--accent);
      background: rgba(212,132,90,0.12);
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .tier-card.pro .tier-badge { color: #fff; background: var(--accent); }
    .tier-name { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
    .tier-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 24px; }
    .tier-price .amt { font-size: 44px; font-weight: 200; color: var(--accent-bright); letter-spacing: -0.03em; line-height: 1; }
    .tier-price .per { font-size: 14px; color: var(--muted); }
    .tier-card .price-features { margin-bottom: 28px; }
    .tier-card .pricing-cta { margin-top: auto; }
    .pricing-cta.ghost {
      background: rgba(212,132,90,0.12);
      color: var(--accent);
      box-shadow: none;
    }
    .pricing-cta.ghost:hover { background: rgba(212,132,90,0.2); }

    /* ─── FAQ ──────────────────────────────────────────────── */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 48px;
      margin-top: 56px;
    }

    .faq-item { display: flex; flex-direction: column; gap: 10px; }
    .faq-item h3 { font-size: 17px; font-weight: 600; color: var(--primary); line-height: 1.35; }
    .faq-item p  { font-size: 15px; color: var(--secondary); line-height: 1.65; }
    .faq-item a  { color: var(--accent); text-decoration: none; }

    /* ─── About ────────────────────────────────────────────── */
    .about-section {
      background: rgba(255,255,255,0.35);
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
    }

    .about-inner { max-width: 640px; margin: 0 auto; text-align: center; }

    .about-inner p {
      font-size: 17px; color: var(--secondary); line-height: 1.7; margin-top: 16px;
    }
    .about-inner p + p { margin-top: 14px; }

    .about-signature {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 28px; font-size: 15px; color: var(--primary); font-weight: 500;
    }

    /* ─── Footer ──────────────────────────────────────────── */
    footer {
      padding: 40px 48px;
      border-top: 1px solid var(--divider);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo { font-size: 20px; font-weight: 100; color: var(--accent-bright); text-decoration: none; }

    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--secondary); }

    .footer-copy { font-size: 14px; color: var(--placeholder); }

    .footer-trademark {
      flex-basis: 100%;
      font-size: 11px;
      color: var(--placeholder);
      line-height: 1.55;
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--divider);
    }

    /* ─── Shared accent ───────────────────────────────────── */
    .wq { color: var(--accent-bright); font-style: normal; }

    .kbd {
      display: inline-flex; align-items: center; gap: 2px;
      background: rgba(255,255,255,0.7);
      border: 1px solid var(--border); border-radius: 5px;
      padding: 1px 6px; font-size: 12px; color: var(--secondary);
      box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    }

    /* ─── Animations ──────────────────────────────────────── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── Responsive ──────────────────────────────────────── */
    @media (max-width: 1150px) {
      .nav-links { gap: 18px; }
      nav .nav-cta { display: none; }
    }
    @media (max-width: 860px) {
      nav { padding: 0 20px; }
      nav .nav-links { display: none; }
      .hero { padding: 100px 24px 60px; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-text { align-items: center; text-align: center; }
      .hero-desc { text-align: left; }
      .hero-tools { justify-content: center; }
      .hero-actions { justify-content: center; }
      .price-note { text-align: center; }
      .steps { grid-template-columns: 1fr; gap: 32px; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-card { padding: 36px 28px; }
      .faq-grid { grid-template-columns: 1fr; gap: 28px; }
      .showcase-stage { height: auto; display: flex; flex-direction: column; gap: 20px; align-items: center; }
      .w-sidebar { position: static; width: 280px; height: auto; }
      .w-answer { position: static; width: 100%; max-width: 380px; }
      .w-dump { position: static; width: 100%; max-width: 300px; }
      .w-when { position: static; width: 100%; max-width: 340px; }
      footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
    }

/* ════════════════════════════════════════════════════════════════
   HandLogic additions — shared across the parent site
   Base palette above is the terracotta LogicDesk system. Each page
   sets a body theme class to tint the accent toward its app icon.
   ════════════════════════════════════════════════════════════════ */

/* Gold — HandLogic parent */
body.theme-gold {
  --accent:        #C9A258;
  --accent-hover:  #B5893B;
  --accent-bright: #D9B567;
}
/* Purple — LogicTray */
body.theme-purple {
  --accent:        #B061D9;
  --accent-hover:  #9A4FC0;
  --accent-bright: #C46CE5;
}
/* (LogicDesk keeps the base terracotta accent — "warm".) */

/* App showcase cards (home page) */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.app-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: transform 0.18s, box-shadow 0.2s;
  text-decoration: none;
}
.app-card:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(0,0,0,0.12); }
.app-card img.app-ico {
  width: 64px; height: 64px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.22)); margin-bottom: 18px;
}
.app-card .app-status {
  align-self: flex-start; font-size: 11px; font-weight: 600;
  color: var(--accent); background: rgba(212,132,90,0.12);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; letter-spacing: 0.02em;
}
.app-card .app-status.soon { color: var(--muted); background: rgba(0,0,0,0.05); }
.app-card h3 { font-size: 24px; font-weight: 300; color: var(--accent-bright); letter-spacing: -0.02em; margin-bottom: 8px; }
.app-card p { font-size: 15px; color: var(--secondary); line-height: 1.6; margin-bottom: 18px; }
.app-card .app-go { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--accent); }
.app-card .app-tools { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }

/* Hero brand mark (home / LogicTray) */
.hero-mark { width: 380px; height: 380px; object-fit: contain; filter: drop-shadow(0 18px 44px rgba(0,0,0,0.28)); }
.hero-mark-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero-mark-name { font-size: 46px; font-weight: 300; letter-spacing: 0.5px; margin: -30px 0 0; text-align: center; }

/* TODO ribbon (prototype only) */
.todo-ribbon {
  max-width: 960px; margin: 96px auto 0; padding: 14px 18px;
  background: repeating-linear-gradient(45deg,#fff4d6,#fff4d6 12px,#ffe9b0 12px,#ffe9b0 24px);
  color: #6b4e00; border: 1px dashed #d6a400; border-radius: 12px;
  font-size: 14px; font-weight: 500;
}

@media (max-width: 860px) {
  .apps-grid { grid-template-columns: 1fr; }
  .hero-mark { width: 220px; height: 220px; }
  .hero-mark-name { font-size: 32px; }
}
