Files
openwork/ee/apps/landing/app/globals.css
Jan Carbonell 6cfe7fd2b9 docs(landing): add privacy policy and terms of use pages (#1359)
* docs(landing): add privacy policy and terms of use pages

- Add comprehensive privacy policy covering Desktop App (no tracking),
  Cloud Service (operational telemetry only), and Website (PostHog analytics)
- Add terms of use with AI output disclaimer, export controls, beta features,
  feedback, publicity rights, and JAMS arbitration
- Create reusable LegalPage component and shared parser for .txt legal docs
- Add Privacy and Terms links to site footer
- Both pages render with consistent styling, bold definition terms,
  subheadings for tracking technology categories, and clickable email links

* chore: add .turbo to .gitignore

* fix(landing): improve legal page parser for terms readability

- Detect definition blocks ("Term" means ...) and render as bulleted
  list with bold terms
- Bold ALL CAPS text (warranty disclaimers, arbitration notices, etc.)
- Make URLs clickable links alongside emails
- Distinguish h2 headings (questions, longer titles) from h3 subheadings
  (short section names like "Our IP", "Billing", "Usage Data")

* fix(landing): improve subscription termination wording and URL parsing

- Clarify recurring billing cancellation: users can cancel via account
  settings first, contact email as fallback at our discretion
- Fix URL regex to avoid capturing trailing periods/punctuation

* fix(landing): clarify subscription cancellation — email always accepted, late refunds at our discretion

* docs(landing): convert privacy policy and terms of use to markdown

- Add proper heading hierarchy (# h1, ## h2, ### h3)
- Bold definition terms, ALL CAPS legal clauses, and sub-processor names
- Convert restriction items into bullet points
- Make all URLs and emails clickable markdown links
- Use blockquote for the API key disclaimer note
- Structure tracking technologies as proper subheadings

* refactor(landing): use markdown for legal pages, no new dependencies

- Rename .txt to .md with proper markdown formatting
- Replace txt parser with lean render-markdown.tsx (zero deps, ~120 lines)
- LegalPage handles full page shell — page.tsx files are now 8 lines each
- Add legal-prose CSS for consistent typography
- Delete parse-legal-doc.tsx
2026-04-05 01:15:17 -06:00

401 lines
8.9 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "FK Raster Roman Compact Smooth";
src: local("FK Raster Roman Compact Smooth"),
local("FKRasterRomanCompact-Smooth"),
url("/fonts/FKRasterRomanCompact-Smooth.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}
:root {
color-scheme: light;
}
html {
scroll-behavior: smooth;
}
body {
min-height: 100vh;
font-family: var(--font-sans), ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #f6f9fc;
color: #011627;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mono {
font-family: var(--font-mono), ui-monospace, SFMono-Regular, SFMono-Regular,
Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-pixel,
.pixel-text {
font-family: "FK Raster Roman Compact Smooth", sans-serif !important;
font-weight: 400;
-webkit-font-smoothing: auto;
text-rendering: optimizeSpeed;
}
/* Legal page prose — styles MDX-rendered markdown for privacy/terms pages */
.legal-prose h1 {
font-size: 2.25rem;
font-weight: 500;
line-height: 1.05;
letter-spacing: -0.025em;
margin-bottom: 1rem;
}
@media (min-width: 768px) {
.legal-prose h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
.legal-prose h1 { font-size: 3.75rem; }
}
.legal-prose h1 + p:first-of-type {
color: #6b7280;
margin-bottom: 3rem;
}
.legal-prose h2 {
font-size: 1.25rem;
font-weight: 600;
letter-spacing: -0.025em;
color: #011627;
margin-top: 2.5rem;
margin-bottom: 0.75rem;
}
.legal-prose h3 {
font-size: 1rem;
font-weight: 600;
color: #011627;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
.legal-prose p {
font-size: 15px;
line-height: 1.7;
color: #374151;
margin-bottom: 1rem;
}
.legal-prose ul,
.legal-prose ol {
font-size: 15px;
line-height: 1.7;
color: #374151;
padding-left: 1.25rem;
margin-bottom: 1rem;
list-style-type: disc;
}
.legal-prose ol { list-style-type: decimal; }
.legal-prose li { margin-bottom: 0.375rem; }
.legal-prose li strong { color: #011627; }
.legal-prose a {
color: #011627;
text-decoration: underline;
text-underline-offset: 2px;
}
.legal-prose a:hover { opacity: 0.7; }
.legal-prose blockquote {
border-left: 3px solid #cbd5e1;
padding-left: 1rem;
margin: 1rem 0;
color: #4b5563;
font-size: 15px;
line-height: 1.7;
}
.legal-prose strong { font-weight: 600; }
.legal-prose hr {
border: 0;
border-top: 1px solid rgba(148, 163, 184, 0.2);
margin: 2.5rem 0;
}
.content-max-width {
max-width: 64rem; /* matches Tailwind max-w-5xl used by the nav */
margin-left: auto;
margin-right: auto;
}
.landing-shell {
background: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(255, 255, 255, 0.8);
box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
}
.landing-shell-soft {
background: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(255, 255, 255, 0.6);
}
.landing-chip {
background: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(229, 231, 235, 1);
box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.18);
}
.landing-canvas {
background: #ece8de;
border: 1px solid rgba(148, 163, 184, 0.18);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.doc-button {
background-color: #011627;
color: #ffffff;
min-height: 48px;
padding: 0.75rem 1.5rem;
border-radius: 9999px;
font-size: 16px;
font-weight: 400;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
box-shadow: 0 14px 32px -16px rgba(1, 22, 39, 0.55);
transition:
color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
background-color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
border-color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
box-shadow 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
transform 0.3s cubic-bezier(0.31, 0.325, 0, 0.92);
will-change: transform, background-color, box-shadow;
}
.doc-button:hover {
background-color: rgb(110, 110, 110);
transform: translateY(-1px);
box-shadow:
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px,
rgba(0, 0, 0, 0.04) 0px 1px 2px 0px,
rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}
.secondary-button {
min-height: 48px;
padding-left: 20px;
padding-right: 20px;
border-radius: 9999px;
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
display: inline-flex;
align-items: center;
justify-content: center;
white-space: nowrap;
border: 0;
box-shadow:
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px,
rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
transition:
color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
background-color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
border-color 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
box-shadow 0.3s cubic-bezier(0.31, 0.325, 0, 0.92),
transform 0.3s cubic-bezier(0.31, 0.325, 0, 0.92);
}
.secondary-button:hover {
background-color: rgb(242, 242, 242);
color: rgb(0, 0, 0);
box-shadow:
rgba(0, 0, 0, 0.06) 0px 0px 0px 1px,
rgba(0, 0, 0, 0.04) 0px 1px 2px 0px,
rgba(0, 0, 0, 0.04) 0px 2px 4px 0px;
}
.step-circle {
width: 24px;
height: 24px;
background: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 999px;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
color: #64748b;
}
hr {
border: 0;
border-top: 1px solid rgba(148, 163, 184, 0.2);
margin: 40px 0;
}
.feature-card {
border: 1px solid rgba(148, 163, 184, 0.16);
padding: 24px;
border-radius: 2rem;
transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 20px 60px -24px rgba(15, 23, 42, 0.18);
}
.feature-card:hover {
border-color: rgba(203, 213, 225, 0.9);
transform: translateY(-2px);
box-shadow: 0 24px 60px -24px rgba(15, 23, 42, 0.2);
}
.alpha-tag {
background: #fffbeb;
color: #92400e;
border: 1px solid #fef3c7;
padding: 2px 6px;
border-radius: 4px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.word-cycle {
display: inline-block;
position: relative;
vertical-align: top;
overflow: hidden;
height: 1.5em;
}
.word-cycle span {
display: block;
animation: cycle 4s infinite ease-in-out;
color: #111111;
font-weight: 600;
}
@keyframes cycle {
0%,
45% {
transform: translateY(0);
}
50%,
95% {
transform: translateY(-1.5em);
}
100% {
transform: translateY(0);
}
}
.animate-fade-up {
animation: fade-up 600ms ease both;
}
.den-carbon-window {
background:
radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
radial-gradient(circle at bottom right, rgba(226, 232, 240, 0.8), transparent 38%),
linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
border: 1px solid rgba(148, 163, 184, 0.18);
box-shadow:
0 24px 60px -32px rgba(15, 23, 42, 0.22),
inset 0 1px 0 rgba(255, 255, 255, 0.72);
backdrop-filter: blur(22px);
}
.den-carbon-titlebar {
background: rgba(255, 255, 255, 0.94);
border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.den-source-pill {
display: inline-flex;
align-items: center;
border-radius: 9999px;
border: 1px solid rgba(148, 163, 184, 0.18);
background: rgba(248, 250, 252, 0.92);
color: #64748b;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
padding: 0.2rem 0.55rem;
text-transform: uppercase;
}
.den-running-dot {
animation: den-pulse 1.8s ease-out infinite;
box-shadow: 0 0 0 rgba(34, 197, 94, 0.38);
}
@keyframes den-pulse {
0% {
opacity: 0.7;
transform: scale(0.92);
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.34);
}
55% {
opacity: 1;
transform: scale(1.08);
box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
}
100% {
opacity: 0.75;
transform: scale(0.94);
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
}
}
@keyframes ow-blob-pulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.4); opacity: 0.8; }
}
.ow-status-pill {
border-radius: 999px;
padding: 4px 10px;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: all 0.3s cubic-bezier(0.31, 0.325, 0, 0.92);
}
.ow-task-chip {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.94);
border: 1px solid #cbd5e1;
border-radius: 999px;
padding: 6px 10px;
font-size: 10px;
font-family: var(--font-mono);
font-weight: 600;
color: #334155;
box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.22);
z-index: 10;
white-space: nowrap;
}
@keyframes fade-up {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
.word-cycle span,
.animate-fade-up,
.den-running-dot,
.doc-button,
.secondary-button,
.feature-card {
animation: none;
transition: none;
}
html {
scroll-behavior: auto;
}
}