/* Veyro marketing/legal site. Light theme — distinct from app's Graphite dark. Mobile-first (~80% of privacy policy taps will be from phones after a magic link redirect). DEV-056. */ :root { --color-text: #0F1115; --color-text-muted: #5A6068; --color-bg: #FFFFFF; --color-bg-soft: #F5F7F8; --color-border: #E3E6E8; --color-primary: #4FB477; --color-primary-soft: rgba(79, 180, 119, 0.14); } * { box-sizing: border-box; } html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--color-text); background-color: var(--color-bg); } main { max-width: 720px; margin: 0 auto; padding: 32px 20px 80px; } header.site-header { border-bottom: 1px solid var(--color-border); padding: 16px 0; } header.site-header .container { max-width: 720px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; } header.site-header .brand { font-size: 18px; font-weight: 700; color: var(--color-text); text-decoration: none; letter-spacing: -0.01em; } header.site-header .brand .brand-mark { color: var(--color-primary); } header.site-header nav a { margin-left: 20px; color: var(--color-text-muted); text-decoration: none; font-size: 14px; } header.site-header nav a:hover { color: var(--color-text); } h1 { font-size: 32px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 12px; } h2 { font-size: 22px; font-weight: 600; line-height: 1.3; margin: 32px 0 8px; } h3 { font-size: 18px; font-weight: 600; line-height: 1.4; margin: 24px 0 6px; } p, ul, ol { margin: 0 0 16px; } ul, ol { padding-left: 24px; } li { margin-bottom: 6px; } a { color: var(--color-primary); text-decoration: underline; text-decoration-color: rgba(79, 180, 119, 0.4); text-underline-offset: 2px; } a:hover { text-decoration-color: var(--color-primary); } .lead { font-size: 18px; color: var(--color-text-muted); margin-bottom: 24px; } .meta { color: var(--color-text-muted); font-size: 14px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); } .meta strong { color: var(--color-text); } .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 32px; } .cta-row .cta { display: inline-block; padding: 12px 18px; background: var(--color-primary-soft); border: 1px solid rgba(79, 180, 119, 0.28); border-radius: 12px; color: var(--color-text); text-decoration: none; font-weight: 500; font-size: 15px; } .cta-row .cta:hover { background: rgba(79, 180, 119, 0.2); } .cta-row .cta[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; } footer.site-footer { border-top: 1px solid var(--color-border); padding: 24px 20px 40px; color: var(--color-text-muted); font-size: 14px; text-align: center; } footer.site-footer a { color: var(--color-text-muted); margin: 0 10px; } @media (max-width: 540px) { h1 { font-size: 28px; } h2 { font-size: 20px; } main { padding: 24px 18px 60px; } }