/* Shared marketing site chrome — matches cover-letters v2 */
:root {
  --forest: #1b3d2f;
  --forest-deep: #122820;
  --forest-mid: #2a5a43;
  --mist: #e8f0ea;
  --paper: #f7faf7;
  --ink: #142019;
  --muted: #4a5c52;
  --accent: #1e5a8a;
  --accent-hover: #164468;
  --border: rgba(27, 61, 47, 0.12);
  --shadow: 0 18px 50px rgba(18, 40, 32, 0.12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.nav-product {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.nav-company {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link-quiet {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.nav-link-quiet:hover {
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 8px 22px rgba(30, 90, 138, 0.22);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.page-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.page-shell--wide {
  max-width: 1120px;
}

.page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.page-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.page-hero h1,
.page-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero .app-name {
  color: var(--accent);
  font-weight: 700;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.site-footer {
  background: var(--forest-deep);
  color: rgba(244, 250, 246, 0.78);
  padding: 36px 24px;
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(244, 250, 246, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-legal {
  opacity: 0.7;
  font-size: 0.85rem;
}

.site-footer .footer-legal a {
  opacity: 0.85;
  text-decoration: underline;
}

.site-footer .copyright {
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.65;
}

/* Support */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.support-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  text-align: center;
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest-mid);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(18, 40, 32, 0.1);
}

.support-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.support-card h3 {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.support-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.support-card a.action-link {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: calc(0.92rem - 1pt);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  transition: background 0.2s, transform 0.2s;
}

.support-card a.action-link:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Delete account */
.delete-steps,
.steps-card,
.contact-block {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest-mid);
}

.steps-card h3,
.delete-steps h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin-bottom: 1.1rem;
  font-size: 1.25rem;
}

.steps-list {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cta-delete,
.action-link-btn {
  display: inline-block;
  margin: 1.25rem 0;
  padding: 0.95rem 1.75rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.cta-delete:hover,
.action-link-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

.copy-request-btn {
  background: none;
  border: none;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.copy-request-btn:hover {
  color: var(--accent-hover);
}

.data-section h3 {
  font-family: var(--font-display);
  color: var(--forest);
  margin: 1.5rem 0 0.75rem;
}

.data-section p,
.data-section li {
  color: var(--muted);
  line-height: 1.7;
}

.data-section ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

/* Legal */
.legal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-header h1,
.legal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: var(--forest);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal-header .meta {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-header .intro {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}

.legal-section h4 {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.4rem;
  margin-top: 0.9rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section .caps {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.contact-block strong {
  color: var(--forest);
}

@media (max-width: 720px) {
  .page-card {
    padding: 24px 18px;
  }

  .nav-link-quiet {
    display: none;
  }
}
