*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--page-bg: #e8edf5;
--doc-bg: #ffffff;
--ink: #1a1a1a;
--ink-light: #555550;
--ink-muted: #888882;
--rule: #d8d4cc;
--accent: #ff0044;
--accent-light: #ffe6ec;
--shadow: 0 2px 8px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.07);
}
html { font-size: 16px; }
body {
background: var(--page-bg);
background-image:
radial-gradient(ellipse at 20% 0%, rgba(26,92,58,0.06) 0%, transparent 60%),
radial-gradient(ellipse at 80% 100%, rgba(26,92,58,0.04) 0%, transparent 50%);
font-family: 'DM Sans', sans-serif;
min-height: 100vh;
padding: 48px 24px 80px;
color: var(--ink);
}
body a {
  color: var(--accent);
}
.toolbar {
max-width: 820px;
margin: 0 auto 12px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4px;
opacity: 0;
animation: fadeIn 0.5s 0.1s forwards;
}
.toolbar-left { display: flex; align-items: center; gap: 10px; }
.doc-icon {
width: 32px; height: 32px;
background: var(--accent);
border-radius: 6px;
display: flex; align-items: center; justify-content: center;
}
.doc-icon svg { width: 16px; height: 16px; fill: white; }
.doc-title {
font-size: 13px;
font-weight: 500;
color: var(--ink-light);
letter-spacing: 0.01em;
}
.toolbar-actions { display: flex; gap: 8px; }
.btn {
font-family: 'DM Sans', sans-serif;
font-size: 12px;
font-weight: 500;
padding: 6px 14px;
border-radius: 4px;
border: 1px solid var(--rule);
background: white;
color: var(--ink-light);
cursor: pointer;
letter-spacing: 0.02em;
}
.btn-primary {
background: var(--accent);
color: white;
border-color: transparent;
}
.document {
max-width: 820px;
margin: 0 auto;
background: var(--doc-bg);
box-shadow: var(--shadow);
border-radius: 3px;
padding: 72px 96px 96px;
opacity: 0;
animation: riseUp 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.doc-header {
border-bottom: 2px solid var(--accent);
padding-bottom: 20px;
margin-bottom: 36px;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.company-name {
font-family: 'EB Garamond', serif;
font-size: 22px;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.03em;
}
.company-tagline {
font-size: 11px;
color: var(--ink-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
margin-top: 3px;
}
.release-label { text-align: right; }
.for-immediate {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
background: var(--accent-light);
padding: 4px 10px;
border-radius: 3px;
display: inline-block;
margin-bottom: 6px;
}
.headline-block { margin-bottom: 36px; }
.headline {
font-family: 'EB Garamond', serif;
font-size: 34px;
line-height: 1.2;
font-weight: 600;
color: var(--ink);
letter-spacing: -0.01em;
margin-bottom: 14px;
}
.subheadline {
font-family: 'EB Garamond', serif;
font-size: 18px;
line-height: 1.5;
font-weight: 400;
font-style: italic;
color: var(--ink-light);
}
.dateline {
font-weight: 500;
font-size: 14px;
color: var(--ink);
margin-bottom: 16px;
}
.dateline span { color: var(--ink-muted); font-weight: 400; }
p {
font-size: 15px;
line-height: 1.78;
color: #2c2c2c;
margin-bottom: 20px;
}
.body-image {
display: block;
width: 100%;
max-width: 300px;
height: auto;
margin: 0 auto 16px;
border-radius: 4px;
}
.pull-quote {
border-left: 3px solid var(--accent);
margin: 36px 0;
padding: 16px 0 16px 28px;
}
.pull-quote blockquote {
font-family: 'EB Garamond', serif;
font-size: 20px;
line-height: 1.5;
font-style: italic;
color: var(--ink);
margin-bottom: 10px;
}
.pull-quote cite {
font-size: 12px;
font-style: normal;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--ink-muted);
}
.pull-quote cite strong { color: var(--accent); font-weight: 600; }
.stats-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--rule);
border: 1px solid var(--rule);
border-radius: 6px;
overflow: hidden;
margin: 32px 0 36px;
}
.stat { background: white; padding: 20px 22px; text-align: center; }
.stat-number {
font-family: 'EB Garamond', serif;
font-size: 18px;
font-weight: 600;
color: var(--accent);
line-height: 1;
margin-bottom: 5px;
}
.stat-label {
font-size: 11px;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--ink-muted);
font-weight: 500;
}
.section-divider {
border: none;
border-top: 1px solid var(--rule);
margin: 40px 0 28px;
}
.section-label {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--ink-muted);
margin-bottom: 12px;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-top: 16px;
}
.contact-card {
background: var(--accent-light);
border-radius: 6px;
padding: 18px 20px;
}
.contact-name { font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.contact-title { font-size: 11.5px; color: var(--ink-muted); margin-bottom: 10px; }
.contact-info { font-size: 13px; line-height: 1.7; color: var(--ink-light); }
.contact-info a { color: var(--accent); text-decoration: underline; font-weight: 500; }
.doc-footer {
margin-top: 48px;
padding-top: 20px;
border-top: 1px solid var(--rule);
display: flex;
align-items: center;
justify-content: space-between;
}
.doc-footer .end-mark {
font-family: 'EB Garamond', serif;
font-size: 20px;
font-weight: 600;
color: var(--ink-muted);
letter-spacing: 0.2em;
}
.doc-footer .page-note { font-size: 11px; color: var(--ink-muted); letter-spacing: 0.04em; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes riseUp { to { opacity: 1; transform: translateY(0); } }
.document { transform: translateY(12px); }
#toast {
position: fixed;
bottom: 32px;
left: 50%;
transform: translateX(-50%) translateY(12px);
background: #1a1a1a;
color: white;
font-family: 'DM Sans', sans-serif;
font-size: 13px;
font-weight: 500;
padding: 10px 20px;
border-radius: 6px;
box-shadow: 0 4px 16px rgba(0,0,0,0.2);
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease, transform 0.2s ease;
white-space: nowrap;
z-index: 9999;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media print {
body { background: white; padding: 0; }
.toolbar { display: none; }
.document { box-shadow: none; padding: 48px; }
}
@media (max-width: 640px) {
.document { padding: 40px 28px 56px; }
.headline { font-size: 26px; }
.doc-header { flex-direction: column; gap: 14px; align-items: flex-start; }
.stats-row { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
}
ul.doc-list {
  padding-left: 20px;
  margin: 0 0 4px;
}
ul.doc-list li {
  font-size: 15px;
  line-height: 1.78;
  color: #2c2c2c;
  margin-bottom: 4px;
}
ul.doc-list li a {
  color: var(--accent);
  text-decoration: underline;
}
ul.doc-list li a:hover {
  text-decoration: underline;
}
.list-meta {
  color: #2c2c2c;
  font-weight: 400;
}