-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
404 lines (355 loc) · 12.2 KB
/
privacy-policy.html
File metadata and controls
404 lines (355 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Abort the Supreme Court – Privacy Policy</title>
<style>
/* ===== Base / Reset ===== */
:root {
--brand:#ed0d92;
--bg:#0b0f39;
--bg-elev:#11122a;
--text:#e9e9ef;
--muted:#b9b9c7;
--link:var(--brand);
--ring:hsl(280 100% 70% / .6);
--container: 1120px;
--space-1: .5rem;
--space-2: 1rem;
--space-3: 1.5rem;
--space-4: 2rem;
--radius: 14px;
}
*,
*::before,
*::after { box-sizing:border-box; }
html, body {
margin:0;
padding:0;
width:100%;
overflow-x:hidden;
background:var(--bg);
color:var(--text);
}
img, picture, video {
max-width:100%;
height:auto;
display:block;
}
/* Fluid Type */
:root {
--step--1: clamp(.88rem, .86rem + .2vw, .98rem);
--step-0: clamp(1rem, .95rem + .5vw, 1.125rem);
--step-1: clamp(1.25rem, 1.1rem + .9vw, 1.5rem);
--step-2: clamp(1.5rem, 1.3rem + 1.4vw, 2rem);
--step-3: clamp(1.9rem, 1.6rem + 2vw, 2.6rem);
--step-4: clamp(2.4rem, 2rem + 2.8vw, 3.4rem);
}
body {
font: 400 var(--step-0)/1.6 system-ui, -apple-system, Segoe UI, Roboto,
"Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
}
h1,h2,h3 {
line-height:1.15;
margin:0 0 var(--space-2);
color:var(--text);
}
h1 { font-size:var(--step-4); }
h2 { font-size:var(--step-2); margin-top:var(--space-4); }
h3 { font-size:var(--step-1); margin-top:var(--space-3); }
p {
margin:0 0 var(--space-2);
color:var(--muted);
}
ul, ol {
margin:0 0 var(--space-2);
padding-left:1.5rem;
color:var(--muted);
}
/* Links / buttons */
a {
color:var(--link);
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
.button {
display:inline-flex;
align-items:center;
gap:.6rem;
padding:.7rem 1.1rem;
border-radius:var(--radius);
background:var(--brand);
color:#111;
font-weight:700;
border:0;
box-shadow:0 8px 24px rgba(237,13,146,.25);
text-decoration:none;
}
.button:is(:hover,:focus-visible) {
color:white;
text-decoration:none;
filter:brightness(1.08);
}
:focus-visible {
color:white;
outline:3px solid var(--ring);
outline-offset:3px;
}
/* Layout helpers */
.container {
width:min(100% - 2rem, var(--container));
margin-inline:auto;
}
.section {
padding-block:clamp(2.5rem, 2rem + 3vw, 5rem);
}
/* Nav (sticky) */
.site-nav {
position:sticky;
top:0;
z-index:10;
backdrop-filter:saturate(120%) blur(6px);
background:linear-gradient(
to bottom,
rgba(11,15,57,.85),
rgba(11,15,57,.55)
);
border-bottom:1px solid rgba(255,255,255,.06);
}
.site-nav .bar {
display:flex;
align-items:center;
justify-content:space-between;
padding:.8rem 0;
}
.site-nav a {
color:var(--text);
opacity:.85;
font-size:var(--step--1);
}
.site-nav a:hover {
opacity:1;
}
.nav-links {
display:flex;
flex-wrap:wrap;
gap:var(--space-2);
align-items:center;
}
/* Hero banner (same look, full width) */
.hero-bg {
width:100%;
aspect-ratio:16/5;
background-image:url("https://raw.githubusercontent.com/monapdx/AbortOurCourt/refs/heads/main/images/branding/header-1920.webp");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
@media (max-width:1024px) {
.hero-bg {
background-image:url("https://raw.githubusercontent.com/monapdx/AbortOurCourt/refs/heads/main/images/branding/header-1024.webp");
}
}
@media (max-width:600px) {
.hero-bg {
background-image:url("https://raw.githubusercontent.com/monapdx/AbortOurCourt/refs/heads/main/images/branding/header-600.webp");
}
}
/* Content page styles (single full-width column) */
.content-wrapper {
padding-block:clamp(2.5rem, 2rem + 3vw, 4rem);
}
.content-card {
background:var(--bg-elev);
border-radius:var(--radius);
padding:clamp(1.5rem, 1.2rem + 2vw, 2.5rem);
box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.page-meta {
font-size:var(--step--1);
color:var(--muted);
margin-bottom:var(--space-2);
}
.content-card hr {
border:0;
border-top:1px solid rgba(255,255,255,.08);
margin:var(--space-3) 0;
}
/* Footer */
.footer {
color:var(--muted);
border-top:1px solid rgba(255,255,255,.08);
padding-block:2rem;
}
.footer-inner {
display:flex;
flex-wrap:wrap;
gap:var(--space-2);
align-items:center;
justify-content:space-between;
font-size:var(--step--1);
}
</style>
</head>
<body>
<!-- Header / nav -->
<header class="site-nav">
<div class="container bar">
<a href="" class="site-logo">
<strong>ABORT THE SUPREME COURT</strong>
</a>
<nav class="nav-links" aria-label="Primary navigation">
<a href="">Home</a>
<a href="/resources.html">Resources</a>
<a href="/about.html">About</a>
<a href="/contact.html" class="button">Contact</a>
</nav>
</div>
</header>
<!-- Hero image (same banner) -->
<div class="hero-bg" role="img" aria-label="Abort the Supreme Court logo banner"></div>
<!-- Main content: single-column, full-width template -->
<main>
<section class="content-wrapper">
<div class="container">
<article class="content-card">
<header>
<p class="page-meta">Last updated: January 16, 2026</p>
<h1>Privacy Policy</h1>
</header>
<p>
AbortSupremeCourt.com (“we,” “us,” “our”) is committed to protecting your
privacy—especially given the sensitivity of the topics addressed on this website.
We believe every person has the right to access information about reproductive
justice, abortion rights, and related resources without fear of advertising
surveillance or invasive tracking. Where we do use analytics, we keep it limited
to understanding general site usage and improving the site.
</p>
<h2>1. Information We Collect (and What We Don’t)</h2>
<p>
AbortSupremeCourt.com is designed to collect as little information as possible.
You can read this site and access resources without logging in, creating an
account, or revealing who you are.
</p>
<h3>What we do <em>not</em> collect</h3>
<ul>
<li>No account profiles or logins</li>
<li>No advertising trackers (no Meta / Facebook pixels, no ad retargeting)</li>
<li>No sale of personal data to data brokers</li>
<li>No device/browser fingerprinting intended to identify you</li>
</ul>
<h3>Analytics (Google Analytics)</h3>
<p>
We use Google Analytics to understand general site usage (for example: which
pages are visited most, how visitors find the site, and basic performance
metrics). Google Analytics works by setting cookies or similar identifiers in
your browser and collecting usage information.
</p>
<p>
The information Google Analytics may collect includes: approximate location
(derived from IP address), device and browser information, pages viewed,
time spent on pages, referral sources, and interactions such as clicks.
This data is used in aggregate to improve the site.
</p>
<p>
Google may process this information as a service provider/processor.
We do not receive your full browsing history across the internet, and we do
not use Google Analytics to serve ads or build advertising profiles on this site.
</p>
<h3>Your choices</h3>
<ul>
<li>You can block or delete cookies in your browser settings.</li>
<li>
You can install the Google Analytics Opt-out Browser Add-on (provided by
Google) to prevent Google Analytics from being used on websites.
</li>
<li>
If you use privacy tools (content blockers, tracking protection, private
browsing), they may reduce or prevent analytics collection.
</li>
</ul>
<h2>2. Optional Email Sign-Ups</h2>
<p>
If you choose to sign up to receive launch notifications or future updates,
we will collect the email address you voluntarily provide.
</p>
<p>We will use your email address only to:</p>
<ul>
<li>Send updates about new site features or content</li>
<li>Share important information related to reproductive justice resources</li>
</ul>
<p>
We do <strong>not</strong> sell your email address, and we do <strong>not</strong>
share it with third parties for advertising or data-broker purposes. You may
unsubscribe at any time, and we will remove your email from our list.
</p>
<h2>3. Email Service Provider</h2>
<p>
To send email updates, we may use a trusted email service provider
(for example, a newsletter or mailing list tool). That provider will process
your email address solely for the purpose of delivering messages you opted into.
</p>
<p>
We choose providers that commit to strong privacy standards and do not
sell subscriber data.
</p>
<h2>4. External Links</h2>
<p>
AbortSupremeCourt.com links to other organizations, clinics, legal
resources, and informational sites. We do not control and are not
responsible for the privacy practices of those websites.
</p>
<p>
When you click an external link, their terms and privacy policies apply.
If privacy is a concern, we encourage you to review those policies
before sharing any information with them.
</p>
<h2>5. Data Security</h2>
<p>
Because we intentionally collect as little information as possible,
your privacy risk is inherently limited. For any optional email data
stored with our mailing provider, we rely on reasonable technical and
administrative safeguards intended to protect it against unauthorized
access or misuse.
</p>
<h2>6. Children’s Privacy</h2>
<p>
This website is not directed at children under the age of 13.
We do not knowingly collect personal information from children.
</p>
<h2>7. Changes to This Privacy Policy</h2>
<p>
We may update this Privacy Policy as the site evolves or in response to
changes in best practices or applicable law. The “Last updated” date at
the top of this page will reflect the most recent revision.
</p>
<p>
If we ever change how we handle email subscription data in a significant way,
we will make a reasonable effort to notify subscribers.
</p>
<h2>8. Contact</h2>
<p>
If you have questions, concerns, or requests related to this Privacy Policy,
you can reach us at:
</p>
<p>
<strong>Email:</strong> <a href="mailto:ashlylorenzana@gmail.com">ashlylorenzana@gmail.com</a>
</p>
</article>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container footer-inner">
<small>© 2026 Abort the Supreme Court</small>
<small>
<a href="/privacy.html">Privacy Policy</a>
</small>
</div>
</footer>
</body>
</html>