mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
feat(docs): streamline product and privacy pages
This commit is contained in:
@@ -1,8 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import Link from "next/link";
|
||||
import { BrandMark } from "@/components/brand";
|
||||
import { Icon, type IconName } from "@/components/icons";
|
||||
import { Reveal } from "@/components/reveal";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Privacy policy",
|
||||
@@ -10,13 +6,6 @@ export const metadata: Metadata = {
|
||||
"How VniDrop handles transfers, local app data, optional diagnostics, bug reports, and website visits.",
|
||||
};
|
||||
|
||||
const summaries: Array<{ icon: IconName; label: string; value: string }> = [
|
||||
{ icon: "devices", label: "Transfers", value: "Device to device" },
|
||||
{ icon: "globe", label: "Accounts", value: "None" },
|
||||
{ icon: "shield", label: "Diagnostics", value: "Optional" },
|
||||
{ icon: "folder", label: "Hosted file copy", value: "None" },
|
||||
];
|
||||
|
||||
const sections = [
|
||||
["scope", "Scope"],
|
||||
["transfers", "Transfers"],
|
||||
@@ -36,55 +25,13 @@ export default function PrivacyPage() {
|
||||
return (
|
||||
<main id="main-content" className="privacy-page">
|
||||
<section className="privacy-hero">
|
||||
<div className="privacy-hero-grid" aria-hidden="true" />
|
||||
<div className="page-shell privacy-hero-layout">
|
||||
<Reveal className="privacy-hero-copy">
|
||||
<Link className="privacy-back" href="/">
|
||||
<Icon name="arrow" />
|
||||
Back to VniDrop
|
||||
</Link>
|
||||
<span className="kicker">PRIVACY POLICY</span>
|
||||
<h1>Clear by design.<br />Specific by default.</h1>
|
||||
<p>
|
||||
This policy explains what moves between devices, what stays local, and what is sent
|
||||
only when you choose to share diagnostics or a bug report.
|
||||
</p>
|
||||
<div className="privacy-meta">
|
||||
<span>Effective July 16, 2026</span>
|
||||
<i />
|
||||
<span>Version 1.0</span>
|
||||
</div>
|
||||
</Reveal>
|
||||
<Reveal className="privacy-hero-art" delay={100}>
|
||||
<div className="privacy-art-orbit privacy-art-orbit-one" aria-hidden="true" />
|
||||
<div className="privacy-art-orbit privacy-art-orbit-two" aria-hidden="true" />
|
||||
<div className="privacy-mark-card" aria-hidden="true">
|
||||
<span className="privacy-mark-glow" />
|
||||
<BrandMark />
|
||||
<span className="privacy-mark-lock"><Icon name="lock" /></span>
|
||||
</div>
|
||||
<div className="privacy-data-pill privacy-data-pill-one" aria-hidden="true">
|
||||
<Icon name="file" /> CONTENT
|
||||
</div>
|
||||
<div className="privacy-data-pill privacy-data-pill-two" aria-hidden="true">
|
||||
<Icon name="shield" /> APPROVAL
|
||||
</div>
|
||||
<div className="privacy-data-pill privacy-data-pill-three" aria-hidden="true">
|
||||
<Icon name="verified" /> VERIFIED
|
||||
</div>
|
||||
</Reveal>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section className="privacy-summary" aria-label="Privacy summary">
|
||||
<div className="page-shell privacy-summary-grid">
|
||||
{summaries.map((summary, index) => (
|
||||
<Reveal key={summary.label} className="privacy-summary-card" delay={index * 60}>
|
||||
<span><Icon name={summary.icon} /></span>
|
||||
<small>{summary.label}</small>
|
||||
<strong>{summary.value}</strong>
|
||||
</Reveal>
|
||||
))}
|
||||
<div className="page-shell privacy-hero-inner">
|
||||
<h1>Privacy Policy</h1>
|
||||
<p>
|
||||
This policy explains what moves between devices, what stays local, and what is sent
|
||||
only when you choose to share diagnostics or a bug report.
|
||||
</p>
|
||||
<p className="privacy-meta">Effective July 16, 2026 · Version 1.0</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -93,30 +40,27 @@ export default function PrivacyPage() {
|
||||
<aside className="privacy-toc">
|
||||
<p>On this page</p>
|
||||
<nav aria-label="Privacy policy sections">
|
||||
{sections.map(([id, label], index) => (
|
||||
<a key={id} href={`#${id}`}>
|
||||
<span>{String(index + 1).padStart(2, "0")}</span>
|
||||
{label}
|
||||
</a>
|
||||
))}
|
||||
<ol>
|
||||
{sections.map(([id, label]) => (
|
||||
<li key={id}>
|
||||
<a href={`#${id}`}>{label}</a>
|
||||
</li>
|
||||
))}
|
||||
</ol>
|
||||
</nav>
|
||||
</aside>
|
||||
|
||||
<article className="privacy-document">
|
||||
<div className="privacy-callout">
|
||||
<Icon name="spark" />
|
||||
<div>
|
||||
<strong>The short version</strong>
|
||||
<p>
|
||||
VniDrop has no user accounts and does not upload your transfer to a VniDrop file
|
||||
store. Files travel over an authenticated, end-to-end encrypted connection.
|
||||
Product diagnostics are opt-in; a bug report is sent only when you submit one.
|
||||
</p>
|
||||
</div>
|
||||
<strong>The short version</strong>
|
||||
<p>
|
||||
VniDrop has no user accounts and does not upload your transfer to a VniDrop file
|
||||
store. Files travel over an authenticated, end-to-end encrypted connection.
|
||||
Product diagnostics are opt-in; a bug report is sent only when you submit one.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<section id="scope" className="policy-section">
|
||||
<span className="policy-number">01</span>
|
||||
<h2>Scope and who “VniDrop” means</h2>
|
||||
<p>
|
||||
This policy covers the official VniDrop website, the VniDrop applications for
|
||||
@@ -132,7 +76,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="transfers" className="policy-section">
|
||||
<span className="policy-number">02</span>
|
||||
<h2>What happens during a transfer</h2>
|
||||
<h3>File contents</h3>
|
||||
<p>
|
||||
@@ -159,7 +102,6 @@ export default function PrivacyPage() {
|
||||
encrypted transfer contents.
|
||||
</p>
|
||||
<div className="policy-note">
|
||||
<Icon name="shield" />
|
||||
<p>
|
||||
Approval is required by default. If the sender selects “Anyone with this transfer,”
|
||||
anyone holding the invitation may receive the files until sharing stops.
|
||||
@@ -168,7 +110,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="local-data" className="policy-section">
|
||||
<span className="policy-number">03</span>
|
||||
<h2>Information kept on your device</h2>
|
||||
<p>VniDrop stores the information needed to operate the app locally, including:</p>
|
||||
<ul>
|
||||
@@ -187,7 +128,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="diagnostics" className="policy-section">
|
||||
<span className="policy-number">04</span>
|
||||
<h2>Optional diagnostics and bug reports</h2>
|
||||
<h3>Automatic product diagnostics</h3>
|
||||
<p>
|
||||
@@ -217,7 +157,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="website" className="policy-section">
|
||||
<span className="policy-number">05</span>
|
||||
<h2>The VniDrop website</h2>
|
||||
<p>
|
||||
This website is a static product site. It does not provide an account, contact form,
|
||||
@@ -235,14 +174,25 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="permissions" className="policy-section">
|
||||
<span className="policy-number">06</span>
|
||||
<h2>Device permissions</h2>
|
||||
<div className="permission-grid">
|
||||
<div><Icon name="folder" /><strong>Files & folders</strong><p>Choose what to send and where received files are saved.</p></div>
|
||||
<div><Icon name="qr" /><strong>Camera / scanner</strong><p>Scan a QR invitation when you choose that receive method.</p></div>
|
||||
<div><Icon name="nfc" /><strong>NFC</strong><p>Read or write an invitation through a compatible NFC tag.</p></div>
|
||||
<div><Icon name="devices" /><strong>Network & notifications</strong><p>Connect peers and alert you to background receiver requests.</p></div>
|
||||
</div>
|
||||
<dl className="permission-list">
|
||||
<div>
|
||||
<dt>Files & folders</dt>
|
||||
<dd>Choose what to send and where received files are saved.</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>Camera / scanner</dt>
|
||||
<dd>Scan a QR invitation when you choose that receive method.</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>NFC</dt>
|
||||
<dd>Read or write an invitation through a compatible NFC tag.</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>Network & notifications</dt>
|
||||
<dd>Connect peers and alert you to background receiver requests.</dd>
|
||||
</div>
|
||||
</dl>
|
||||
<p>
|
||||
VniDrop requests a platform permission only for the related feature. On Android, QR
|
||||
scanning may be provided through Google Play services Code Scanner. Platform-level
|
||||
@@ -251,54 +201,100 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="providers" className="policy-section">
|
||||
<span className="policy-number">07</span>
|
||||
<h2>Infrastructure and external services</h2>
|
||||
<div className="provider-list">
|
||||
<dl className="provider-list">
|
||||
<div>
|
||||
<span>I</span>
|
||||
<div><strong>Iroh / public relay operators</strong><p>Device discovery, connection establishment, and encrypted relay fallback. Relays process connection metadata but cannot decrypt transfer contents.</p></div>
|
||||
<dt>Iroh / public relay operators</dt>
|
||||
<dd>
|
||||
Device discovery, connection establishment, and encrypted relay fallback.
|
||||
Relays process connection metadata but cannot decrypt transfer contents.
|
||||
</dd>
|
||||
</div>
|
||||
<div>
|
||||
<span>C</span>
|
||||
<div><strong>Cloudflare</strong><p>The project’s diagnostics design uses Cloudflare Workers, D1, and R2. Cloudflare also processes source IPs for request delivery and abuse controls.</p></div>
|
||||
<dt>Cloudflare</dt>
|
||||
<dd>
|
||||
The project’s diagnostics design uses Cloudflare Workers, D1, and R2.
|
||||
Cloudflare also processes source IPs for request delivery and abuse controls.
|
||||
</dd>
|
||||
</div>
|
||||
<div>
|
||||
<span>G</span>
|
||||
<div><strong>Google Play services</strong><p>May provide the QR code scanner on supported Android devices when you choose to scan an invitation.</p></div>
|
||||
<dt>Google Play services</dt>
|
||||
<dd>
|
||||
May provide the QR code scanner on supported Android devices when you choose to
|
||||
scan an invitation.
|
||||
</dd>
|
||||
</div>
|
||||
<div>
|
||||
<span>GH</span>
|
||||
<div><strong>GitHub</strong><p>Hosts the source repository, issue tracker, and external pages linked from this site. GitHub’s own privacy terms apply after you follow those links.</p></div>
|
||||
<dt>GitHub</dt>
|
||||
<dd>
|
||||
Hosts the source repository, issue tracker, and external pages linked from this
|
||||
site. GitHub’s own privacy terms apply after you follow those links.
|
||||
</dd>
|
||||
</div>
|
||||
</div>
|
||||
</dl>
|
||||
<p className="provider-links">
|
||||
Provider policies: {" "}
|
||||
<a href="https://services.iroh.computer/legal/privacy" target="_blank" rel="noreferrer">Iroh</a>, {" "}
|
||||
<a href="https://www.cloudflare.com/policies/privacy/" target="_blank" rel="noreferrer">Cloudflare</a>, {" "}
|
||||
<a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer">Google</a>, and {" "}
|
||||
<a href="https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" target="_blank" rel="noreferrer">GitHub</a>.
|
||||
Provider policies:{" "}
|
||||
<a
|
||||
href="https://services.iroh.computer/legal/privacy"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Iroh
|
||||
</a>
|
||||
,{" "}
|
||||
<a
|
||||
href="https://www.cloudflare.com/policies/privacy/"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Cloudflare
|
||||
</a>
|
||||
,{" "}
|
||||
<a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer">
|
||||
Google
|
||||
</a>
|
||||
, and{" "}
|
||||
<a
|
||||
href="https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
GitHub
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="retention" className="policy-section">
|
||||
<span className="policy-number">08</span>
|
||||
<h2>Retention and deletion</h2>
|
||||
<div className="retention-table" role="table" aria-label="Data retention periods">
|
||||
<div className="retention-row retention-head" role="row">
|
||||
<span role="columnheader">Data</span><span role="columnheader">Typical retention</span>
|
||||
</div>
|
||||
<div className="retention-row" role="row">
|
||||
<span role="cell">Transfer history and settings</span><span role="cell">Until you delete them, clear app data, or uninstall</span>
|
||||
</div>
|
||||
<div className="retention-row" role="row">
|
||||
<span role="cell">Pending local crash reports</span><span role="cell">Up to 30 days and 20 reports; deleted when diagnostics is disabled</span>
|
||||
</div>
|
||||
<div className="retention-row" role="row">
|
||||
<span role="cell">Server diagnostics and bug reports</span><span role="cell">The current project configuration is 90 days, with scheduled deletion</span>
|
||||
</div>
|
||||
<div className="retention-row" role="row">
|
||||
<span role="cell">Downloaded files</span><span role="cell">Until you delete them through your operating system</span>
|
||||
</div>
|
||||
<div className="retention-table-wrap">
|
||||
<table className="retention-table">
|
||||
<caption className="sr-only">Data retention periods</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Data</th>
|
||||
<th scope="col">Typical retention</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">Transfer history and settings</th>
|
||||
<td>Until you delete them, clear app data, or uninstall</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Pending local crash reports</th>
|
||||
<td>Up to 30 days and 20 reports; deleted when diagnostics is disabled</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Server diagnostics and bug reports</th>
|
||||
<td>The current project configuration is 90 days, with scheduled deletion</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Downloaded files</th>
|
||||
<td>Until you delete them through your operating system</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p>
|
||||
Operational backups, provider logs, and deletion backlogs may persist briefly beyond
|
||||
@@ -309,14 +305,22 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="choices" className="policy-section">
|
||||
<span className="policy-number">09</span>
|
||||
<h2>Your choices and rights</h2>
|
||||
<ul>
|
||||
<li>Enable or disable “Share diagnostics” in VniDrop settings.</li>
|
||||
<li>Submit a bug report only when you choose, omit contact information, and exclude logs.</li>
|
||||
<li>
|
||||
Submit a bug report only when you choose, omit contact information, and exclude
|
||||
logs.
|
||||
</li>
|
||||
<li>Approve or refuse each receiver, cancel a transfer, or stop sharing.</li>
|
||||
<li>Delete individual transfer history or clear completed, failed, and cancelled receive history.</li>
|
||||
<li>Delete downloaded files using your operating system, or clear all app data by uninstalling or resetting the app.</li>
|
||||
<li>
|
||||
Delete individual transfer history or clear completed, failed, and cancelled
|
||||
receive history.
|
||||
</li>
|
||||
<li>
|
||||
Delete downloaded files using your operating system, or clear all app data by
|
||||
uninstalling or resetting the app.
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Depending on where you live, privacy law may provide rights to access, correct,
|
||||
@@ -328,7 +332,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="security" className="policy-section">
|
||||
<span className="policy-number">10</span>
|
||||
<h2>Security</h2>
|
||||
<p>
|
||||
VniDrop uses authenticated end-to-end encrypted connections, content verification,
|
||||
@@ -338,13 +341,19 @@ export default function PrivacyPage() {
|
||||
updated, and stop sharing when a transfer is finished.
|
||||
</p>
|
||||
<p>
|
||||
Please report a suspected vulnerability through the private process in the {" "}
|
||||
<a href="https://github.com/vnidrop/vnidrop/blob/master/SECURITY.md" target="_blank" rel="noreferrer">VniDrop security policy</a>, not in a public issue.
|
||||
Please report a suspected vulnerability through the private process in the{" "}
|
||||
<a
|
||||
href="https://github.com/vnidrop/vnidrop/blob/master/SECURITY.md"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
VniDrop security policy
|
||||
</a>
|
||||
, not in a public issue.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="changes" className="policy-section">
|
||||
<span className="policy-number">11</span>
|
||||
<h2>Changes to this policy</h2>
|
||||
<p>
|
||||
VniDrop is in early development. Features and data practices may change. When this
|
||||
@@ -355,7 +364,6 @@ export default function PrivacyPage() {
|
||||
</section>
|
||||
|
||||
<section id="contact" className="policy-section policy-contact">
|
||||
<span className="policy-number">12</span>
|
||||
<h2>Contact</h2>
|
||||
<p>
|
||||
VniDrop is currently maintained as an open-source project and does not yet publish a
|
||||
@@ -364,13 +372,12 @@ export default function PrivacyPage() {
|
||||
credentials, or other sensitive information in a public issue.
|
||||
</p>
|
||||
<a
|
||||
className="button button-primary"
|
||||
className="privacy-contact-link"
|
||||
href="https://github.com/vnidrop/vnidrop/issues/new"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
>
|
||||
Contact the maintainers
|
||||
<Icon name="arrow" />
|
||||
</a>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
@@ -1,659 +1,288 @@
|
||||
.privacy-page {
|
||||
background: #fcfbfd;
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.privacy-hero {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 165px 0 105px;
|
||||
background:
|
||||
radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.2), transparent 30%),
|
||||
linear-gradient(180deg, #fdfcfe, #f7f3f9);
|
||||
padding: 158px 0 72px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.privacy-hero-grid {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(114, 84, 128, 0.055) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(114, 84, 128, 0.055) 1px, transparent 1px);
|
||||
background-size: 32px 32px;
|
||||
mask-image: linear-gradient(to bottom, black, transparent 90%);
|
||||
}
|
||||
|
||||
.privacy-hero-layout {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.72fr);
|
||||
align-items: center;
|
||||
gap: 95px;
|
||||
}
|
||||
|
||||
.privacy-back {
|
||||
.privacy-hero-inner {
|
||||
display: flex;
|
||||
width: max-content;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 42px;
|
||||
color: var(--ink-muted);
|
||||
font-size: 12px;
|
||||
font-weight: 650;
|
||||
}
|
||||
|
||||
.privacy-hero-copy > .kicker {
|
||||
display: block;
|
||||
width: max-content;
|
||||
.privacy-hero h1 {
|
||||
margin-bottom: 22px;
|
||||
font-size: clamp(3.25rem, 5.2vw, 4.5rem);
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.055em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.privacy-back svg {
|
||||
width: 16px;
|
||||
transform: rotate(180deg);
|
||||
transition: transform 180ms ease;
|
||||
}
|
||||
|
||||
.privacy-back:hover {
|
||||
color: var(--brand-600);
|
||||
}
|
||||
|
||||
.privacy-back:hover svg {
|
||||
transform: rotate(180deg) translateX(4px);
|
||||
}
|
||||
|
||||
.privacy-hero-copy h1 {
|
||||
margin: 0 0 25px;
|
||||
font-size: clamp(3.7rem, 6.2vw, 6.5rem);
|
||||
font-weight: 760;
|
||||
letter-spacing: -0.075em;
|
||||
line-height: 0.98;
|
||||
}
|
||||
|
||||
.privacy-hero-copy > p {
|
||||
max-width: 680px;
|
||||
margin-bottom: 28px;
|
||||
.privacy-hero-inner > p:not(.privacy-meta) {
|
||||
max-width: 640px;
|
||||
margin-bottom: 24px;
|
||||
color: var(--ink-soft);
|
||||
font-size: 18px;
|
||||
line-height: 1.72;
|
||||
font-size: 16px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.privacy-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 9px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.07em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.privacy-meta i {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
border-radius: 50%;
|
||||
background: var(--brand-500);
|
||||
}
|
||||
|
||||
.privacy-hero-art {
|
||||
position: relative;
|
||||
min-height: 435px;
|
||||
}
|
||||
|
||||
.privacy-art-orbit {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
border: 1px solid rgba(168, 85, 247, 0.18);
|
||||
border-radius: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.privacy-art-orbit::before,
|
||||
.privacy-art-orbit::after {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
background: var(--brand-400);
|
||||
content: "";
|
||||
}
|
||||
|
||||
.privacy-art-orbit-one {
|
||||
width: 420px;
|
||||
height: 420px;
|
||||
animation: privacy-orbit 28s linear infinite;
|
||||
}
|
||||
|
||||
.privacy-art-orbit-one::before {
|
||||
top: 11%;
|
||||
left: 16%;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.09);
|
||||
}
|
||||
|
||||
.privacy-art-orbit-one::after {
|
||||
right: 8%;
|
||||
bottom: 25%;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.privacy-art-orbit-two {
|
||||
width: 295px;
|
||||
height: 295px;
|
||||
border-style: dashed;
|
||||
animation: privacy-orbit 21s linear infinite reverse;
|
||||
}
|
||||
|
||||
.privacy-art-orbit-two::before {
|
||||
top: 48%;
|
||||
left: -4px;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
}
|
||||
|
||||
.privacy-art-orbit-two::after {
|
||||
top: 4%;
|
||||
right: 22%;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.privacy-mark-card {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
display: grid;
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
place-items: center;
|
||||
border: 1px solid #dfd2e6;
|
||||
border-radius: 45px;
|
||||
background: rgba(255, 255, 255, 0.91);
|
||||
box-shadow: 0 35px 90px rgba(65, 30, 80, 0.17);
|
||||
transform: translate(-50%, -50%) rotate(-3deg);
|
||||
backdrop-filter: blur(14px);
|
||||
}
|
||||
|
||||
.privacy-mark-card > img {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
width: 112px;
|
||||
height: 112px;
|
||||
}
|
||||
|
||||
.privacy-mark-glow {
|
||||
position: absolute;
|
||||
inset: -35px;
|
||||
border-radius: 50%;
|
||||
background: rgba(168, 85, 247, 0.2);
|
||||
filter: blur(42px);
|
||||
animation: privacy-glow 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.privacy-mark-lock {
|
||||
position: absolute;
|
||||
right: -12px;
|
||||
bottom: -10px;
|
||||
display: grid;
|
||||
width: 49px;
|
||||
height: 49px;
|
||||
place-items: center;
|
||||
border: 4px solid #f8f4fa;
|
||||
border-radius: 15px;
|
||||
background: var(--ink);
|
||||
box-shadow: 0 12px 30px rgba(42, 25, 50, 0.2);
|
||||
color: white;
|
||||
transform: rotate(3deg);
|
||||
}
|
||||
|
||||
.privacy-mark-lock svg {
|
||||
width: 21px;
|
||||
}
|
||||
|
||||
.privacy-data-pill {
|
||||
position: absolute;
|
||||
z-index: 4;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
padding: 8px 11px;
|
||||
border: 1px solid #dfd3e4;
|
||||
border-radius: 10px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
box-shadow: 0 12px 35px rgba(58, 33, 69, 0.11);
|
||||
color: var(--brand-600);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 8px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.07em;
|
||||
backdrop-filter: blur(10px);
|
||||
animation: privacy-pill 5s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.privacy-data-pill svg {
|
||||
width: 15px;
|
||||
}
|
||||
|
||||
.privacy-data-pill-one {
|
||||
top: 11%;
|
||||
left: 4%;
|
||||
transform: rotate(-5deg);
|
||||
}
|
||||
|
||||
.privacy-data-pill-two {
|
||||
top: 29%;
|
||||
right: -2%;
|
||||
transform: rotate(4deg);
|
||||
animation-delay: -2s;
|
||||
}
|
||||
|
||||
.privacy-data-pill-three {
|
||||
bottom: 6%;
|
||||
left: 7%;
|
||||
transform: rotate(3deg);
|
||||
animation-delay: -3.5s;
|
||||
}
|
||||
|
||||
.privacy-summary {
|
||||
position: relative;
|
||||
z-index: 4;
|
||||
margin-top: -37px;
|
||||
}
|
||||
|
||||
.privacy-summary-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
overflow: hidden;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 22px;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
box-shadow: var(--shadow-lg);
|
||||
backdrop-filter: blur(12px);
|
||||
}
|
||||
|
||||
.privacy-summary-card {
|
||||
display: grid;
|
||||
min-height: 151px;
|
||||
align-content: center;
|
||||
padding: 25px 27px;
|
||||
}
|
||||
|
||||
.privacy-summary-card + .privacy-summary-card {
|
||||
border-left: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.privacy-summary-card > span {
|
||||
display: grid;
|
||||
width: 37px;
|
||||
height: 37px;
|
||||
margin-bottom: 17px;
|
||||
place-items: center;
|
||||
border-radius: 10px;
|
||||
background: var(--brand-100);
|
||||
color: var(--brand-600);
|
||||
}
|
||||
|
||||
.privacy-summary-card svg {
|
||||
width: 19px;
|
||||
}
|
||||
|
||||
.privacy-summary-card small {
|
||||
margin-bottom: 1px;
|
||||
color: var(--ink-muted);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 8px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.07em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.privacy-summary-card strong {
|
||||
font-family: var(--font-display);
|
||||
font-size: 16px;
|
||||
letter-spacing: -0.02em;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.privacy-document-section {
|
||||
padding: 135px 0 155px;
|
||||
padding: 80px 0 144px;
|
||||
}
|
||||
|
||||
.privacy-document-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 210px minmax(0, 780px);
|
||||
grid-template-areas: "article toc";
|
||||
grid-template-columns: minmax(0, 720px) 220px;
|
||||
justify-content: center;
|
||||
gap: 105px;
|
||||
gap: 92px;
|
||||
}
|
||||
|
||||
.privacy-document {
|
||||
grid-area: article;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.privacy-toc {
|
||||
position: sticky;
|
||||
top: 112px;
|
||||
top: 108px;
|
||||
grid-area: toc;
|
||||
align-self: start;
|
||||
padding-left: 24px;
|
||||
border-left: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.privacy-toc > p {
|
||||
margin-bottom: 17px;
|
||||
margin-bottom: 14px;
|
||||
color: var(--ink);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 9px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.09em;
|
||||
text-transform: uppercase;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.privacy-toc nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.privacy-toc ol {
|
||||
display: grid;
|
||||
gap: 1px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.privacy-toc a {
|
||||
display: grid;
|
||||
grid-template-columns: 26px 1fr;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 7px 0;
|
||||
color: #79707e;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
transition: color 160ms ease, transform 160ms ease;
|
||||
display: block;
|
||||
padding: 5px 0;
|
||||
color: var(--ink-muted);
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
transition: color 160ms ease;
|
||||
}
|
||||
|
||||
.privacy-toc a:hover {
|
||||
color: var(--brand-600);
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
.privacy-toc a span {
|
||||
color: #b5aabb;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.privacy-document {
|
||||
min-width: 0;
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.privacy-callout {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 17px;
|
||||
margin-bottom: 75px;
|
||||
padding: 25px;
|
||||
border: 1px solid #dfd0e7;
|
||||
border-radius: 17px;
|
||||
background: linear-gradient(145deg, #fbf6ff, #f7f1fa);
|
||||
}
|
||||
|
||||
.privacy-callout > svg {
|
||||
width: 24px;
|
||||
color: var(--brand-600);
|
||||
margin-bottom: 64px;
|
||||
padding: 0 0 40px 20px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
border-left: 2px solid var(--ink);
|
||||
}
|
||||
|
||||
.privacy-callout strong {
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: 8px;
|
||||
font-family: var(--font-display);
|
||||
font-size: 14px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.privacy-callout p {
|
||||
margin: 0;
|
||||
color: var(--ink-soft);
|
||||
font-size: 12px;
|
||||
line-height: 1.7;
|
||||
font-size: 15px;
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
.policy-section {
|
||||
position: relative;
|
||||
scroll-margin-top: 110px;
|
||||
padding: 0 0 72px;
|
||||
scroll-margin-top: 104px;
|
||||
padding-bottom: 56px;
|
||||
}
|
||||
|
||||
.policy-section + .policy-section {
|
||||
padding-top: 3px;
|
||||
padding-top: 56px;
|
||||
border-top: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.policy-number {
|
||||
display: inline-flex;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
color: var(--brand-600);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 9px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.policy-section + .policy-section .policy-number {
|
||||
margin-top: 65px;
|
||||
}
|
||||
|
||||
.policy-section h2 {
|
||||
margin-bottom: 27px;
|
||||
font-size: clamp(2rem, 3.3vw, 3.15rem);
|
||||
font-weight: 720;
|
||||
letter-spacing: -0.052em;
|
||||
line-height: 1.08;
|
||||
margin-bottom: 24px;
|
||||
font-size: clamp(1.75rem, 2.7vw, 2rem);
|
||||
font-weight: 680;
|
||||
letter-spacing: -0.035em;
|
||||
line-height: 1.22;
|
||||
}
|
||||
|
||||
.policy-section h3 {
|
||||
margin: 34px 0 10px;
|
||||
font-size: 16px;
|
||||
font-weight: 720;
|
||||
margin: 32px 0 10px;
|
||||
font-size: 19px;
|
||||
font-weight: 680;
|
||||
letter-spacing: -0.018em;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.policy-section p,
|
||||
.policy-section li {
|
||||
color: #514956;
|
||||
font-size: 14px;
|
||||
line-height: 1.82;
|
||||
.policy-section li,
|
||||
.permission-list dd,
|
||||
.provider-list dd {
|
||||
color: var(--ink-soft);
|
||||
font-size: 15px;
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
.policy-section p {
|
||||
margin-bottom: 19px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.policy-section ul {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
margin: 17px 0 22px;
|
||||
gap: 7px;
|
||||
margin: 18px 0 24px;
|
||||
padding-left: 22px;
|
||||
}
|
||||
|
||||
.policy-section li::marker {
|
||||
color: var(--brand-500);
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.policy-section code {
|
||||
padding: 2px 6px;
|
||||
border: 1px solid #e7dceb;
|
||||
border-radius: 5px;
|
||||
background: #f8f3fa;
|
||||
color: var(--brand-700);
|
||||
padding: 2px 5px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 4px;
|
||||
background: var(--paper-warm);
|
||||
color: var(--ink);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.86em;
|
||||
font-size: 0.88em;
|
||||
}
|
||||
|
||||
.policy-section a:not(.button) {
|
||||
.policy-section a,
|
||||
.privacy-contact-link {
|
||||
color: var(--brand-700);
|
||||
font-weight: 650;
|
||||
font-weight: 620;
|
||||
text-decoration: underline;
|
||||
text-decoration-color: rgba(132, 47, 238, 0.28);
|
||||
text-decoration-color: rgba(111, 39, 233, 0.34);
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
|
||||
.policy-note {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 13px;
|
||||
margin-top: 28px;
|
||||
padding: 18px;
|
||||
border: 1px solid #e2d6e8;
|
||||
border-radius: 13px;
|
||||
background: #faf7fb;
|
||||
.policy-section a:hover,
|
||||
.privacy-contact-link:hover {
|
||||
text-decoration-color: currentColor;
|
||||
}
|
||||
|
||||
.policy-note svg {
|
||||
width: 21px;
|
||||
color: var(--brand-600);
|
||||
.policy-note {
|
||||
margin-top: 28px;
|
||||
padding: 18px 20px;
|
||||
border-left: 2px solid var(--line-strong);
|
||||
background: var(--paper-warm);
|
||||
}
|
||||
|
||||
.policy-note p {
|
||||
margin: 0;
|
||||
color: #5e5264;
|
||||
font-size: 12px;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.permission-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.permission-grid > div {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
align-items: center;
|
||||
gap: 5px 12px;
|
||||
padding: 17px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 13px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.permission-grid svg {
|
||||
width: 21px;
|
||||
grid-row: 1 / 3;
|
||||
color: var(--brand-600);
|
||||
}
|
||||
|
||||
.permission-grid strong {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.permission-grid p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
font-size: 9px;
|
||||
line-height: 1.5;
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.permission-list,
|
||||
.provider-list {
|
||||
display: grid;
|
||||
gap: 9px;
|
||||
margin: 28px 0;
|
||||
}
|
||||
|
||||
.provider-list > div {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 15px;
|
||||
padding: 17px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 13px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.provider-list > div > span {
|
||||
display: grid;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
place-items: center;
|
||||
border-radius: 10px;
|
||||
background: var(--brand-100);
|
||||
color: var(--brand-700);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 9px;
|
||||
font-weight: 850;
|
||||
}
|
||||
|
||||
.provider-list strong {
|
||||
display: block;
|
||||
margin-bottom: 3px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.provider-list p {
|
||||
margin: 0;
|
||||
color: var(--ink-muted);
|
||||
font-size: 10px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.provider-links {
|
||||
font-size: 11px !important;
|
||||
}
|
||||
|
||||
.retention-table {
|
||||
overflow: hidden;
|
||||
margin: 28px 0;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 14px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.retention-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(190px, 0.72fr) 1.28fr;
|
||||
}
|
||||
|
||||
.retention-row + .retention-row {
|
||||
border-top: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.retention-row span {
|
||||
padding: 14px 16px;
|
||||
color: var(--ink-soft);
|
||||
font-size: 10px;
|
||||
.permission-list > div,
|
||||
.provider-list > div {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(150px, 0.42fr) 1fr;
|
||||
gap: 24px;
|
||||
padding: 17px 0;
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.permission-list dt,
|
||||
.provider-list dt {
|
||||
color: var(--ink);
|
||||
font-size: 14px;
|
||||
font-weight: 680;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.retention-row span + span {
|
||||
border-left: 1px solid var(--line);
|
||||
.permission-list dd,
|
||||
.provider-list dd {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.provider-links {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
|
||||
.retention-table-wrap {
|
||||
overflow-x: auto;
|
||||
margin: 28px 0;
|
||||
border-top: 1px solid var(--line);
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.retention-table {
|
||||
width: 100%;
|
||||
min-width: 600px;
|
||||
border-collapse: collapse;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.retention-table th,
|
||||
.retention-table td {
|
||||
padding: 15px 16px 15px 0;
|
||||
border-bottom: 1px solid var(--line);
|
||||
color: var(--ink-soft);
|
||||
font-size: 13px;
|
||||
font-weight: 400;
|
||||
line-height: 1.6;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.retention-table th:first-child {
|
||||
width: 38%;
|
||||
}
|
||||
|
||||
.retention-table thead th {
|
||||
color: var(--ink-muted);
|
||||
}
|
||||
|
||||
.retention-head {
|
||||
background: #f4eff6;
|
||||
}
|
||||
|
||||
.retention-head span {
|
||||
color: var(--ink) !important;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 8px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.07em;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.retention-table tbody th {
|
||||
color: var(--ink);
|
||||
font-weight: 620;
|
||||
}
|
||||
|
||||
.policy-contact {
|
||||
overflow: hidden;
|
||||
padding: 54px !important;
|
||||
border: 1px solid #dfd0e7 !important;
|
||||
border-radius: 21px;
|
||||
background:
|
||||
radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.14), transparent 35%),
|
||||
linear-gradient(145deg, #fbf7fe, #f6f0f9);
|
||||
}
|
||||
|
||||
.policy-contact .policy-number {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
.policy-contact h2 {
|
||||
margin-bottom: 16px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.policy-contact p {
|
||||
max-width: 620px;
|
||||
margin-bottom: 26px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.policy-contact .button {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
.privacy-contact-link::after {
|
||||
margin-left: 5px;
|
||||
content: "↗";
|
||||
}
|
||||
|
||||
@@ -1,156 +1,89 @@
|
||||
@keyframes privacy-orbit {
|
||||
from { transform: translate(-50%, -50%) rotate(0); }
|
||||
to { transform: translate(-50%, -50%) rotate(360deg); }
|
||||
}
|
||||
|
||||
@keyframes privacy-glow {
|
||||
0%, 100% { opacity: 0.5; transform: scale(0.84); }
|
||||
50% { opacity: 1; transform: scale(1.14); }
|
||||
}
|
||||
|
||||
@keyframes privacy-pill {
|
||||
0%, 100% { margin-top: 0; }
|
||||
50% { margin-top: -8px; }
|
||||
}
|
||||
|
||||
@media (max-width: 1050px) {
|
||||
.privacy-hero-layout {
|
||||
grid-template-columns: minmax(0, 1fr) 390px;
|
||||
gap: 45px;
|
||||
}
|
||||
|
||||
.privacy-hero-copy h1 {
|
||||
font-size: clamp(3.6rem, 6.8vw, 5.5rem);
|
||||
}
|
||||
|
||||
@media (max-width: 940px) {
|
||||
.privacy-document-layout {
|
||||
grid-template-columns: 180px minmax(0, 720px);
|
||||
gap: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 820px) {
|
||||
.privacy-hero {
|
||||
padding-top: 135px;
|
||||
}
|
||||
|
||||
.privacy-hero-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.privacy-hero-copy {
|
||||
max-width: 690px;
|
||||
}
|
||||
|
||||
.privacy-hero-art {
|
||||
width: min(100%, 520px);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.privacy-summary-grid {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
|
||||
.privacy-summary-card:nth-child(3) {
|
||||
border-top: 1px solid var(--line);
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.privacy-summary-card:nth-child(4) {
|
||||
border-top: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.privacy-document-layout {
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-areas:
|
||||
"toc"
|
||||
"article";
|
||||
grid-template-columns: minmax(0, 720px);
|
||||
gap: 56px;
|
||||
}
|
||||
|
||||
.privacy-toc {
|
||||
position: relative;
|
||||
top: auto;
|
||||
padding-bottom: 25px;
|
||||
position: static;
|
||||
padding: 0 0 28px;
|
||||
border-bottom: 1px solid var(--line);
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.privacy-toc nav {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
.privacy-toc ol {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
column-gap: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 560px) {
|
||||
@media (max-width: 640px) {
|
||||
.privacy-hero {
|
||||
padding: 120px 0 90px;
|
||||
padding: 122px 0 54px;
|
||||
}
|
||||
|
||||
.privacy-back {
|
||||
margin-bottom: 32px;
|
||||
.privacy-hero h1 {
|
||||
margin-bottom: 18px;
|
||||
font-size: clamp(2.55rem, 12vw, 3.4rem);
|
||||
}
|
||||
|
||||
.privacy-hero-copy h1 {
|
||||
font-size: clamp(3rem, 15vw, 4.5rem);
|
||||
}
|
||||
|
||||
.privacy-hero-copy > p {
|
||||
.privacy-hero-inner > p:not(.privacy-meta) {
|
||||
font-size: 15px;
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.privacy-hero-art {
|
||||
min-height: 360px;
|
||||
transform: scale(0.86);
|
||||
}
|
||||
|
||||
.privacy-summary-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.privacy-summary-card {
|
||||
min-height: 120px;
|
||||
}
|
||||
|
||||
.privacy-summary-card + .privacy-summary-card {
|
||||
border-top: 1px solid var(--line);
|
||||
border-left: 0;
|
||||
.privacy-meta {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.privacy-document-section {
|
||||
padding: 95px 0 105px;
|
||||
padding: 56px 0 96px;
|
||||
}
|
||||
|
||||
.privacy-toc nav {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
.privacy-document-layout {
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.privacy-callout {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.policy-section h2 {
|
||||
font-size: 2.25rem;
|
||||
}
|
||||
|
||||
.policy-section p,
|
||||
.policy-section li {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.permission-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.retention-row {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.retention-row span + span {
|
||||
padding-top: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.retention-head {
|
||||
.privacy-toc {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.policy-contact {
|
||||
padding: 35px 24px !important;
|
||||
.privacy-callout {
|
||||
margin-bottom: 48px;
|
||||
padding: 0 0 32px 16px;
|
||||
}
|
||||
|
||||
.privacy-callout p,
|
||||
.policy-section p,
|
||||
.policy-section li,
|
||||
.permission-list dd,
|
||||
.provider-list dd {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.policy-section {
|
||||
padding-bottom: 44px;
|
||||
}
|
||||
|
||||
.policy-section + .policy-section {
|
||||
padding-top: 44px;
|
||||
}
|
||||
|
||||
.policy-section h2 {
|
||||
font-size: 1.65rem;
|
||||
}
|
||||
|
||||
.policy-section h3 {
|
||||
margin-top: 28px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.permission-list > div,
|
||||
.provider-list > div {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user