@font-face { font-family:'Apfel Grotezk'; src:url('assets/fonts/ApfelGrotezk-Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Apfel Grotezk'; src:url('assets/fonts/ApfelGrotezk-Mittel.woff2') format('woff2'); font-weight:500 600; font-style:normal; font-display:swap; }
@font-face { font-family:'Apfel Grotezk'; src:url('assets/fonts/ApfelGrotezk-Fett.woff2') format('woff2'); font-weight:700 900; font-style:normal; font-display:swap; }
:root {
  --black: #111111;
  --white: #ffffff;
  --page: min(1180px, calc(100vw - 48px));
  --font: 'Inter', 'Segoe UI', sans-serif;
  --serif: 'Apfel Grotezk', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--black); background: var(--white); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
::selection { color: var(--white); background: var(--black); }
:where(a, button, summary):focus-visible { outline: 2px solid var(--black); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: var(--white); background: var(--black); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: relative; z-index: 50; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: var(--page); height: 78px; margin: 0 auto; border-bottom: 1px solid rgba(17,17,17,.12); }
.brand { display: inline-flex; align-items: center; justify-self: start; gap: 9px; font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.brand img { width: 26px; height: 26px; display: block; }
.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 500; }
.site-header nav a, footer nav a { position: relative; }
.site-header nav a::after, footer nav a::after, .text-link::after { content: ''; position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.site-header nav a:hover::after, footer nav a:hover::after, .text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 21px; border: 1px solid var(--black); border-radius: 8px; color: var(--white); background: var(--black); font-size: 14px; font-weight: 600; transition: color .25s, background .25s, transform .25s; }
.button:hover { color: var(--black); background: var(--white); transform: translateY(-2px); }
.button-small { justify-self: end; min-height: 38px; padding: 0 16px; border-radius: 7px; font-size: 12px; }

.hero { display: grid; grid-template-columns: minmax(0, 420px) 1fr; align-items: start; gap: 4vw; width: var(--page); margin: 0 auto; padding: 96px 0 0; text-align: left; }
.hero-copy { width: 100%; }
.pill { display: inline-flex; align-items: center; min-height: 30px; margin: 0 0 20px; padding: 0 14px; border: 1px solid rgba(17,17,17,.14); border-radius: 100px; font-size: 12px; font-weight: 500; }
.pill strong { margin-right: 8px; padding: 2px 7px; border-radius: 100px; color: var(--white); background: var(--black); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 3vw, 50px); font-weight: 600; letter-spacing: -.015em; line-height: 1.08; text-wrap: balance; }
.hero-lede { width: 100%; max-width: 40ch; margin: 18px 0 0; color: rgba(17,17,17,.64); font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 26px; margin-top: 26px; }
.text-link { position: relative; font-size: 14px; font-weight: 600; }
.text-link span { display: inline-block; margin-left: 7px; }
.hero-copy > small { display: block; margin-top: 16px; color: rgba(17,17,17,.5); font-size: 11px; }

/* ---------- hero product: the real, interactive deck (no frame/background) ----------
   Values here are pulled straight from the app's own tauri-app/src/index.css
   (.note-card-title, .note-card-date, .note-row, .note-input, .rough-editor,
   .card-rotate-button) — this is a real recreation of the actual card, not an
   approximation, so it uses the same fonts, weights, colors and line rhythm. */
.hero-product { display: flex; justify-content: center; padding-top: 6px; }
.demo-stack { position: relative; width: 300px; height: 500px; perspective: 1800px; }
.demo-card { position: absolute; inset: 0; border-radius: 14px; box-shadow: 0 24px 48px -18px rgba(17,17,17,.28), 0 3px 10px rgba(17,17,17,.07); transition: transform .5s cubic-bezier(.2,.8,.2,1); cursor: pointer; }
.demo-card.is-active { cursor: default; }
.demo-sheet { position: relative; width: 100%; height: 100%; border-radius: 14px; transform-style: preserve-3d; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.demo-card.is-flipped .demo-sheet { transform: rotateY(180deg); }
.demo-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 14px; padding: 18px 20px 20px; display: flex; flex-direction: column; overflow: hidden; text-align: left; }
.demo-face.demo-back { transform: rotateY(180deg); }
.demo-card:not(.is-active) .demo-face * { pointer-events: none; }
.demo-card[data-card="today"] .demo-face { background: #ffffff; }
.demo-card[data-card="tomorrow"] .demo-face { background: #f5f0e8; }
.demo-card[data-card="next"] .demo-face { background: #e8e4dc; }
.demo-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; flex: none; }
.demo-head .demo-title { margin-top: 3px; color: rgba(33,33,31,.76); font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300; letter-spacing: .05em; }
.demo-head-right { display: flex; align-items: flex-start; gap: 8px; }
.demo-date { min-width: 60px; padding: 0 3px 2px; border-bottom: 1px solid rgba(32,32,30,.36); color: rgba(27,27,26,.8); font-family: 'Caveat', cursive; font-size: 18px; font-weight: 500; line-height: 1; text-align: center; }
.demo-flip-btn { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border: 0; border-radius: 50%; background: transparent; color: rgba(35,35,33,.48); cursor: pointer; font-size: .85rem; transition: background 140ms ease, color 140ms ease, transform 140ms ease; }
.demo-flip-btn:hover { background: rgba(0,0,0,.055); color: rgba(35,35,33,.76); transform: rotate(18deg); }
.demo-rows { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.demo-row { display: flex; align-items: flex-start; gap: 9px; min-height: 34px; border-bottom: 1px solid rgba(38,38,36,.36); }
.demo-state-btn { flex: 0 0 auto; width: 13px; height: 13px; margin-top: 10px; border-radius: 50%; border: 1.5px solid rgba(17,17,17,.4); background: transparent; cursor: pointer; padding: 0; transition: background .15s, border-color .15s; }
.demo-row.is-done .demo-state-btn { background: #1b1b1a; border-color: #1b1b1a; }
.demo-row.is-cleared .demo-state-btn { border-color: rgba(17,17,17,.16); }
.demo-input { min-width: 0; flex: 1; box-sizing: border-box; padding: 7px 0 5px; border: 0; outline: 0; background: transparent; color: rgba(27,27,26,.86); font-family: 'Caveat', cursive; font-size: 17px; font-weight: 500; line-height: 1.2; }
.demo-input::placeholder { color: transparent; }
.demo-row.is-cleared .demo-input { text-decoration: line-through; color: rgba(27,27,26,.4); }
.demo-back-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; flex: none; }
.demo-back-head span { color: rgba(0,0,0,.28); font-family: 'Caveat', cursive; font-size: 13px; letter-spacing: .3px; }
.demo-roughpage {
  flex: 1; resize: none; border: none; outline: none; padding-top: 6px;
  background-color: transparent;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, rgba(72,72,67,.24) 25px, rgba(72,72,67,.24) 26px);
  background-attachment: local;
  color: #2a2a2a; caret-color: #2a2a2a;
  font-family: 'Caveat', cursive; font-size: 17px; font-weight: 500; line-height: 26px;
}
.demo-roughpage::placeholder { color: rgba(35,35,33,.32); }
.hero-demo-wrap { display: flex; flex-direction: column; align-items: center; }

.principle { width: var(--page); margin: 130px auto; padding: 56px 0; border-top: 1px solid rgba(17,17,17,.13); border-bottom: 1px solid rgba(17,17,17,.13); text-align: center; }
.principle-lines { margin-top: 18px; font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -.01em; line-height: 1.15; }
.principle-lines p { margin: 0; }

.feature-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; width: var(--page); margin: 0 auto; padding: 90px 0 40px; }
.feature-strip-card h3 { margin: 20px 0 8px; font-size: 17px; font-weight: 650; letter-spacing: -.02em; }
.feature-strip-card p { margin: 0; color: rgba(17,17,17,.6); font-size: 14px; line-height: 1.55; }
.feature-strip-shot { overflow: hidden; border: 1px solid rgba(17,17,17,.12); border-radius: 14px; background: rgba(17,17,17,.025); }
.feature-strip-shot img, .feature-strip-shot video { width: 100%; height: 210px; padding: 20px; object-fit: contain; }

.trust-section { padding: 130px max(24px, calc((100vw - 1180px) / 2)); border-top: 1px solid rgba(17,17,17,.1); border-bottom: 1px solid rgba(17,17,17,.1); background: rgba(17,17,17,.025); }
.trust-heading { width: min(620px, 100%); margin: 0 auto 56px; text-align: center; }
.trust-heading > p:last-child { margin-inline: auto; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; width: min(1080px, 100%); margin: 0 auto; border: 1px solid rgba(17,17,17,.12); background: rgba(17,17,17,.12); }
.trust-card { padding: 34px 26px; background: var(--white); }
.trust-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-bottom: 22px; color: rgba(17,17,17,.7); }
.trust-icon svg { width: 100%; height: 100%; }
.trust-card h3 { margin: 0 0 8px; font-size: 15px; font-weight: 650; letter-spacing: -.02em; }
.trust-card p { margin: 0; color: rgba(17,17,17,.58); font-size: 13px; line-height: 1.55; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: var(--page); margin: 0 auto; padding: 90px 0; text-align: center; }
.stat-strip span { display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -.01em; }
.stat-strip small { display: block; margin-top: 8px; color: rgba(17,17,17,.55); font-size: 12px; }

.product-section { width: var(--page); margin: 0 auto; padding: 80px 0 130px; }
.split-section { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 8vw; }
.split-section.reverse { grid-template-columns: 1.22fr .78fr; }
.split-section.reverse .section-copy { order: 2; }
.section-label { margin: 0 0 20px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.section-label-center { text-align: center; }
.section-copy h2, .section-heading h2, .trust-heading h2, .download-copy h2, .faq-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 3.6vw, 48px); font-weight: 600; letter-spacing: -.012em; line-height: 1.1; }
.section-copy > p:last-child, .section-heading > p:last-child, .trust-heading > p:last-child, .download-copy > p { margin: 23px 0 0; color: rgba(17,17,17,.62); font-size: 16px; line-height: 1.6; }
.product-window { margin: 0; overflow: hidden; border: 1px solid rgba(17,17,17,.13); border-radius: 18px; background: rgba(17,17,17,.025); }
.product-window img, .product-window video { width: 100%; height: 570px; padding: 34px; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(17,17,17,.1)); }
.product-window figcaption { padding: 15px 19px; border-top: 1px solid rgba(17,17,17,.1); color: rgba(17,17,17,.52); background: var(--white); font-size: 11px; }
.portrait-window video { padding: 42px 90px; }

.dock-section { padding: 130px max(24px, calc((100vw - 1180px) / 2)); border-top: 1px solid rgba(17,17,17,.1); border-bottom: 1px solid rgba(17,17,17,.1); background: rgba(17,17,17,.025); }

/* ---------- connect diagram: the deck, wired to its three dock modes ----------
   Scroll-linked reveal: the connector lines draw themselves in and each
   node fades/settles into place as this diagram scrolls through the
   middle of the viewport (see app.js's ScrollTrigger + scrub block). */
.connect-diagram { position: relative; width: min(800px, 100%); height: 300px; margin: 0 auto 70px; }
.connect-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.connect-path { fill: none; stroke: rgba(17,17,17,.28); stroke-width: 1.5; stroke-dasharray: 4 6; }
.connect-node { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 10px; width: 108px; text-align: center; opacity: 0; transform: translateY(10px) scale(.94); }
.connect-node .trust-icon { width: 40px; height: 40px; margin: 0; padding: 9px; border: 1px solid rgba(17,17,17,.14); border-radius: 50%; background: var(--white); color: rgba(17,17,17,.75); }
.connect-node span:last-child { font-size: 13px; font-weight: 650; letter-spacing: -.01em; }
.connect-hub { left: 0; top: 50%; transform: translateY(-50%); }
.connect-hub .trust-icon { width: 48px; height: 48px; padding: 11px; border-color: var(--black); }
.connect-spoke-1 { right: 0; top: 0; }
.connect-spoke-2 { right: 0; top: 50%; transform: translateY(calc(-50% + 10px)) scale(.94); }
.connect-spoke-3 { right: 0; bottom: 0; }
.section-heading { width: min(700px, 100%); margin: 0 auto 62px; text-align: center; }
.section-heading > p:last-child { width: min(600px,100%); margin-right: auto; margin-left: auto; }
.dock-showcase { width: min(1080px,100%); margin: 0 auto; overflow: hidden; border: 1px solid rgba(17,17,17,.13); border-radius: 20px; background: var(--white); }
.dock-visual { position: relative; height: 610px; overflow: hidden; background-image: linear-gradient(rgba(17,17,17,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(17,17,17,.045) 1px,transparent 1px); background-size: 56px 56px; }
.dock-visual img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 48px; object-fit: contain; opacity: 0; transform: translateY(12px) scale(.985); transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.dock-visual img.is-active { opacity: 1; transform: none; }
.dock-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(17,17,17,.12); }
.dock-tabs button { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; border: 0; border-right: 1px solid rgba(17,17,17,.1); text-align: left; background: var(--white); cursor: pointer; }
.dock-tabs button:last-child { border-right: 0; }
.dock-tabs button span { font-size: 14px; font-weight: 650; }
.dock-tabs button small { color: rgba(17,17,17,.48); font-size: 11px; }
.dock-tabs button.is-active { color: var(--white); background: var(--black); }
.dock-tabs button.is-active small { color: rgba(255,255,255,.62); }

.download-section { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; width: var(--page); min-height: 760px; margin: 0 auto; overflow: hidden; }
.download-copy { position: relative; z-index: 2; width: min(520px,100%); }
.download-copy .pill { margin-bottom: 24px; }
.download-copy > p { margin-bottom: 28px; }
.button-large { min-height: 52px; padding: 0 25px; }
.download-copy > small { display: block; margin-top: 15px; color: rgba(17,17,17,.48); font-size: 10px; }
.download-product { position: relative; align-self: stretch; }
.download-product::before { content: ''; position: absolute; top: 15%; right: -10%; width: 620px; height: 620px; border: 1px solid rgba(17,17,17,.09); border-radius: 50%; }
.download-product img { position: absolute; top: 50%; left: 50%; width: min(440px,78%); filter: drop-shadow(0 30px 24px rgba(17,17,17,.13)); transform: translate(-42%,-50%) rotate(2deg); }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; width: var(--page); margin: 0 auto; padding: 130px 0 150px; border-top: 1px solid rgba(17,17,17,.12); }
.faq-list { border-top: 1px solid rgba(17,17,17,.15); }
.faq details { border-bottom: 1px solid rgba(17,17,17,.15); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; list-style: none; font-size: 15px; font-weight: 600; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 19px; font-weight: 400; transition: transform .25s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { width: 82%; margin: -4px 0 24px; color: rgba(17,17,17,.6); font-size: 13px; line-height: 1.55; }

footer { padding: 70px max(24px, calc((100vw - 1180px) / 2)) 0; color: var(--white); background: var(--black); }
footer .brand img { filter: invert(1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-main > p { margin: 16px 0 0; color: rgba(255,255,255,.62); font-size: 14px; max-width: 26ch; line-height: 1.5; }
.footer-col h4 { margin: 0 0 18px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.16); }
.footer-bottom small { color: rgba(255,255,255,.46); font-size: 10px; }

.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 720px); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 0; padding-top: 75px; text-align: center; }
  .hero-copy { width: min(600px, 100%); margin: 0 auto; }
  .hero-lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-product { margin-top: 46px; }
  .principle { margin: 95px auto; }
  .split-section,.split-section.reverse { grid-template-columns: 1fr; gap: 50px; }
  .split-section.reverse .section-copy { order: 0; }
  .section-copy { width: min(600px,100%); }
  .dock-visual { height: 500px; }
  .connect-diagram { display: none; }
  .feature-strip { grid-template-columns: 1fr; gap: 48px; padding: 70px 0 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .download-section { min-height: 650px; }
  .faq { gap: 6vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); }
  .site-header { height: 68px; }
  .button-small { min-height: 36px; }
  .hero { padding-top: 64px; }
  .pill { margin-bottom: 18px; }
  .hero h1 { font-size: 44px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 19px; }
  .hero-actions .button { width: 100%; }
  .hero-product { margin-top: 46px; }
  .demo-stack { width: 250px; height: 434px; perspective: 1500px; }
  .demo-face { padding: 20px 18px 16px; }
  .demo-head .demo-title { font-size: .95rem; }
  .demo-date { font-size: .72rem; }
  .demo-input, .demo-roughpage { font-size: .8rem; }
  .principle { align-items: flex-start; flex-direction: column; gap: 9px; margin: 80px auto; font-size: 21px; }
  .principle p:last-child { text-align: left; }
  .product-section { padding: 65px 0 90px; }
  .section-copy h2,.section-heading h2,.trust-heading h2,.download-copy h2,.faq-heading h2 { font-size: 34px; }
  .section-copy > p:last-child,.section-heading > p:last-child,.trust-heading > p:last-child,.download-copy > p { font-size: 15px; }
  .principle-lines { font-size: 28px; }
  .product-window img,.product-window video { height: 420px; padding: 20px; }
  .portrait-window video { padding: 28px 52px; }
  .dock-section { padding: 90px 16px; }
  .section-heading { margin-bottom: 45px; text-align: left; }
  .dock-showcase { border-radius: 14px; }
  .dock-visual { height: 410px; }
  .dock-visual img { padding: 16px; }
  .dock-tabs { grid-template-columns: 1fr; }
  .dock-tabs button { border-right: 0; border-bottom: 1px solid rgba(17,17,17,.1); }
  .dock-tabs button:last-child { border-bottom: 0; }
  .trust-section { padding: 90px 16px; }
  .trust-grid { grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .stat-strip { grid-template-columns: 1fr; padding: 70px 0; row-gap: 32px; }
  .download-section { grid-template-columns: 1fr; min-height: 850px; padding: 90px 0 390px; text-align: center; }
  .download-product { position: absolute; right: 0; bottom: 0; left: 0; height: 400px; }
  .download-product::before { top: 20px; left: 50%; width: 430px; height: 430px; transform: translateX(-50%); }
  .download-product img { width: 310px; transform: translate(-50%,-45%) rotate(2deg); }
  .faq { grid-template-columns: 1fr; gap: 55px; padding: 90px 0 110px; }
  .faq summary { font-size: 14px; }
  .faq details p { width: 94%; }
  footer { padding: 50px 16px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
}

.legal-main { width: var(--page); margin: 0 auto; padding: 80px 0 130px; }
.legal-doc { width: min(720px, 100%); margin: 0 auto; }
.legal-doc h1 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 48px); font-weight: 650; letter-spacing: -.045em; line-height: 1.05; }
.legal-updated { margin: 14px 0 44px; color: rgba(17,17,17,.5); font-size: 13px; }
.legal-doc h2 { margin: 46px 0 16px; font-size: 22px; font-weight: 650; letter-spacing: -.03em; }
.legal-doc h3 { margin: 30px 0 12px; font-size: 16px; font-weight: 650; letter-spacing: -.02em; }
.legal-doc p, .legal-doc li { color: rgba(17,17,17,.68); font-size: 15px; line-height: 1.7; }
.legal-doc p { margin: 0 0 16px; }
.legal-doc ul { margin: 0 0 16px; padding-left: 22px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc li:last-child { margin-bottom: 0; }
.legal-doc a { text-decoration: underline; text-underline-offset: 2px; }
.legal-doc em { color: rgba(17,17,17,.55); }
.legal-note { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(17,17,17,.13); font-size: 13px; }

@media (max-width: 620px) {
  .legal-main { padding: 60px 0 90px; }
  .legal-doc h2 { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
/* The demo imports the product stylesheet inside an iframe, not this page. */
.hero { display: block; padding: 76px 0 56px; text-align: center; }
.hero .hero-copy { max-width: 660px; margin: auto; }
.hero .hero-lede { max-width: 54ch; margin: 20px auto 0; }
.hero .hero-actions { justify-content: center; }
.live-demo { width: var(--page); margin: 0 auto 80px; }
.live-demo-heading { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.live-demo-heading h2 { font-family:var(--serif); font-weight:500; font-size:28px; margin:6px 0 0; }
.demo-instructions, .demo-disclosure { font-size:13px; line-height:1.6; color:rgba(0,0,0,.6); }
.live-desktop { position:relative; overflow:hidden; isolation:isolate; background:#d8e6f2; border:1px solid rgba(0,0,0,.16); border-radius:12px; margin-top:20px; box-shadow:0 18px 48px rgba(0,0,0,.1); }
.windows-wallpaper { position:absolute; inset:0; overflow:hidden; background:#062744 url('assets/windows/flower-wallpaper.webp?v=20260916-2') center center / cover no-repeat; }
.desktop-icons { position:absolute; z-index:1; top:18px; left:12px; display:grid; gap:14px; width:70px; }.desktop-icon{display:flex;flex-direction:column;align-items:center;gap:4px;padding:0;border:0;background:transparent;color:#fff;font-family:'Segoe UI',sans-serif;font-size:10px;line-height:1.15;text-align:center;text-shadow:0 1px 3px rgba(0,0,0,.95)}.desktop-icon svg,.desktop-icon img{width:31px;height:31px;object-fit:contain;filter:drop-shadow(0 1px 1px rgba(0,0,0,.3))}.desktop-dodo{cursor:default;border:1px solid transparent;border-radius:3px}.desktop-dodo:hover,.desktop-dodo:focus-visible{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.34);outline:0}
#product-demo { position:absolute; z-index:3; border:0; transform-origin:top left; background:transparent; }
.demo-drag-surface { position:absolute; z-index:20; inset:0; cursor:grabbing; touch-action:none; background:transparent; }
.windows-start-menu,.windows-quick-settings{position:absolute;z-index:8;bottom:46px;border:1px solid rgba(255,255,255,.75);background:rgba(242,247,251,.92);box-shadow:0 18px 44px rgba(21,52,73,.3);backdrop-filter:blur(26px) saturate(1.25);font-family:'Segoe UI',sans-serif;color:#1b252c}.windows-start-menu{left:50%;width:410px;padding:22px 24px 0;border-radius:9px;transform:translateX(-50%)}.windows-search{display:flex;align-items:center;gap:9px;height:34px;padding:0 12px;border-radius:4px;border-bottom:2px solid #1886d5;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.12)}.windows-search svg{width:16px;fill:none;stroke:#34434d;stroke-width:1.8}.windows-search input{width:100%;border:0;outline:0;background:transparent;font:11px 'Segoe UI',sans-serif}.windows-menu-title{display:flex;justify-content:space-between;align-items:center;margin:20px 5px 11px;font-size:11px}.windows-menu-title b{font-size:12px}.windows-menu-title span{padding:4px 8px;border-radius:3px;background:rgba(255,255,255,.65);box-shadow:0 0 0 1px rgba(0,0,0,.06)}.windows-pinned{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.windows-pinned>span,.windows-pinned>button{display:flex;flex-direction:column;align-items:center;gap:6px;padding:8px 3px;border:0;border-radius:5px;background:transparent;color:inherit;font:inherit}.windows-pinned img,.windows-pinned svg{width:28px;height:28px;object-fit:contain}.windows-pinned small{font-size:9px}.windows-pinned button:hover,.windows-recommended:hover{background:rgba(255,255,255,.7)}.windows-menu-title.recommended{margin-top:18px}.windows-recommended{display:flex;align-items:center;gap:10px;width:100%;padding:8px;border:0;border-radius:5px;background:transparent;color:inherit;text-align:left}.windows-recommended img{width:30px;height:30px;object-fit:contain}.windows-recommended span{display:flex;flex-direction:column}.windows-recommended b{font-size:10px}.windows-recommended small{font-size:9px;color:#65727a}.windows-profile{display:flex;align-items:center;gap:9px;margin:16px -24px 0;padding:11px 30px;border-radius:0 0 9px 9px;background:rgba(221,232,240,.68);font-size:10px}.profile-dot{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#54626c;color:#fff}.power-symbol{margin-left:auto;font-size:17px}.windows-quick-settings{right:9px;width:285px;padding:18px;border-radius:9px}.quick-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.quick-grid button{display:flex;flex-direction:column;align-items:center;gap:5px;padding:8px;border:0;border-radius:5px;background:rgba(255,255,255,.75);font:13px 'Segoe UI',sans-serif}.quick-grid button span{font-size:8px}.quick-grid button.is-on{background:#1684d6;color:#fff}.quick-slider{display:grid;grid-template-columns:18px 1fr;align-items:center;gap:8px;margin-top:17px;font-size:13px}.quick-slider input{width:100%;accent-color:#1684d6}.quick-footer{display:flex;justify-content:space-between;margin:16px -18px -18px;padding:11px 18px;border-radius:0 0 9px 9px;background:rgba(221,232,240,.68);font-size:9px}
.demo-taskbar { position:absolute; z-index:4; bottom:0; left:0; right:0; height:36px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; padding:0 9px; background:rgba(241,247,251,.88); border-top:1px solid rgba(255,255,255,.78); box-shadow:0 -5px 18px rgba(37,76,101,.12); backdrop-filter:blur(16px) saturate(1.3); color:#1b252c; font-family:'Segoe UI',sans-serif; }
.taskbar-weather{display:flex;align-items:center;gap:6px;justify-self:start;font-size:9px}.weather-icon{color:#f3ad23;font-size:17px;filter:drop-shadow(0 1px 0 rgba(255,255,255,.7))}.taskbar-weather span:last-child{display:flex;flex-direction:column;line-height:1.1}.taskbar-weather b{font-weight:500}.taskbar-weather small{font-size:8px;color:#42515b}
.taskbar-apps{display:flex;align-items:center;justify-content:center;gap:5px}.taskbar-app{display:grid;place-items:center;width:31px;height:31px;padding:0;border:0;border-radius:4px;background:transparent}.taskbar-app:hover,.taskbar-app:focus-visible{background:rgba(255,255,255,.72);outline:0}.taskbar-app svg,.taskbar-app img{width:20px;height:20px;object-fit:contain}.taskbar-search svg{fill:none;stroke:#26343d;stroke-width:1.7;stroke-linecap:round}.taskbar-folder svg,.taskbar-edge svg{width:21px;height:21px}.taskbar-start{grid-template:repeat(2,6px)/repeat(2,6px);gap:2px}.taskbar-start i{display:block;width:6px;height:6px;background:#1684d6}.taskbar-dodo{position:relative}.taskbar-dodo::after{content:"";position:absolute;bottom:0;width:16px;height:2px;border-radius:2px;background:#358bc5}.taskbar-dodo.is-minimized::after{background:#7b8992}
.taskbar-tray{display:flex;align-items:center;justify-self:end;gap:7px;padding:2px 4px;border:0;border-radius:4px;background:transparent;color:inherit;font-size:10px}.taskbar-tray:hover,.taskbar-tray:focus-visible{background:rgba(255,255,255,.72);outline:0}.taskbar-tray svg{width:15px;height:15px;fill:none;stroke:#26343d;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.tray-volume path:first-child{fill:#26343d;stroke:none}.tray-battery path:last-child{fill:#26343d;stroke:none}.tray-clock{display:flex;flex-direction:column;align-items:flex-end;line-height:1.1}.tray-clock b{font-size:8px;font-weight:400}.tray-clock small{font-size:8px}.tray-bell{font-size:15px}
#demo-resume { position:absolute; z-index:5; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid #111; border-radius:6px; padding:12px 18px; background:#111; color:white; cursor:pointer; }
.live-desktop.is-dragging { cursor:grabbing; }
@media(max-width:600px) { .live-demo-heading h2{font-size:24px}.taskbar-weather,.tray-chevron,.tray-battery,.tray-bell{display:none}.demo-taskbar{grid-template-columns:1fr auto;padding:0 6px}.taskbar-apps{justify-self:start}.taskbar-tray{gap:5px}.desktop-icons{display:none}.windows-start-menu{width:calc(100% - 20px);padding:16px 16px 0}.windows-profile{margin:14px -16px 0}.windows-quick-settings{right:6px;width:calc(100% - 12px)} }

/* Native Windows 11 iconography: Segoe Fluent Icons is part of Windows. */
.win-glyph{font-family:'Segoe Fluent Icons','Segoe MDL2 Assets',sans-serif;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased}
.desktop-glyph{display:grid;place-items:center;width:31px;height:31px;color:#f4fbff;font-size:29px;filter:drop-shadow(0 1px 1px rgba(0,0,0,.35))}
.windows-search>.win-glyph{width:16px;color:#34434d;font-size:13px}
.windows-pinned img{width:28px;height:28px;object-fit:contain;image-rendering:auto}
.start-glyph{display:grid;place-items:center;width:28px;height:28px;color:#e44d55;font-size:25px}
.quick-grid button .win-glyph{font-size:13px}.quick-grid button span:last-child{font-size:8px}.quick-footer .win-glyph{font-size:12px}
.taskbar-app img{width:20px;height:20px;object-fit:contain;image-rendering:auto}
.taskbar-app>.win-glyph{color:#26343d;font-size:17px}.taskbar-start{grid-template:repeat(2,6px)/repeat(2,6px);gap:2px}.taskbar-start i{display:block;width:6px;height:6px;background:#1684d6}
.taskbar-tray>.win-glyph{color:#26343d;font-size:11px}.taskbar-tray>.tray-wifi{font-size:12px}.taskbar-tray>.tray-volume{font-size:13px}.taskbar-tray>.tray-battery{font-size:14px}
.windows-search>img{width:14px;height:14px}.power-symbol{width:16px;height:16px;margin-left:auto}.quick-grid button img{width:14px;height:14px}.quick-grid button.is-on img{filter:invert(1)}.quick-slider>img{width:14px;height:14px}.quick-footer img{width:13px;height:13px}.weather-icon{width:16px;height:16px}.taskbar-tray>img{width:11px;height:11px}.taskbar-tray>.tray-wifi{width:12px;height:12px}.taskbar-tray>.tray-volume{width:13px;height:13px}.taskbar-tray>.tray-battery{width:14px;height:14px}

/* Full-screen Windows product demo. The website chrome is intentionally gone. */
html:has(.windows-demo-page),
body.windows-demo-page { width:100%; height:100%; margin:0; overflow:hidden; }
.windows-demo-page { background:#b5dff4; }
.windows-demo-main { width:100%; height:100%; }
.windows-demo-page .live-desktop { width:100vw; height:100vh; min-height:100%; margin:0; border:0; border-radius:0; box-shadow:none; }
.windows-demo-page.is-taskbar-hidden .demo-taskbar { display:none; }
.windows-demo-page .desktop-icons { top:14px; left:12px; gap:22px; width:64px; }
.windows-demo-page .desktop-icon { gap:2px; font-size:9px; }
.windows-demo-page .desktop-icon svg,
.windows-demo-page .desktop-icon img { width:28px; height:28px; }
.windows-demo-page .demo-taskbar { height:48px; }
.windows-demo-page .windows-start-menu,
.windows-demo-page .windows-quick-settings { bottom:58px; }
.windows-demo-page .taskbar-app { width:40px; height:40px; }
.windows-demo-page .taskbar-app svg,
.windows-demo-page .taskbar-app img { width:24px; height:24px; }
.windows-demo-page .taskbar-start { grid-template:repeat(2,7px)/repeat(2,7px); }
.windows-demo-page .taskbar-start i { width:7px; height:7px; }
.windows-demo-page .taskbar-weather { font-size:10px; }
.windows-demo-page .taskbar-weather small,
.windows-demo-page .tray-clock b,
.windows-demo-page .tray-clock small { font-size:9px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* First-run guidance stays visually separate from DodoDeck itself. It
   teaches one real action at a time, then gets out of the way. */
.demo-help { position:absolute; z-index:21; right:18px; bottom:18px; width:34px; height:34px; padding:0; border:1px solid rgba(255,255,255,.45); border-radius:50%; color:#fff; background:rgba(12,18,24,.76); box-shadow:0 5px 18px rgba(0,0,0,.2); font-size:15px; font-weight:650; cursor:pointer; backdrop-filter:blur(10px); }
.demo-help:hover { background:#111; }
.demo-tour { position:absolute; z-index:22; right:18px; bottom:62px; width:min(310px,calc(100vw - 36px)); padding:17px; border:1px solid rgba(20,20,18,.12); border-radius:16px; color:#181713; background:rgba(250,249,245,.97); box-shadow:0 18px 55px rgba(0,0,0,.24); backdrop-filter:blur(16px); animation:demo-tour-in 180ms ease-out; }
.demo-tour[hidden],.demo-help[hidden] { display:none !important; }
.demo-tour-topline,.demo-tour-actions { display:flex; align-items:center; justify-content:space-between; }
.demo-tour-topline { color:#77736a; font-size:11px; font-weight:600; letter-spacing:.025em; }
.demo-tour button { border:0; color:inherit; background:transparent; cursor:pointer; }
#demo-tour-skip { padding:2px 0; color:#77736a; font-size:11px; }
.demo-tour-icon { display:grid; place-items:center; width:30px; height:30px; margin-top:15px; border-radius:9px; color:#fff; background:#171713; font-size:16px; }
.demo-tour h2 { margin:12px 0 0; font-size:17px; font-weight:650; letter-spacing:-.025em; }
.demo-tour p { min-height:42px; margin:7px 0 0; color:#656159; font-size:12.5px; line-height:1.48; }
.demo-tour-progress { display:flex; gap:5px; margin-top:15px; }
.demo-tour-progress i { width:100%; height:3px; border-radius:3px; background:#d9d6ce; transition:background 180ms ease; }
.demo-tour-progress i.is-done,.demo-tour-progress i.is-current { background:#171713; }
.demo-tour-actions { margin-top:14px; padding-top:12px; border-top:1px solid rgba(20,20,18,.1); }
#demo-tour-reset { padding:0; color:#77736a; font-size:11px; }
#demo-tour-next { min-width:56px; padding:7px 11px; border-radius:8px; color:#fff; background:#171713; font-size:11px; font-weight:600; }
.demo-tour.is-complete .demo-tour-icon { color:#171713; background:#dedbd2; }
@keyframes demo-tour-in { from { opacity:0; transform:translateY(8px) scale(.98); } to { opacity:1; transform:none; } }
@media (max-width:640px) { .demo-tour { right:12px; bottom:56px; } .demo-help { right:12px; bottom:12px; } }
.demo-guide-pointer { position:absolute; z-index:24; left:0; top:0; width:24px; height:30px; pointer-events:none; filter:drop-shadow(0 2px 3px rgba(0,0,0,.32)); opacity:0; transform:translate3d(var(--pointer-x,50vw),var(--pointer-y,50vh),0); transition:transform 720ms cubic-bezier(.22,.8,.25,1),opacity 160ms ease; }
.demo-guide-pointer[hidden] { display:none !important; }
.demo-guide-pointer.is-visible { opacity:1; }
.demo-guide-pointer svg { display:block; width:24px; height:30px; overflow:visible; }
.demo-guide-pointer path { fill:#fff; stroke:#161616; stroke-width:1.35; stroke-linejoin:round; }
.demo-guide-pointer span { position:absolute; top:28px; left:17px; width:max-content; padding:4px 7px; border-radius:6px; color:#fff; background:#171713; box-shadow:0 4px 12px rgba(0,0,0,.2); font:600 9px/1 Inter,"Segoe UI",sans-serif; letter-spacing:.015em; }
.demo-guide-pointer i { position:absolute; left:-7px; top:-7px; width:18px; height:18px; border:2px solid rgba(255,255,255,.95); border-radius:50%; opacity:0; box-shadow:0 0 0 1px rgba(18,18,16,.45); }
.demo-guide-pointer.is-clicking svg { animation:demo-pointer-click 260ms ease; transform-origin:2px 2px; }
.demo-guide-pointer.is-clicking i { animation:demo-pointer-ring 520ms ease-out; }
.demo-guide-pointer.is-right-clicking span::before { content:'R'; display:inline-grid; place-items:center; width:12px; height:12px; margin-right:4px; border-radius:3px; color:#171713; background:#fff; font-size:8px; }
@keyframes demo-pointer-click { 45% { transform:scale(.86); } }
@keyframes demo-pointer-ring { from { opacity:.9; transform:scale(.35); } to { opacity:0; transform:scale(2.2); } }
@media (prefers-reduced-motion:reduce) { .demo-guide-pointer { transition:opacity 100ms ease; } .demo-guide-pointer.is-clicking svg,.demo-guide-pointer.is-clicking i { animation:none; } }

@media (max-width:600px) {
  .windows-demo-page .demo-taskbar { height:44px; }
  .windows-demo-page .windows-start-menu,
  .windows-demo-page .windows-quick-settings { bottom:52px; }
  .windows-demo-page .taskbar-app { width:36px; height:36px; }
}

/* Windows 11 taskbar proportions, based on the supplied desktop reference. */
.windows-demo-page .demo-taskbar {
  height:48px;
  padding:0 14px;
  background:rgba(242,245,251,.94);
  border-top:1px solid rgba(255,255,255,.82);
  box-shadow:0 -1px 10px rgba(48,63,78,.09);
  backdrop-filter:blur(24px) saturate(1.15);
}
.windows-demo-page .windows-start-menu,
.windows-demo-page .windows-quick-settings { bottom:56px; }
.windows-demo-page .taskbar-weather { gap:7px; font-size:12px; }
.windows-demo-page .taskbar-weather .weather-icon { width:28px; height:28px; filter:none; }
.windows-demo-page .taskbar-weather span:last-child { gap:2px; line-height:1; }
.windows-demo-page .taskbar-weather b { font-size:12px; font-weight:400; }
.windows-demo-page .taskbar-weather small { color:#50565d; font-size:10px; }
.windows-demo-page .taskbar-apps { gap:3px; }
.windows-demo-page .taskbar-app { width:38px; height:42px; border-radius:5px; }
.windows-demo-page .taskbar-app svg,
.windows-demo-page .taskbar-app img { width:24px; height:24px; }
.windows-demo-page .taskbar-start { display:grid; grid-template:none; place-items:center; }
.windows-demo-page .taskbar-start img { width:25px; height:25px; }
.windows-demo-page .taskbar-task-view img { width:24px; height:24px; }
.windows-demo-page .taskbar-folder img,
.windows-demo-page .taskbar-edge img { width:27px; height:27px; }
.windows-demo-page .taskbar-dodo img { width:25px; height:25px; }
.taskbar-search-pill {
  display:flex;
  align-items:center;
  gap:11px;
  width:230px;
  height:34px;
  margin:0 4px 0 1px;
  padding:0 13px;
  border:1px solid rgba(89,91,104,.19);
  border-radius:22px;
  background:rgba(255,255,255,.76);
  box-shadow:0 1px 3px rgba(40,45,55,.12);
  color:#54555b;
  font:12px 'Segoe UI',sans-serif;
}
.taskbar-search-pill img { width:17px; height:17px; object-fit:contain; }
.windows-demo-page .taskbar-tray { gap:9px; padding:3px 6px; border-radius:5px; }
.windows-demo-page .taskbar-tray>img { width:14px; height:14px; object-fit:contain; }
.windows-demo-page .taskbar-tray>.tray-chevron { width:11px; height:11px; }
.windows-demo-page .taskbar-tray>.tray-wifi { width:15px; height:15px; }
.windows-demo-page .taskbar-tray>.tray-volume { width:16px; height:16px; }
.windows-demo-page .taskbar-tray>.tray-battery { width:17px; height:17px; }
.tray-sync { position:relative; display:grid; place-items:center; width:18px; height:18px; }
.tray-sync img { width:16px; height:16px; object-fit:contain; }
.tray-sync::after { content:""; position:absolute; right:-1px; bottom:0; width:6px; height:6px; border:1px solid #f3f5f9; border-radius:50%; background:#f4a21b; }
.tray-language { display:flex; flex-direction:column; align-items:center; font:11px/1.05 'Segoe UI',sans-serif; }
.tray-language small { font-size:11px; }
.windows-demo-page .tray-clock { gap:2px; line-height:1; }
.windows-demo-page .tray-clock b,
.windows-demo-page .tray-clock small { font-size:10px; font-weight:400; }
.icons8-credit { margin-left:auto; color:#65727a; font-size:8px; text-decoration:none; }
.icons8-credit:hover { text-decoration:underline; }

@media (max-width:1000px) {
  .taskbar-search-pill { width:190px; }
  .tray-language,.tray-sync { display:none; }
}
@media (max-width:700px) {
  .windows-demo-page .demo-taskbar { height:48px; padding:0 6px; }
  .windows-demo-page .windows-start-menu,
  .windows-demo-page .windows-quick-settings { bottom:56px; }
  .windows-demo-page .taskbar-app { width:37px; height:40px; }
  .windows-demo-page .taskbar-app img { width:24px; height:24px; }
  .taskbar-search-pill { width:37px; height:37px; margin:0; padding:0; justify-content:center; border:0; background:transparent; box-shadow:none; }
  .taskbar-search-pill span { display:none; }
  .taskbar-search-pill img { width:21px; height:21px; }
  .windows-demo-page .taskbar-tray { gap:7px; }
}
@media (max-width:430px) {
  .windows-demo-page .taskbar-task-view { display:none; }
  .windows-demo-page .taskbar-tray>.tray-chevron { display:none; }
}
