/* ========================================
   NotchNotes — Website Styles
   ======================================== */

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

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;
    --border: #222;
    --border-light: #333;
    --text: #f5f5f5;
    --text-secondary: #999;
    --text-muted: #555;
    --accent: #7c5cfc;
    --accent-light: #a78bfa;
    --accent-glow: rgba(124, 92, 252, 0.12);
    --obsidian: #7c3aed;
    --green: #34d399;
    --yellow: #fbbf24;
    --orange: #fb923c;
    --red: #f87171;
    /* The actual text color from the app: warm tan */
    --notch-text: #d1b58f;
    --notch-bg: #000;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'SF Mono', 'Menlo', 'Consolas', monospace;
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
em { font-style: italic; }

/* ========================================
   Site Menu Bar (macOS style)
   ======================================== */
.site-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 34px;
    background: rgba(28, 28, 30, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
}
.site-bar-left, .site-bar-right {
    display: flex; align-items: center; gap: 18px; flex: 1;
    max-width: calc(50% - 170px);
    overflow: hidden; white-space: nowrap;
}
.site-bar-right { justify-content: flex-end; gap: 14px; }
.site-apple { flex-shrink: 0; }
.site-bar-link {
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 13px; font-weight: 500; transition: color 0.2s;
}
.site-bar-link:hover { color: rgba(255,255,255,0.95); }
.site-bar-link.bright { color: rgba(255,255,255,0.9); font-weight: 600; }
.site-bar-dl {
    padding: 2px 10px; background: rgba(255,255,255,0.1); border-radius: 4px;
    color: rgba(255,255,255,0.75); text-decoration: none; font-size: 12px; font-weight: 600;
    transition: background 0.2s;
}
.site-bar-dl:hover { background: rgba(255,255,255,0.18); }
.site-bar-time { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; }

/* ========================================
   Interactive NotchNotes Panel (website)
   ======================================== */
.site-notch {
    position: absolute; left: 50%; transform: translateX(-50%); top: 0;
    display: flex; flex-direction: column; align-items: center;
}
.site-notch-cam {
    width: 180px; height: 34px;
    background: #000; border-radius: 0 0 16px 16px;
    position: relative; z-index: 2;
}
.site-nw {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 320px; height: 226px;
    background: #000; border-radius: 0 0 16px 16px;
    overflow: hidden; z-index: 3;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    display: flex; flex-direction: column;
    transition: height 0.3s ease;
}
.site-nw.collapsed { height: 34px; border-radius: 0; }
.site-nw.collapsed .site-nw-stats { display: none; }
.site-nw-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 5px 10px; height: 34px; min-height: 34px;
    border-bottom: 1px solid #1a1a1a;
}
.site-nw-tl, .site-nw-tr { display: flex; align-items: center; gap: 5px; }
.site-nw-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; cursor: default; }
.site-nw-btn {
    background: none; border: none; padding: 0 2px;
    font-size: 11px; color: rgba(255,255,255,0.4); cursor: pointer;
    font-family: var(--font); line-height: 1; transition: color 0.15s;
}
.site-nw-btn:hover { color: rgba(255,255,255,0.8); }
.site-nw-btn.active { color: var(--green); }
.site-nw-stats { font-size: 9px; color: var(--green); font-weight: 600; white-space: nowrap; transition: color 0.3s; }
.site-nw-src {
    background: none; border: none; padding: 0;
    font-size: 8px; font-weight: 700; letter-spacing: 0.05em;
    color: var(--orange); cursor: pointer;
    font-family: var(--font); white-space: nowrap; transition: color 0.2s;
}
.site-nw-src:hover { opacity: 0.75; }
.site-nw-src.obsidian { color: var(--accent-light); }
.site-nw-body {
    flex: 1; overflow: hidden; position: relative;
    padding: 6px 12px 10px;
}
.site-nw-body::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 30px;
    background: linear-gradient(transparent, #000);
    pointer-events: none;
}
.site-nw-scroll { text-align: left; transition: transform 0.05s linear; }

/* Site notch text styles */
.sn-h1 { font-size: 14px; font-weight: 700; color: var(--notch-text); font-family: var(--mono); margin-bottom: 3px; }
.sn-h2 { font-size: 12px; font-weight: 700; color: var(--notch-text); font-family: var(--mono); margin-bottom: 2px; opacity: 0.9; }
.sn-h3 { font-size: 11px; font-weight: 600; color: var(--notch-text); font-family: var(--mono); margin-bottom: 2px; opacity: 0.85; }
.sn-body { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.85; }
.sn-body strong { font-weight: 700; opacity: 1; }
.sn-body em { font-style: italic; }
.sn-body code { background: rgba(255,255,255,0.06); padding: 1px 4px; border-radius: 3px; font-size: 10px; }
.sn-bullet { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.85; padding-left: 12px; position: relative; }
.sn-bullet::before { content: '\2022'; position: absolute; left: 2px; opacity: 0.6; }
.sn-num { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.85; padding-left: 16px; position: relative; }
.sn-num-label { position: absolute; left: 0; opacity: 0.5; font-size: 10px; }
.sn-task { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.85; padding-left: 16px; }
.sn-task.done { text-decoration: line-through; opacity: 0.5; }
.sn-quote { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.75; padding-left: 10px; border-left: 2px solid rgba(209,181,143,0.3); font-style: italic; }
.sn-hr { border: none; border-top: 1px solid rgba(209,181,143,0.15); margin: 4px 0; }
.sn-spacer { height: 6px; }
.sn-paste-hint { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 10px; text-align: center; }
.sn-paste-key { font-size: 28px; color: rgba(255,255,255,0.15); font-weight: 700; font-family: var(--mono); margin-bottom: 6px; }
.sn-paste-label { font-size: 11px; color: rgba(255,255,255,0.25); font-family: var(--mono); }
.sn-speed-toast {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(30,30,30,0.9); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 6px 14px;
    font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 600;
    pointer-events: none; opacity: 0; transition: opacity 0.2s;
    z-index: 10;
}
.sn-speed-toast.visible { opacity: 1; }

/* Notch interaction hint */
.notch-hint {
    position: fixed; top: 232px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: rgba(124,92,252,0.12); border: 1px solid rgba(124,92,252,0.25);
    border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--accent-light);
    z-index: 199;
    animation: hintBounce 2s ease infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.notch-hint.hidden { opacity: 0; }
@keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* ========================================
   Buttons
   ======================================== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all var(--transition); border-radius: var(--radius-sm); }
.btn-sm { padding: 8px 16px; font-size: 14px; background: var(--text); color: var(--bg); border-radius: 8px; }
.btn-sm:hover { background: #ddd; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: #e0e0e0; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-light); }
.btn-ghost:hover { color: var(--text); border-color: #555; background: rgba(255,255,255,0.03); }

kbd { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; background: var(--bg); border: 1px solid var(--border-light); border-radius: 5px; font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--text); min-width: 24px; box-shadow: 0 1px 2px rgba(0,0,0,0.3); line-height: 1.4; }

/* ========================================
   Hero
   ======================================== */
.hero { padding: 260px 24px 80px; text-align: center; max-width: 1100px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 32px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-size: clamp(48px, 8vw, 76px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(135deg, var(--accent-light), var(--accent), #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 18px; line-height: 1.7; color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-caption { font-size: 14px; color: var(--text-muted); margin-top: 20px; font-style: italic; }
.hero-visual-section { padding: 80px 0 100px; }
.hero-visual-section .hero-visual { margin-top: 48px; }

/* ========================================
   Hero Visual — MacBook Mockup
   ======================================== */
.hero-visual { margin-top: 64px; }
.macbook-frame { max-width: 760px; margin: 0 auto; }
.macbook-screen { background: #1a1a1a; border-radius: 12px 12px 0 0; border: 2px solid #333; border-bottom: none; overflow: hidden; position: relative; }

/* Menu bar */
.macbook-menubar { height: 26px; background: #1c1c1e; display: flex; align-items: center; padding: 0 12px; position: relative; z-index: 2; }
.menubar-left, .menubar-right { display: flex; align-items: center; gap: 10px; flex: 1; overflow: hidden; white-space: nowrap; max-width: calc(50% - 150px); }
.menubar-right { justify-content: flex-end; }
.menubar-text { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; font-family: var(--font); }
.menubar-text.bright { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Physical camera notch (just the black pill) */
.notch-camera { width: 90px; height: 26px; background: #000; border-radius: 0 0 10px 10px; position: absolute; left: 50%; transform: translateX(-50%); top: 0; z-index: 5; }
.scene-notch-cam { width: 60px; height: 100%; background: #000; border-radius: 0 0 8px 8px; position: absolute; left: 50%; transform: translateX(-50%); top: 0; z-index: 5; }

/* ========================================
   NotchNotes Window (realistic mockup)
   ======================================== */
.notch-window {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: var(--notch-bg);
    border-radius: 0 0 16px 16px;
    z-index: 4;
    overflow: hidden;
    animation: notchDrop 0.8s ease 0.3s both;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

@keyframes notchDrop {
    from { height: 26px; opacity: 0.3; }
    to { height: 240px; opacity: 1; }
}

/* Toolbar (matches real app: red dot, —, gear, play/pause on left; stats + source on right) */
.nw-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    height: 24px;
    border-bottom: 1px solid #1a1a1a;
}
.nw-toolbar.compact { padding: 4px 8px; height: 20px; }
.nw-toolbar-left { display: flex; align-items: center; gap: 4px; }
.nw-toolbar-right { display: flex; align-items: center; gap: 6px; }
.nw-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nw-dot.red { background: var(--red); }
.nw-btn { font-size: 10px; color: rgba(255,255,255,0.45); cursor: default; line-height: 1; }
.nw-btn.play-active { color: var(--green); }
.nw-stats { font-size: 9px; color: var(--green); font-weight: 600; white-space: nowrap; }
.nw-source { font-size: 8px; font-weight: 700; letter-spacing: 0.05em; white-space: nowrap; }
.nw-source.obsidian { color: var(--accent-light); }
.nw-source.clip { color: var(--orange); }
.nw-source-icon { display: flex; align-items: center; }

/* Content area */
.nw-content { padding: 6px 12px 10px; overflow: hidden; height: 200px; position: relative; }
.nw-content.compact { height: 120px; padding: 4px 10px 8px; }
.nw-content.tall-content { height: 160px; }
.nw-scroll { transition: transform 0.05s linear; }

/* Text styles matching real app (warm tan color, monospaced, RENDERED markdown — no raw syntax) */
.nw-content, .nw-scroll { text-align: left; }
.nw-h1 { font-size: 14px; font-weight: 700; color: var(--notch-text); font-family: var(--mono); margin-bottom: 3px; }
.nw-h2 { font-size: 12px; font-weight: 600; color: var(--notch-text); font-family: var(--mono); margin-bottom: 2px; opacity: 0.9; }
.nw-body { font-size: 11px; color: var(--notch-text); font-family: var(--mono); line-height: 1.5; opacity: 0.85; }
.nw-body strong { font-weight: 700; opacity: 1; }
.nw-spacer { height: 6px; }
.nw-bullet { padding-left: 12px; position: relative; }
.nw-bullet::before { content: '\2022'; position: absolute; left: 2px; color: var(--notch-text); opacity: 0.6; }
.nw-numbered { padding-left: 16px; position: relative; }
.nw-num { position: absolute; left: 0; opacity: 0.5; font-size: 10px; }
.nw-quote { padding-left: 10px; border-left: 2px solid rgba(209,181,143,0.3); font-style: italic; opacity: 0.75; }
.nw-task { padding-left: 14px; }
.nw-task.done { text-decoration: line-through; opacity: 0.5; }
.nw-hr { border: none; border-top: 1px solid rgba(209,181,143,0.15); height: 0; margin: 4px 0; }
/* Small notch rendered markdown */
.nm-bullet { padding-left: 10px; position: relative; }
.nm-bullet::before { content: '\2022'; position: absolute; left: 1px; opacity: 0.6; }

/* Fade-out at bottom of content */
.nw-content::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30px;
    background: linear-gradient(transparent, var(--notch-bg));
    pointer-events: none;
}

/* ========================================
   Desktop backgrounds
   ======================================== */
.macbook-desktop { min-height: 340px; position: relative; background: #1a1a2e; }
.macbook-base { height: 14px; background: linear-gradient(180deg, #2a2a2a, #1a1a1a); border-radius: 0 0 4px 4px; margin: 0 40px; border: 1px solid #333; border-top: none; position: relative; }
.macbook-notch-base { width: 100px; height: 4px; background: #333; border-radius: 0 0 4px 4px; position: absolute; left: 50%; transform: translateX(-50%); top: 0; }

/* Desktop app (shared) */
.desktop-app { position: absolute; inset: 20px 30px; background: #252528; border-radius: 8px; overflow: hidden; border: 1px solid #3a3a3a; }
.desktop-toolbar { height: 32px; background: #2d2d30; display: flex; align-items: center; padding: 0 12px; gap: 8px; border-bottom: 1px solid #3a3a3a; }
.dt-dots { display: flex; gap: 6px; }
.dt-dot { width: 10px; height: 10px; border-radius: 50%; }
.dt-dot.red { background: #ff5f57; }
.dt-dot.yellow { background: #ffbd2e; }
.dt-dot.green { background: #28c840; }
.dt-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 8px; }

/* Google Meet desktop */
.desktop-app.gmeet { display: flex; flex-direction: column; }
.gmeet-toolbar { background: #202124; border-bottom: 1px solid #3c4043; }
.gmeet-tab { display: flex; align-items: center; gap: 6px; margin-left: 8px; font-size: 11px; color: rgba(255,255,255,0.6); }
.gmeet-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px; background: #1a1a1d; }
.gmeet-tile { background: #2d2d32; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 100px; position: relative; }
.gmeet-tile.self { outline: 2px solid #8ab4f8; outline-offset: -2px; }
.gmeet-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; }
.gmeet-name { font-size: 10px; color: rgba(255,255,255,0.5); }
.gmeet-controls { height: 36px; background: #202124; display: flex; align-items: center; justify-content: center; gap: 12px; border-top: 1px solid #3c4043; }
.gmeet-control-btn { width: 28px; height: 28px; border-radius: 50%; background: #3c4043; display: flex; align-items: center; justify-content: center; }
.gmeet-control-btn.hangup { background: #ea4335; }

/* ========================================
   Feature Showcases (split layout)
   ======================================== */
.feature-showcase { padding: 100px 0; }
.feature-showcase.alt { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-showcase.obsidian-section { background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,0.03) 50%, var(--bg) 100%); }

.showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.showcase-split.in-view { opacity: 1; transform: translateY(0); }
.showcase-split.reverse { direction: rtl; }
.showcase-split.reverse > * { direction: ltr; }

.showcase-label { font-size: 13px; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.showcase-text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
.showcase-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.text-muted { color: var(--text-muted); }

/* ========================================
   Shortcut list (in feature showcase)
   ======================================== */
.shortcut-list { display: flex; flex-direction: column; gap: 12px; }
.shortcut-item { display: flex; align-items: center; gap: 16px; padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); opacity: 0; transform: translateX(-10px); transition: all 0.4s ease; }
.shortcut-item.in-view { opacity: 1; transform: translateX(0); }
.shortcut-item:nth-child(2) { transition-delay: 0.1s; }
.shortcut-item:nth-child(3) { transition-delay: 0.2s; }
.shortcut-keys { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.shortcut-item span { font-size: 14px; color: var(--text-secondary); }

/* ========================================
   Scene frames (mini screens)
   ======================================== */
.scene-frame { background: #1a1a1a; border-radius: 12px; border: 1px solid var(--border-light); overflow: hidden; position: relative; }
.scene-frame.dark { background: #111; }
.scene-menubar { height: 22px; background: #1c1c1e; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; font-size: 10px; color: rgba(255,255,255,0.5); position: relative; }
.scene-menubar .bright { color: rgba(255,255,255,0.8); font-weight: 600; }
.scene-mb-left, .scene-mb-right { display: flex; align-items: center; gap: 8px; flex: 1; overflow: hidden; white-space: nowrap; max-width: calc(50% - 40px); }
.scene-mb-right { justify-content: flex-end; }

.scene-notch-window {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: var(--notch-bg);
    border-radius: 0 0 12px 12px;
    z-index: 4;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.scene-notch-window.tall { width: 220px; }

/* ========================================
   Google Slides scene
   ======================================== */
.scene-desktop.slides-bg { display: flex; flex-direction: column; min-height: 220px; background: #f8f9fa; }
.slides-toolbar { height: 28px; background: white; border-bottom: 1px solid #dadce0; display: flex; align-items: center; padding: 0 10px; }
.slides-tab { display: flex; align-items: center; gap: 6px; font-size: 10px; color: #5f6368; }
.slides-area { flex: 1; display: flex; }
.slides-sidebar { width: 80px; background: #f1f3f4; border-right: 1px solid #dadce0; padding: 8px 6px; display: flex; flex-direction: column; gap: 6px; }
.slide-thumb { aspect-ratio: 16/10; background: white; border-radius: 3px; border: 1px solid #dadce0; padding: 4px; }
.slide-thumb.active { border-color: #1a73e8; border-width: 2px; }
.thumb-content { display: flex; flex-direction: column; gap: 3px; align-items: center; justify-content: center; height: 100%; }
.thumb-title { width: 60%; height: 3px; background: #333; border-radius: 1px; }
.thumb-line { width: 50%; height: 2px; background: #999; border-radius: 1px; }
.thumb-line.short { width: 30%; }
.thumb-bar { width: 70%; height: 4px; background: #1a73e8; border-radius: 1px; }
.thumb-bar.short { width: 40%; height: 3px; background: #dadce0; }
.slides-main { flex: 1; display: flex; align-items: center; justify-content: center; background: #e8eaed; padding: 12px; }
.slide-main-content { background: white; border-radius: 4px; width: 100%; aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.slide-main-title { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 4px; }
.slide-main-sub { font-size: 10px; color: #999; margin-bottom: 8px; }
.slide-main-bar { width: 50px; height: 3px; background: #1a73e8; border-radius: 2px; }

/* Screen share safe section */
.ss-section .section-header { margin-bottom: 48px; }
.ss-comparison {
    display: flex; align-items: center; gap: 20px;
}
.ss-side { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ss-frame { width: 100%; }
.ss-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; border-radius: 100px; padding: 5px 14px;
}
.ss-badge.you { color: var(--green); background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2); }
.ss-badge.them { color: var(--text-muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.ss-arrow {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: var(--text-muted); flex-shrink: 0;
}
.ss-arrow-label { font-size: 10px; font-weight: 600; text-align: center; color: var(--text-muted); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.05em; }
.ss-notch-vis { width: 220px; }
.ss-notch-vis .nw-toolbar.compact { height: 22px; }
.ss-notch-vis .nw-content.compact { height: 130px; }
@media (max-width: 900px) {
    .ss-comparison { flex-direction: column; gap: 24px; }
    .ss-arrow svg { transform: rotate(90deg); }
}

/* Shortcut overlay toast */
.shortcut-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); z-index: 10; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.shortcut-overlay.visible { opacity: 1; }
.shortcut-toast { background: rgba(30,30,30,0.95); border: 1px solid var(--border-light); border-radius: 10px; padding: 12px 24px; display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text); backdrop-filter: blur(10px); }

/* ========================================
   Zoom scene
   ======================================== */
.scene-desktop.zoom-bg { min-height: 220px; background: #1a1a2e; display: flex; align-items: center; justify-content: center; }
.zoom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 20px; width: 100%; max-width: 300px; }
.zoom-tile { background: #252540; border-radius: 8px; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.zoom-tile.highlight { border: 2px solid var(--accent); }
.zoom-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); }

/* ========================================
   Speed demo
   ======================================== */
.speed-demo { margin-top: 8px; }
.speed-bar { display: flex; gap: 8px; margin-bottom: 10px; }
.speed-option { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-secondary); cursor: pointer; font-family: var(--font); transition: all 0.2s; }
.speed-option:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.speed-option.active { border-color: var(--yellow); color: var(--text); background: rgba(251,191,36,0.08); }
.speed-option.active[data-speed="slow"] { border-color: var(--green); background: rgba(52,211,153,0.08); }
.speed-option.active[data-speed="fast"] { border-color: var(--red); background: rgba(248,113,113,0.08); }
.speed-dot { width: 8px; height: 8px; border-radius: 50%; }
.speed-dot.green { background: var(--green); }
.speed-dot.yellow { background: var(--yellow); }
.speed-dot.red { background: var(--red); }
.speed-caption { font-size: 13px; color: var(--text-muted); }

/* ========================================
   Obsidian Flow (3-step)
   ======================================== */
.obsidian-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--accent-light); margin-bottom: 20px; }

.obsidian-flow { display: flex; align-items: flex-start; gap: 16px; margin-top: 48px; }
.flow-step { flex: 1; opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.flow-step.in-view { opacity: 1; transform: translateY(0); }
.flow-step:nth-child(3) { transition-delay: 0.1s; }
.flow-step:nth-child(5) { transition-delay: 0.2s; }
.flow-arrow { display: flex; align-items: center; padding-top: 120px; color: var(--text-muted); opacity: 0; transition: opacity 0.5s ease 0.3s; flex-shrink: 0; }
.flow-arrow.in-view { opacity: 1; }
.flow-number { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.flow-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.flow-card-header { padding: 12px 16px; font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--border); }
.flow-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-top: 12px; }

/* Settings mock */
.settings-mock { padding: 12px 16px; }
.sm-section { font-size: 11px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.sm-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--text); }
.sm-row.highlight { background: rgba(124,58,237,0.06); margin: 0 -16px; padding: 6px 16px; border-radius: 6px; }
.sm-toggle { width: 36px; height: 20px; border-radius: 10px; background: var(--border-light); position: relative; transition: background 0.3s; }
.sm-toggle.on { background: var(--green); }
.sm-toggle.locked { opacity: 0.5; }
.sm-toggle-knob { width: 16px; height: 16px; border-radius: 50%; background: white; position: absolute; top: 2px; right: 2px; transition: right 0.3s, left 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.sm-toggle.on .sm-toggle-knob { right: 2px; left: auto; }
.sm-status { display: flex; align-items: center; gap: 6px; padding: 4px 0; font-size: 11px; color: var(--text-secondary); margin-top: 4px; }
.sm-dot { width: 6px; height: 6px; border-radius: 50%; }
.sm-dot.green { background: var(--green); }

/* Obsidian editor mock */
.obsidian-mock { display: flex; height: 160px; }
.om-toolbar { width: 36px; background: #1e1e2e; display: flex; flex-direction: column; align-items: center; padding: 8px 0; gap: 8px; border-right: 1px solid #2a2a3a; }
.om-icon { font-size: 14px; padding: 4px; cursor: default; opacity: 0.5; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; }
.om-icon.active { opacity: 1; background: rgba(124,58,237,0.2); border-radius: 4px; color: var(--accent-light); }
.om-editor { flex: 1; padding: 10px 14px; position: relative; background: #1a1a2e; }
.om-filename { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 8px; font-family: var(--mono); }
.om-text { display: flex; flex-direction: column; gap: 2px; }
.om-h { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); font-family: var(--mono); }
.om-p { font-size: 11px; color: rgba(255,255,255,0.6); font-family: var(--mono); }
.om-p.sub { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 2px; }
.om-notice { position: absolute; bottom: 10px; right: 10px; display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--green); opacity: 0; transform: translateY(5px); transition: all 0.3s ease; }
.om-notice.visible { opacity: 1; transform: translateY(0); }

/* Small notch mock (in flow step 3) */
.notch-mock { background: #000; border-radius: 0 0 12px 12px; padding: 0; }
.nm-bar { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px; height: 18px; border-bottom: 1px solid #1a1a1a; }
.nm-toolbar { display: flex; align-items: center; gap: 3px; }
.nm-right { display: flex; align-items: center; gap: 6px; }
.nm-stats { font-size: 7px; color: var(--green); font-weight: 600; }
.nm-source { font-size: 7px; color: var(--accent-light); font-weight: 700; letter-spacing: 0.05em; }
.nm-content { padding: 6px 10px 10px; }
.nm-h1 { font-size: 11px; font-weight: 700; color: var(--notch-text); font-family: var(--mono); margin-bottom: 2px; }
.nm-h2 { font-size: 10px; font-weight: 600; color: var(--notch-text); font-family: var(--mono); margin-bottom: 2px; }
.nm-body { font-size: 9px; color: var(--notch-text); font-family: var(--mono); opacity: 0.85; }

/* ========================================
   Source switching
   ======================================== */
.source-cards { display: flex; flex-direction: column; gap: 8px; }
.source-card { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all 0.3s; width: 100%; text-align: left; font-family: var(--font); color: var(--text); cursor: pointer; }
button.source-card { cursor: pointer; }
button.source-card:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.source-card.active { border-color: var(--accent); background: rgba(124,92,252,0.06); }
.source-card.coming-soon { opacity: 0.5; cursor: default; }
.source-icon { font-size: 20px; flex-shrink: 0; display: flex; align-items: center; }
.source-card strong { display: block; font-size: 14px; font-weight: 600; }
.source-card span { font-size: 12px; color: var(--text-secondary); }
.coming-badge { font-size: 11px; color: var(--yellow); font-weight: 600; }

.source-switch-demo { padding: 40px 20px; display: flex; flex-direction: column; align-items: center; position: relative; min-height: 260px; }
.ssd-notch { width: 260px; background: #000; border-radius: 0 0 14px 14px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.source-content { display: none; }
.source-content.visible { display: block; }

/* (click indicator removed — source switching now controlled by sidebar buttons) */

/* ========================================
   Customize specs
   ======================================== */
.customize-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.spec { padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.spec-label { display: block; font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.spec-value { font-size: 14px; font-weight: 600; color: var(--text); }

/* ========================================
   Settings window mock
   ======================================== */
.settings-window-mock { background: #2a2a2c; border-radius: 8px; overflow: hidden; width: 260px; margin: 30px auto 20px; border: 1px solid #444; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.sw-titlebar { height: 28px; background: #353537; display: flex; align-items: center; padding: 0 10px; gap: 8px; border-bottom: 1px solid #444; }
.sw-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 4px; }
.sw-body { padding: 12px 14px; }
.sw-section-head { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.sw-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; font-size: 12px; color: rgba(255,255,255,0.7); }
.sw-dropdown { font-size: 11px; color: rgba(255,255,255,0.5); background: #3a3a3e; padding: 3px 8px; border-radius: 4px; }
.sw-dropdown.small { font-size: 10px; padding: 2px 6px; }
.sw-slider-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; font-size: 11px; color: rgba(255,255,255,0.6); }
.sw-val { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.4); }
.sw-slider { margin-bottom: 8px; }
.sw-slider-track { height: 4px; background: #3a3a3e; border-radius: 2px; position: relative; }
.sw-slider-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.sw-slider-track.center .sw-slider-fill { position: absolute; left: 0; background: linear-gradient(90deg, #3a3a3e 48%, var(--accent) 48%, var(--accent) 52%, #3a3a3e 52%); width: 100% !important; }
.sw-slider-thumb { width: 12px; height: 12px; border-radius: 50%; background: white; border: 1px solid #999; position: absolute; top: -4px; transform: translateX(-50%); box-shadow: 0 1px 3px rgba(0,0,0,0.3); }

/* Resize preview */
.resize-preview { display: flex; align-items: center; justify-content: center; padding: 10px 20px 30px; position: relative; }
.resize-notch { background: #000; border-radius: 0 0 10px 10px; overflow: hidden; transition: width 0.05s linear; }
.rn-bar { display: flex; align-items: center; gap: 4px; padding: 3px 6px; height: 14px; border-bottom: 1px solid #1a1a1a; }
.rn-content { padding: 4px 8px 6px; }
.resize-arrows { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; pointer-events: none; }

/* ========================================
   Features Grid (secondary)
   ======================================== */
.features-grid-section { padding: 100px 0; background: var(--bg-elevated); border-top: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s ease; opacity: 0; transform: translateY(20px); }
.feature-card.in-view { opacity: 1; transform: translateY(0); }
.feature-card:hover { background: var(--bg-card-hover); border-color: var(--border-light); transform: translateY(-2px); }
.feature-card.in-view:hover { transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border: 1px solid rgba(124,92,252,0.2); border-radius: 10px; color: var(--accent-light); margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.05s; }
.feature-card:nth-child(3) { transition-delay: 0.1s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }
.feature-card:nth-child(7) { transition-delay: 0.3s; }

/* ========================================
   How it Works
   ======================================== */
.how-it-works { padding: 100px 0; border-bottom: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.steps { display: flex; flex-direction: column; gap: 0; max-width: 560px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; left: 23px; top: 48px; bottom: 48px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--border)); border-radius: 1px; }
.step { display: flex; align-items: flex-start; gap: 20px; padding: 28px 0; opacity: 0; transform: translateX(-20px); transition: all 0.5s ease; }
.step.in-view { opacity: 1; transform: translateX(0); }
.step:nth-child(2) { transition-delay: 0.15s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   Download CTA
   ======================================== */
.download { padding: 100px 0; }
.download-card { text-align: center; padding: 56px 40px; background: linear-gradient(135deg, rgba(124,92,252,0.08), rgba(124,92,252,0.02)); border: 1px solid rgba(124,92,252,0.2); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.download-card::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,92,252,0.1), transparent 70%); pointer-events: none; }
.download-card h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; position: relative; }
.download-card > p { font-size: 17px; color: var(--text-secondary); margin-bottom: 28px; position: relative; }
.download-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; position: relative; }
.download-meta { font-size: 13px; color: var(--text-muted); position: relative; }

/* ========================================
   Footer
   ======================================== */
.footer { padding: 36px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .showcase-split { grid-template-columns: 1fr; gap: 40px; }
    .showcase-split.reverse { direction: ltr; }
    .obsidian-flow { flex-direction: column; align-items: stretch; }
    .flow-arrow { padding-top: 0; justify-content: center; transform: rotate(90deg); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 120px 20px 40px; }
    .hero-title { font-size: clamp(36px, 10vw, 56px); }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .macbook-frame { display: none; }
    .hero-caption { display: none; }
    .site-bar-link:not(.bright) { display: none; }
    .site-notch { display: none; }
    .notch-hint { display: none; }
    .site-bar-left, .site-bar-right { max-width: none; }
    .footer-inner { flex-direction: column; text-align: center; }
    .steps::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .customize-specs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .shortcut-item { flex-direction: column; align-items: flex-start; gap: 6px; }
    .download-card { padding: 36px 20px; }
    .source-cards { gap: 6px; }
}
