:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #5f6470;
  --soft: #86868b;
  --line: rgba(29, 29, 31, .09);
  --bg: #f6f7fb;
  --card: #ffffff;
  --blue: #0a72ef;
  --radius: 28px;
  /* Group gradients, identical to the app's category icons. */
  --work: linear-gradient(135deg, #54b8ff, #1776f2 52%, #4745d6);
  --creative: linear-gradient(135deg, #cc85ff, #994df0 52%, #7033c7);
  --leisure: linear-gradient(135deg, #ffbd5c, #fa8040 52%, #e64a5c);
  --general: linear-gradient(135deg, #a3adbd, #6e7889 52%, #454d5c);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid rgba(10, 114, 239, .45); outline-offset: 3px; border-radius: 8px; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(60rem 38rem at 85% -8%, rgba(126, 184, 255, .45), transparent 70%),
    radial-gradient(48rem 34rem at 8% 6%, rgba(255, 196, 150, .42), transparent 70%),
    radial-gradient(44rem 30rem at 50% 38%, rgba(200, 170, 255, .28), transparent 70%),
    var(--bg);
}

.site-header, .hero, .section, .closing, .site-footer, .policy-main {
  width: min(100% - clamp(32px, 7vw, 112px), 1240px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 12px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 8px 30px rgba(31, 45, 90, .08);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 4px 12px rgba(23, 118, 242, .3); }
.site-nav { display: flex; gap: 6px; margin-left: auto; }
.site-nav a { padding: 8px 12px; border-radius: 10px; color: var(--muted); font-size: .9rem; font-weight: 550; transition: background .2s, color .2s; }
.site-nav a:hover { color: var(--ink); background: rgba(29, 29, 31, .05); }
.language-switch { display: inline-flex; padding: 3px; gap: 2px; border-radius: 12px; background: rgba(29, 29, 31, .06); }
.language-switch button { border: 0; border-radius: 9px; background: transparent; padding: 6px 11px; color: var(--muted); font-size: .78rem; font-weight: 700; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: var(--ink); background: #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, .12); }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 24px; border-radius: 999px; font-size: .98rem; font-weight: 650; transition: transform .2s, box-shadow .2s, background .2s; }
.button--primary { color: #fff; background: linear-gradient(180deg, #2b8cff, #0a6ae6); box-shadow: 0 10px 26px rgba(10, 114, 239, .35), inset 0 1px rgba(255, 255, 255, .3); }
.button--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(10, 114, 239, .42), inset 0 1px rgba(255, 255, 255, .3); }
.button--soon { color: var(--ink); background: rgba(255, 255, 255, .7); border: 1px solid var(--line); cursor: default; }

/* Hero */
.hero { display: grid; justify-items: center; gap: clamp(32px, 3.5vw, 44px); padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 7vw, 100px); text-align: center; }
.hero-copy { display: grid; justify-items: center; max-width: 900px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; padding: 7px 14px 7px 10px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 999px; background: rgba(255, 255, 255, .6); color: var(--muted); font-size: .82rem; font-weight: 600; box-shadow: 0 4px 14px rgba(31, 45, 90, .06); }
.eyebrow-dot, .eyebrow-mark { width: 8px; height: 8px; border-radius: 50%; background: #30d158; box-shadow: 0 0 0 4px rgba(48, 209, 88, .18); }
h1 { margin: 0; font-size: clamp(3rem, 6.2vw, 5.8rem); line-height: 1; letter-spacing: -.05em; font-weight: 750; }
h1 span { display: block; }
.gradient-text { background: linear-gradient(90deg, #0a72ef, #8e44f0 45%, #f5576c 80%, #ff9f0a); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .08em; }
.hero-description { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.35vw, 1.24rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; font-weight: 550; }
.hero .hero-facts { margin-top: 22px; }
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: #30d158 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat; }

/* Demo desktop */
.demo { width: 100%; max-width: 1080px; min-width: 0; }
.desktop {
  position: relative;
  height: clamp(360px, 27vw, 400px);
  overflow: visible;
  border-radius: 22px;
  background:
    radial-gradient(70% 60% at 18% 20%, #ffd3a6 0%, transparent 60%),
    radial-gradient(60% 60% at 85% 25%, #b8a4ff 0%, transparent 62%),
    radial-gradient(80% 70% at 60% 95%, #7cc4ff 0%, transparent 65%),
    linear-gradient(160deg, #ffe9d6, #e7dcff 45%, #cfe6ff);
  box-shadow: 0 40px 80px rgba(40, 55, 110, .22), 0 0 0 1px rgba(255, 255, 255, .8), 0 0 0 9px rgba(255, 255, 255, .45);
  isolation: isolate;
}
.desktop::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(170deg, rgba(255, 255, 255, .35), transparent 40%); pointer-events: none; }
.menubar { position: absolute; inset: 0 0 auto; z-index: 2; display: flex; align-items: center; gap: 16px; height: 28px; padding: 0 14px; border-radius: 22px 22px 0 0; background: rgba(255, 255, 255, .45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: .72rem; color: rgba(29, 29, 31, .8); }
.menubar b { font-weight: 700; }
.menubar-apple { width: 11px; height: 11px; border-radius: 3px; background: rgba(29, 29, 31, .75); }
.menubar-right { margin-left: auto; font-weight: 600; }
.desktop-hint { position: absolute; left: 50%; bottom: 104px; z-index: 1; display: grid; justify-items: center; gap: 4px; transform: translateX(-50%); color: rgba(29, 29, 31, .55); font-size: .82rem; font-weight: 600; white-space: nowrap; transition: opacity .3s; }
.hint-arrow { animation: bob 1.6s ease-in-out infinite; }
.desktop.has-open .desktop-hint { opacity: 0; }
@keyframes bob { 50% { transform: translateY(4px); } }

.dock { position: absolute; z-index: 5; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; align-items: flex-end; gap: 8px; padding: 8px; border: 1px solid rgba(255, 255, 255, .7); border-radius: 22px; background: rgba(255, 255, 255, .38); box-shadow: 0 14px 40px rgba(40, 55, 110, .2), inset 0 1px rgba(255, 255, 255, .8); backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8); }
.dock-divider { align-self: stretch; width: 1px; margin: 4px 2px; background: rgba(29, 29, 31, .15); }
.dock-slot { position: relative; width: clamp(44px, 4.2vw, 58px); aspect-ratio: 1; }
.dock-item { width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: default; transition: transform .2s cubic-bezier(.3, .7, .3, 1); }
.dock-slot--folder .dock-item { cursor: pointer; }
.dock-slot:hover .dock-item, .dock-item[aria-expanded="true"] { transform: translateY(-8px) scale(1.12); }
.dock-slot--folder.is-open::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 4px; height: 4px; border-radius: 50%; background: rgba(29, 29, 31, .7); transform: translateX(-50%); }
.dock-tooltip { position: absolute; left: 50%; bottom: calc(100% + 16px); transform: translateX(-50%); padding: 4px 10px; border-radius: 8px; background: rgba(255, 255, 255, .85); color: var(--ink); box-shadow: 0 4px 14px rgba(0, 0, 0, .12); font-size: .75rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s; }
.dock-slot:hover .dock-tooltip { opacity: 1; }
.dock-slot.is-open .dock-tooltip { opacity: 0; }

/* App and folder icons */
.folder-icon { position: relative; display: grid; place-items: center; width: 100%; height: 100%; border-radius: 23%; box-shadow: 0 4px 10px rgba(30, 40, 80, .2), inset 0 1px rgba(255, 255, 255, .35); color: #fff; overflow: hidden; }
.app-img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 5px rgba(30, 40, 80, .18)); -webkit-user-drag: none; user-select: none; }
.folder-icon > svg { width: 56%; height: 56%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.folder-icon { background: var(--work); }
.folder-icon[data-group="creative"] { background: var(--creative); }
.folder-icon[data-group="leisure"] { background: var(--leisure); }
.folder-icon[data-group="general"] { background: var(--general); }
.folder-icon.is-custom { background: linear-gradient(135deg, color-mix(in srgb, var(--tile) 78%, white), var(--tile) 52%, color-mix(in srgb, var(--tile) 84%, black)); }
.folder-icon.is-light { color: #38383d; }
.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4%; width: 78%; height: 78%; }
.mosaic img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .2)); }
.folder-icon--xl { width: clamp(150px, 16vw, 200px); height: auto; aspect-ratio: 1; border-radius: 23%; box-shadow: 0 30px 60px rgba(30, 40, 80, .28), inset 0 1px rgba(255, 255, 255, .4); transition: background .35s; }

/* Fan */
.fan { position: absolute; z-index: 6; bottom: calc(100% + 18px); right: 50%; display: grid; gap: 6px; visibility: hidden; pointer-events: none; transform: translateX(clamp(20px, 1.9vw, 25px)); }
.fan.is-open { visibility: visible; pointer-events: auto; }
.fan-row { display: flex; align-items: center; justify-content: flex-end; gap: 10px; opacity: 0; }
.fan-label { padding: 6px 12px; border: 1px solid rgba(255, 255, 255, .7); border-radius: 999px; background: rgba(255, 255, 255, .72); color: var(--ink); box-shadow: 0 6px 18px rgba(30, 40, 80, .16); font-size: .8rem; font-weight: 600; white-space: nowrap; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.fan-row .app-img { width: clamp(40px, 3.8vw, 50px); height: auto; aspect-ratio: 1; flex: none; }
.fan-row .running { position: absolute; right: -8px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: #0a72ef; transform: translateY(-50%); }
.fan-row .icon-wrap { position: relative; }
.fan.is-open .fan-row { animation: glide .3s cubic-bezier(.2, .75, .25, 1) both; animation-delay: calc(var(--i) * 35ms); }
.fan.is-open[data-animation="cascade"] .fan-row { animation-name: cascade; animation-delay: calc(var(--r) * 60ms); }
.fan.is-open[data-animation="fan"] .fan-row { animation-name: fanout; animation-delay: calc(var(--r) * 45ms); }
.fan.is-open[data-animation="dissolve"] .fan-row { animation-name: dissolve; animation-duration: .35s; animation-delay: 0ms; }
@keyframes glide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes cascade { from { opacity: 0; transform: translateY(24px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes fanout { from { opacity: 0; transform: translate(22px, 18px) rotate(6deg) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes dissolve { from { opacity: 0; filter: blur(6px); } to { opacity: 1; filter: none; } }

.demo-toolbar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.segmented { display: inline-flex; padding: 3px; gap: 2px; border-radius: 12px; background: rgba(29, 29, 31, .06); }
.segmented button { border: 0; border-radius: 9px; padding: 7px 13px; background: transparent; color: var(--muted); font-size: .82rem; font-weight: 600; cursor: pointer; transition: background .15s, color .15s; }
.segmented button:hover { color: var(--ink); }
.segmented button[aria-pressed="true"] { color: var(--ink); background: #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, .12); }

/* Numbers */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; width: min(100% - clamp(32px, 7vw, 112px), 1240px); margin: 0 auto; }
.stat { display: grid; gap: 4px; padding: 22px 24px; border: 1px solid rgba(255, 255, 255, .9); border-radius: 22px; background: rgba(255, 255, 255, .7); box-shadow: 0 8px 22px rgba(31, 45, 90, .05); }
.stat strong { font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; letter-spacing: -.04em; background: linear-gradient(90deg, #0a72ef, #8e44f0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .92rem; font-weight: 550; }

/* Sections */
.section { padding: clamp(70px, 9vw, 120px) 0 0; }
.section-intro { max-width: 700px; margin-bottom: 40px; }
.section-intro--center { margin-inline: auto; text-align: center; }
.kicker { margin: 0 0 12px; color: var(--blue); font-size: .95rem; font-weight: 700; }
h2 { margin: 0; font-size: clamp(2.2rem, 4.2vw, 3.6rem); line-height: 1.06; letter-spacing: -.04em; font-weight: 750; text-wrap: balance; }
.section-intro p:not(.kicker) { margin: 18px 0 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; }
h3 { margin: 0 0 8px; font-size: 1.3rem; letter-spacing: -.02em; }
.card p, .step p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.58; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; }
.step { position: relative; padding: 26px; border: 1px solid rgba(255, 255, 255, .9); border-radius: var(--radius); background: rgba(255, 255, 255, .72); box-shadow: 0 16px 40px rgba(31, 45, 90, .07); }
.step-number { position: absolute; top: 20px; left: 22px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .85rem; font-weight: 700; }
.step-visual { display: flex; align-items: center; justify-content: center; gap: 10px; height: 150px; margin: 8px 0 18px; border-radius: 20px; background: linear-gradient(160deg, #eef3ff, #f7efff); }
.step-visual--pick .folder-icon { width: 58px; height: 58px; }
.step-visual--pick .folder-icon:nth-child(2) { width: 72px; height: 72px; transform: translateY(-6px); }
.app-chip { flex: none; width: clamp(44px, 4.4vw, 60px); height: auto; aspect-ratio: 1; filter: drop-shadow(0 6px 10px rgba(30, 40, 80, .2)); }
.step-plus { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border: 2px dashed rgba(29, 29, 31, .25); border-radius: 12px; color: var(--soft); font-size: 1.4rem; }
.mini-dock { display: flex; gap: clamp(5px, .6vw, 8px); padding: clamp(6px, .7vw, 9px); border: 1px solid #fff; border-radius: 16px; background: rgba(255, 255, 255, .7); box-shadow: 0 10px 24px rgba(30, 40, 80, .12); }
.mini-dock img, .mini-dock i { width: clamp(28px, 3vw, 42px); aspect-ratio: 1; }
.mini-dock .mini-dock-folder { border-radius: 23%; }
.mini-dock .mini-dock-folder { background: var(--leisure); transform: translateY(-8px) scale(1.15); box-shadow: 0 8px 18px rgba(230, 74, 92, .35); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.card { position: relative; overflow: hidden; padding: 30px; border: 1px solid rgba(255, 255, 255, .9); border-radius: var(--radius); background: rgba(255, 255, 255, .78); box-shadow: 0 16px 40px rgba(31, 45, 90, .07); }
.card--color { grid-column: span 4; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(241, 236, 255, .9)); }
.card--color h3 { font-size: 1.7rem; }
.card--between { grid-column: span 2; }
.card--fan, .card--motion, .card--private { grid-column: span 2; }
.color-preview { display: grid; place-items: center; padding: 10px 20px; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.swatch { width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1); cursor: pointer; transition: transform .15s; }
.swatch:hover { transform: scale(1.1); }
.swatch[aria-pressed="true"] { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1), 0 0 0 3px #fff, 0 0 0 5px var(--blue); }
.between-visual, .fan-visual, .motion-visual, .private-visual { display: flex; align-items: center; justify-content: center; height: 130px; margin: -6px -6px 18px; border-radius: 18px; background: linear-gradient(160deg, #eaf4ff, #f3edff); }
.dock-strip { display: flex; align-items: center; gap: 6px; padding: 7px; border: 1px solid #fff; border-radius: 13px; background: rgba(255, 255, 255, .7); box-shadow: 0 8px 20px rgba(30, 40, 80, .12); }
.dock-strip img, .dock-strip i { width: 32px; height: 32px; }
.dock-strip .app-folder { border-radius: 8px; }
.dock-strip .app-folder { background: var(--creative); transform: translateY(-6px) scale(1.15); box-shadow: 0 6px 14px rgba(112, 51, 199, .35); }
.dock-strip em { align-self: stretch; width: 1px; background: rgba(29, 29, 31, .15); }
.fan-visual { flex-direction: column; align-items: flex-end; gap: 7px; padding-right: 30%; }
.fan-line { display: flex; align-items: center; gap: 8px; }
.fan-line b { width: 62px; height: 18px; border-radius: 999px; background: rgba(255, 255, 255, .95); box-shadow: 0 3px 8px rgba(30, 40, 80, .1); }
.fan-line img { width: 32px; height: 32px; }
.motion-visual { gap: 10px; }
.motion-visual span { width: 26px; height: 26px; border-radius: 8px; background: var(--leisure); animation: wave 1.8s ease-in-out infinite; }
.motion-visual span:nth-child(2) { background: var(--creative); animation-delay: .12s; }
.motion-visual span:nth-child(3) { background: var(--work); animation-delay: .24s; }
.motion-visual span:nth-child(4) { background: var(--general); animation-delay: .36s; }
@keyframes wave { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-16px); } }
.private-visual svg { width: 56px; height: 56px; padding: 14px; border-radius: 18px; background: linear-gradient(145deg, #30d158, #00a37a); fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; box-shadow: 0 10px 22px rgba(0, 163, 122, .3); box-sizing: content-box; }

/* Category wall */
.category-groups { display: grid; gap: 34px; }
.category-group h3 { margin: 0 0 14px; color: var(--muted); font-size: .95rem; font-weight: 650; letter-spacing: 0; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 12px; }
.category { display: grid; justify-items: center; gap: 10px; padding: 18px 8px 16px; border: 1px solid rgba(255, 255, 255, .9); border-radius: 22px; background: rgba(255, 255, 255, .72); box-shadow: 0 8px 22px rgba(31, 45, 90, .05); transition: transform .2s, box-shadow .2s; }
.category:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(31, 45, 90, .12); }
.category .folder-icon { width: 58px; height: 58px; }
.category span { font-size: .88rem; font-weight: 600; text-align: center; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 860px; }
.faq-list details { border: 1px solid rgba(255, 255, 255, .9); border-radius: 20px; background: rgba(255, 255, 255, .78); box-shadow: 0 8px 22px rgba(31, 45, 90, .05); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-size: 1.05rem; font-weight: 650; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; display: grid; place-items: center; flex: none; width: 28px; height: 28px; border-radius: 50%; background: rgba(29, 29, 31, .06); font-size: 1.2rem; font-weight: 500; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -4px 24px 22px; color: var(--muted); line-height: 1.6; }
.faq-list details a { color: var(--blue); font-weight: 600; }

/* Closing */
.closing { padding: clamp(80px, 10vw, 130px) 0 clamp(50px, 6vw, 80px); }
.closing-card { display: grid; justify-items: center; gap: 16px; padding: clamp(44px, 6vw, 72px) 24px; border-radius: 36px; text-align: center; color: #fff; background: radial-gradient(60% 80% at 20% 10%, #3aa0ff, transparent 70%), radial-gradient(60% 80% at 90% 90%, #ff7a59, transparent 70%), linear-gradient(135deg, #4f5bff, #9b4df0); box-shadow: 0 30px 70px rgba(79, 91, 255, .3); }
.closing-card h2 { color: #fff; }
.closing-card p { margin: 0; color: rgba(255, 255, 255, .85); font-size: 1.15rem; }
.closing-card .button--primary { margin-top: 10px; color: var(--ink); background: #fff; box-shadow: 0 10px 26px rgba(20, 20, 60, .25); }
.closing-icons { display: flex; gap: 10px; margin-bottom: 8px; }
.closing-icons .folder-icon { width: 54px; height: 54px; box-shadow: 0 10px 22px rgba(20, 20, 60, .3), 0 0 0 2px rgba(255, 255, 255, .5); }
.closing-icons .folder-icon:nth-child(odd) { transform: translateY(-8px); }

/* Footer */
.site-footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 26px 0 34px; border-top: 1px solid var(--line); color: var(--soft); font-size: .86rem; }
.footer-links { display: flex; gap: 22px; }
.site-footer a:hover { color: var(--ink); }

/* Privacy policy page */
.policy-main { min-height: calc(100vh - 170px); padding: clamp(50px, 7vw, 80px) 0 100px; }
.policy-article { max-width: 820px; padding: clamp(28px, 5vw, 56px); border: 1px solid rgba(255, 255, 255, .9); border-radius: 32px; background: rgba(255, 255, 255, .82); box-shadow: 0 20px 50px rgba(31, 45, 90, .08); }
.policy-article[hidden] { display: none; }
.policy-intro { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.policy-intro .eyebrow { margin-bottom: 20px; }
.policy-intro h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.policy-lead { max-width: 680px; margin: 20px 0 0; color: var(--muted); font-size: 1.15rem; line-height: 1.65; }
.policy-updated { margin: 20px 0 0; color: var(--soft); font-size: .9rem; }
.policy-article section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.policy-article section:last-child { border-bottom: 0; padding-bottom: 0; }
.policy-article section h2 { margin: 0 0 12px; font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -.02em; }
.policy-article section p, .policy-article section li { color: #3f434c; font-size: 1rem; line-height: 1.72; }
.policy-article section p { margin: 0 0 12px; }
.policy-article section p:last-child { margin-bottom: 0; }
.policy-article section ul { margin: 0 0 14px; padding-left: 22px; }
.policy-article section li + li { margin-top: 7px; }
.policy-article section a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 1080px) {
  .card--color { grid-column: span 6; }
  .card--between, .card--fan, .card--motion, .card--private { grid-column: span 3; }
}
@media (max-width: 760px) {
  .site-header { top: 8px; gap: 12px; }
  .site-nav { display: none; }
  .language-switch { margin-left: auto; }
  .hero { padding-top: 44px; }
  .desktop { height: 400px; }
  .dock { gap: 5px; padding: 6px; border-radius: 17px; }
  .dock-slot { width: clamp(36px, 10vw, 46px); }
  .dock-divider { display: none; }
  .dock-slot--app-extra { display: none; }
  .fan-label { font-size: .72rem; padding: 5px 9px; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-template-columns: 1fr; }
  .card--color, .card--between, .card--fan, .card--motion, .card--private { grid-column: auto; }
  .card--color { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; transition-duration: .01ms !important; }
  .fan.is-open .fan-row { opacity: 1; }
}
