:root {
  /* Colors - HornMe red, blush, warm white, and near-black */
  --bg-color: #fff9f7;
  --bg-secondary: #ffe7e8;
  --text-main: #0a0a0a;
  --text-muted: #514749;
  --accent-color: #df1018;
  --accent-hover: #b90c13;
  --border-color: #f1c9cc;
  --error-color: #b90c13;
  
  /* Typography */
  --font-serif: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Layout */
  --wrap-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: clamp(1.5rem, 4vw, 2.5rem);
  --spacing-lg: clamp(3rem, 6vw, 5rem);
  --spacing-xl: clamp(4rem, 8vw, 8rem);
  
  /* Radii & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-subtle: 0 8px 24px rgba(10, 10, 10, 0.08);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--text-main);
}
h1 { font-size: clamp(2.25rem, 8vw, 5.5rem); letter-spacing: -0.045em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 7vw, 4rem); letter-spacing: -0.04em; line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 5vw, 1.75rem); line-height: 1.2; }
em { font-style: normal; color: var(--accent-color); font-weight: 800; }
p { margin: 0 0 1.5rem; }
a { color: var(--text-main); text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s; }
a:hover { color: var(--accent-color); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color) 70%, white);
  outline-offset: 3px;
}
strong { font-weight: 600; }

/* Utilities */
.wrap {
  width: 100%;
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.short-line {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--accent-color);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 99px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}
.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.button-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9375rem;
}
.text-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--text-main);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }
[hidden] { display: none !important; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}
.brand img {
  height: 28px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(4772%) hue-rotate(350deg) brightness(89%) contrast(106%);
}
.site-header nav {
  display: none;
}
@media (min-width: 768px) {
  .site-header nav {
    display: flex;
    gap: 2rem;
  }
  .site-header nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
  }
}

/* Sections */
.section { padding: var(--spacing-xl) 0; }
@media (max-width: 768px) { .section { padding: var(--spacing-lg) 0; } }

/* Hero */
.hero {
  position: relative;
  padding: var(--spacing-lg) 0 var(--spacing-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
}
.hero-copy {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.hero-intro {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-intro strong {
  color: var(--text-main);
}
.actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.fine-print {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.muted-copy { color: var(--text-muted); }
.spaced-copy { margin-top: 2rem; }
.not-found-actions { margin-top: 2rem; justify-content: center; }
.hero-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.hero-note span { color: var(--accent-color); font-size: 1.2rem; }

.hero-background {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-background picture:first-child {
  grid-column: 1 / -1;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}
.hero-background picture:first-child img {
  aspect-ratio: 16/9;
}

/* Principles Bar */
.principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm) var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4vw, 1.25rem);
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .principles { gap: 4rem; justify-content: space-between; }
}

/* Intro Product Section */
.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .product-section { grid-template-columns: 1fr 1fr; }
}
.large-copy {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-family: var(--font-serif);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}
.product-poster {
  background: linear-gradient(145deg, #ffe7e8, #ffd4d7);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.poster-heading {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  opacity: 0.3;
}
.phone-preview {
  background: #fff;
  color: var(--text-main);
  border-radius: 40px;
  padding: 2rem 1.5rem;
  width: 300px;
  height: 600px;
  box-shadow: 0 20px 40px rgba(10, 10, 10, 0.16);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 2rem;
}
.phone-logo {
  filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(4772%) hue-rotate(350deg) brightness(89%) contrast(106%);
  width: 100px;
  margin: 0 auto 2rem;
}
.mood-question {
  font-size: 1.25rem;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}
.phone-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 3rem;
}
.mood-preview { margin-bottom: 3rem; }
.scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.meter {
  height: 40px;
  background: #f2d9da;
  border-radius: 20px;
  position: relative;
  margin-bottom: 1rem;
}
.meter-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 72%;
  background: linear-gradient(90deg, #df1018, #ff6b50);
  border-radius: 20px;
}
.meter-thumb {
  position: absolute;
  top: -4px;
  left: 72%;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.mood-reading {
  text-align: center;
}
.mood-reading strong { font-size: 2rem; display: block; line-height: 1; }
.mood-reading span { font-weight: 600; color: var(--accent-color); }
.mood-reading small { display: block; color: #777; font-size: 0.875rem; }
.phone-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.phone-label span { opacity: 0.5; font-style: italic; text-transform: lowercase; }
.phrases {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.phrases span {
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
}
.phone-action {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.phone-note {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  margin-top: 1rem;
}
figcaption { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 1rem; }

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: var(--spacing-lg) 1.5rem;
  max-width: var(--wrap-width);
  margin: 0 auto;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.feature-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}
.feature-number {
  font-size: 0.875rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.feature-card p { font-size: 1rem; color: var(--text-muted); margin: 0; }
.card-symbol {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: var(--bg-secondary);
  line-height: 1;
}

/* Consent Section */
.consent-section {
  background-color: var(--accent-color);
  color: #fff;
  padding: var(--spacing-xl) 0;
}
.consent-section h2, .consent-section p { color: #fff; }
.consent-section em { color: #ffd7d9; }
.consent-section .eyebrow { color: #ffd7d9; }
.consent-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 900px) {
  .consent-layout { grid-template-columns: 1fr 1fr; }
}
.light-link {
  color: #fff;
}
.light-link:hover { color: #ffd7d9; }
.consent-principles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.consent-principles p {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-family: var(--font-serif);
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1.5rem;
  margin: 0;
}
.consent-principles span {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #ffd7d9;
}
.service-note {
  text-align: center;
  font-size: 0.875rem;
  color: #ffd7d9 !important;
  margin-top: 4rem;
}

/* How Section */
.how-section { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .section-heading { grid-template-columns: 1fr 1fr; align-items: end; }
  .section-heading p:last-child { text-align: right; font-size: 1.25rem; font-family: var(--font-serif); }
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.steps li { position: relative; }
.step-number {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: var(--font-serif);
  color: var(--bg-secondary);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.steps p { font-size: 0.9375rem; color: var(--text-muted); }

/* Trust */
.trust-section {
  padding: var(--spacing-xl) 1.5rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 900px) {
  .trust-section { grid-template-columns: 1fr 1fr; }
}
.trust-links { display: flex; flex-direction: column; gap: 1rem; }
.trust-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
}
.trust-links a:hover {
  background: var(--text-main);
  color: var(--bg-color);
}
.trust-links a:hover small { color: rgba(255,255,255,0.7); }
.trust-links span { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-links strong { font-size: 1.125rem; }
.trust-links small { font-size: 0.875rem; color: var(--text-muted); }

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  background: var(--bg-secondary);
  padding: var(--spacing-xl) clamp(1rem, 4vw, 3rem);
  max-width: none;
}
@media (min-width: 900px) {
  .contact-section { grid-template-columns: 1fr 1fr; }
}
.contact-section > * { max-width: 600px; }
.contact-section .contact-copy { justify-self: center; }
.contact-section form { justify-self: center; width: 100%; max-width: 500px; background: var(--bg-color); padding: clamp(1rem, 5vw, 2.5rem); border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); }

.contact-email {
  display: block;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-family: var(--font-serif);
  text-decoration: none;
  margin: 2rem 0 1rem;
}
.contact-email-small { font-size: 1.125rem; }

/* Forms */
.form-intro { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 2rem; }
.field { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
input:not([type="checkbox"]):not([type="hidden"]), select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-color);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--text-main);
}
.field-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.field-error {
  display: block;
  font-size: 0.875rem;
  color: var(--error-color);
  margin-top: 0.5rem;
}
.field-error:empty { display: none; }
.safety-note, .form-privacy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-label input { margin-top: 0.2rem; }
.honey { position: absolute; left: -9999px; }

.form-alert {
  padding: 1rem;
  background: #fdf2f2;
  color: var(--error-color);
  border: 1px solid var(--error-color);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.form-status {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-status.success { color: #2d7a3d; }
.form-status.error { color: var(--error-color); }

/* Footer */
.site-footer {
  background: var(--text-main);
  color: var(--bg-color);
  padding: var(--spacing-lg) 0 2rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-top .brand img { filter: invert(1) brightness(2); }
.footer-top nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-top nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9375rem; }
.footer-top nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: inherit; text-decoration: none; }

/* Subpages Content */
.page-heading {
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.page-heading h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
}
@media (min-width: 900px) {
  .legal-layout { grid-template-columns: 300px 1fr; gap: 5rem; }
}

.contents-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 2rem;
}
.contents-nav a {
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.contents-nav a:hover { color: var(--text-main); }

.legal-copy {
  max-width: 800px;
}
.legal-copy section {
  margin-bottom: 4rem;
  padding-top: 2rem; /* space for anchor jump */
}
.legal-copy h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.legal-copy p { margin-bottom: 1.5rem; font-size: 1.125rem; }

.draft-note {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-sm);
  margin-bottom: 4rem;
}
.draft-note strong { display: block; margin-bottom: 0.5rem; }
.draft-note p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

.provider-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media (min-width: 600px) {
  .provider-list { grid-template-columns: 1fr 1fr; }
}
.provider-list h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.provider-list p { font-size: 0.9375rem; color: var(--text-muted); }

/* Support Subpage */
.support-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
}
@media (min-width: 900px) {
  .support-layout { grid-template-columns: 350px 1fr; gap: 5rem; }
}
.support-aside { display: flex; flex-direction: column; gap: 2rem; }
.aside-heading { font-size: 1.5rem; margin-bottom: 1rem; }
.support-option {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s;
}
.support-option:hover {
  background: var(--text-main);
  color: var(--bg-color);
}
.support-option strong { font-size: 1.125rem; margin-bottom: 0.25rem; }
.support-option span { font-size: 0.875rem; color: var(--text-muted); }
.support-option:hover span { color: rgba(255,255,255,0.7); }
.aside-note {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.aside-note h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.aside-note p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.aside-note .contact-email { font-size: 1.5rem; margin: 0 0 1rem; }

/* Delete Account Subpage */
.deletion-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 900px) {
  .deletion-options { grid-template-columns: 1fr 1fr; }
}
.delete-card {
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.5rem, 5vw, 2rem);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}
.delete-card.alternate {
  background: var(--text-main);
  color: var(--bg-color);
}
.delete-card.alternate .feature-number { color: rgba(255,255,255,0.5); }
.delete-card.alternate h2 { color: var(--bg-color); }
.delete-card h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.delete-card p { font-size: 1.125rem; }
.delete-card .button { margin-top: 1rem; margin-bottom: 2rem; }
.account-route {
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
}
.account-route strong { font-size: 1.5rem; color: #fff; }

.deletion-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 900px) {
  .deletion-details { grid-template-columns: 1fr 350px; gap: 5rem; }
}
.deletion-details h2 { font-size: 2rem; margin-bottom: 2rem; }
.numbered-list { list-style: none; padding: 0; counter-reset: list-counter; }
.numbered-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}
.numbered-list li::before {
  counter-increment: list-counter;
  content: "0" counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--accent-color);
}
.numbered-list strong { display: block; font-size: 1.25rem; margin-bottom: 0.5rem; }
.numbered-list p { font-size: 1.125rem; color: var(--text-muted); }

.deletion-safety {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.deletion-safety h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.deletion-safety p { font-size: 0.9375rem; color: var(--text-muted); }
.deletion-review { margin-bottom: var(--spacing-xl); }
.review-links {
  margin-top: 1.5rem;
  color: var(--text-muted);
}
.review-links a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.beta-aside-photo {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.beta-aside-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
}

/* Standard content wrap for simple pages */
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem var(--spacing-xl);
}
.content-wrap h2 { font-size: 2rem; margin-top: 3rem; }
.content-wrap h3 { font-size: 1.5rem; margin-top: 2rem; }
.content-wrap ul, .content-wrap ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.content-wrap li { margin-bottom: 0.5rem; }
.content-wrap time { display: block; color: var(--text-muted); margin-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
