/* ============================================================
   PreSpend — Modern Site CSS
   Fonts: Poppins (display) · Inter (body) · DM Mono (mono)
   Brand accent: #31d282 (mint green from logo)
   ============================================================ */

:root {
  /* Brand */
  --green-bright:  #31d282;
  --green-mid:     #27a866;
  --green-dark:    #1a7a4a;

  /* Dark surfaces */
  --bg-dark:       #08121f;
  --bg-dark-card:  #0f1e33;
  --border-dark:   #1c2e46;

  /* Light surfaces */
  --bg-light:      #f4f8f6;
  --bg-white:      #ffffff;
  --border-light:  #e2ebe7;

  /* Text */
  --text-dark:     #0c1c2c;
  --text-muted:    #5c7063;
  --text-light:    #d8ede5;
  --text-dim:      #7a9b8a;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Layout */
  --max-width: 1120px;
  --radius:    12px;
  --radius-lg: 20px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 18, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.875rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img { height: 34px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, color 0.2s;
}

.main-nav a:hover { opacity: 1; color: var(--green-bright); }

.nav-cta {
  background: var(--green-bright) !important;
  color: var(--bg-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  opacity: 1 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  box-shadow: 0 4px 16px rgba(49, 210, 130, 0.35);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(49, 210, 130, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0.3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(49, 210, 130, 0.08);
  border: 1px solid rgba(49, 210, 130, 0.22);
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.375rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .accent { color: var(--green-bright); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.hero-trust .sep {
  width: 3px;
  height: 3px;
  background: var(--border-dark);
  border-radius: 50%;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #28c472;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(49, 210, 130, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--green-bright);
  border: 2px solid var(--green-bright);
}

.btn-outline:hover {
  background: var(--green-bright);
  color: var(--bg-dark);
}

/* ── Features ───────────────────────────────────────────────── */
.features {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.625rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.75;
}

.features-header { margin-bottom: 3.5rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 1.875rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.28s, transform 0.28s;
}

.feature-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  background: rgba(49, 210, 130, 0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--green-mid);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-white);
}

.how-it-works .inner-center { text-align: center; margin-bottom: 3.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step { text-align: center; padding: 0 0.75rem; }

.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.step-circle {
  width: 58px;
  height: 58px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-bright);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Philosophy / Quote ─────────────────────────────────────── */
.philosophy {
  background: var(--bg-dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(49, 210, 130, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  font-weight: 600;
  color: #ffffff;
  max-width: 740px;
  margin: 0 auto 1.5rem;
  line-height: 1.38;
  letter-spacing: -0.025em;
  position: relative;
}

.philosophy blockquote .accent { color: var(--green-bright); }

.philosophy cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-style: normal;
  text-transform: uppercase;
}

/* ── App Preview (feature graphic) ─────────────────────────── */
.app-preview {
  background: var(--bg-dark);
  padding: 0 0 5rem;
}

.app-preview .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.feature-graphic-wrap {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-dark);
}

.feature-graphic-wrap img {
  width: 100%;
  display: block;
}

/* ── Screenshots section ────────────────────────────────────── */
.screenshots-section {
  background: var(--bg-dark);
  padding: 6rem 0;
  overflow: hidden;
}

.screenshots-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.screenshots-text .section-title { color: #ffffff; }
.screenshots-text .section-sub   { color: var(--text-dim); }

.screenshots-feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.screenshots-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.screenshots-feature-list li .feat-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(49, 210, 130, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  margin-top: 0.05rem;
}

.screenshots-feature-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.screenshots-phones {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.phone-shot {
  width: 178px;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.phone-shot:nth-child(1) { transform: translateY(16px); }
.phone-shot:nth-child(2) { transform: translateY(-16px); width: 190px; }
.phone-shot:nth-child(3) { transform: translateY(16px); }

/* ── Screenshot caption row (scrollable) ───────────────────── */
.screenshots-captions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.screenshots-captions::-webkit-scrollbar { display: none; }

.caption-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.caption-item img {
  width: 130px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.caption-item img:hover { opacity: 1; }

.caption-item span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .screenshots-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .screenshots-phones {
    justify-content: center;
  }

  .phone-shot { width: 140px; }
  .phone-shot:nth-child(2) { width: 152px; }
}

@media (max-width: 480px) {
  .phone-shot { width: 110px; }
  .phone-shot:nth-child(2) { width: 120px; }
}

/* ── Download CTA ───────────────────────────────────────────── */
.download-cta {
  padding: 7rem 0;
  background: var(--bg-light);
  text-align: center;
}

.download-cta .section-sub { margin: 0 auto 2.5rem; }

/* ── Main (inner pages) ─────────────────────────────────────── */
main { flex: 1; }

.page-wrapper {
  padding: 4.5rem 0 6rem;
}

.page { max-width: 760px; margin: 0 auto; }

.page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.page-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.page .content h2 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-dark);
  letter-spacing: -0.015em;
}

.page .content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  color: var(--text-dark);
}

.page .content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.page .content ul,
.page .content ol {
  margin: 0.875rem 0 0.875rem 1.5rem;
}

.page .content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page .content a {
  color: var(--green-mid);
  text-decoration: underline;
  text-decoration-color: rgba(39, 168, 102, 0.3);
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.page .content a:hover { color: var(--green-dark); }

.page .content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.page .content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.page .content th {
  background: var(--bg-light);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
}

.page .content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  line-height: 1.6;
  vertical-align: top;
}

.page .content tr:last-child td { border-bottom: none; }

.page .content td:first-child {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-page { padding: 4.5rem 0 6rem; }

.pricing-intro {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.pricing-intro .section-title { margin-bottom: 0.75rem; }
.pricing-intro p { color: var(--text-muted); font-size: 1rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1060px;
  margin: 0 auto 4rem;
}

.pricing-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  transition: box-shadow 0.28s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07); }

.pricing-card.featured {
  border-color: var(--green-bright);
  background: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 8px 36px rgba(49, 210, 130, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-bright);
  color: var(--bg-dark);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.pricing-card.featured h3 { color: #ffffff; }

.price {
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--green-bright);
  margin: 0.875rem 0;
  line-height: 1;
}

.price span {
  font-size: 0.9375rem;
  color: var(--text-dim);
  font-weight: 400;
}

.pricing-card > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-card.featured > p { color: var(--text-dim); }

.pricing-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: var(--border-dark);
  color: var(--text-dim);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%2331d282' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  border-radius: 10px;
  font-family: var(--font-body);
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
}

.pricing-btn-primary {
  background: var(--green-bright);
  color: var(--bg-dark);
}

.pricing-btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 20px rgba(49, 210, 130, 0.32);
}

.pricing-btn-outline {
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--text-dark);
}

.pricing-btn-outline:hover {
  border-color: var(--green-bright);
  color: var(--green-mid);
}

/* FAQ */
.pricing-faq { max-width: 620px; margin: 0 auto; }

.pricing-faq h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.125rem;
  margin-bottom: 2.5rem;
}

.contact-method-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  transition: box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.contact-method-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(49, 210, 130, 0.3);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  background: rgba(49, 210, 130, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green-mid);
}

.contact-method-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
}

.contact-method-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.contact-method-link {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact-method-link:hover { text-decoration: underline; }

.contact-note {
  background: var(--bg-light);
  border-left: 3px solid var(--green-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.contact-social {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  margin-top: 1rem;
}

.contact-social h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.social-pill-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-pill:hover {
  border-color: var(--green-bright);
  color: var(--green-mid);
}

/* ── Delete / Action pages ──────────────────────────────────── */
.action-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.deletion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.deletion-card {
  border-radius: var(--radius);
  padding: 1.375rem;
}

.deletion-card.deleted {
  background: rgba(255, 80, 80, 0.04);
  border: 1px solid rgba(255, 80, 80, 0.15);
}

.deletion-card.kept {
  background: rgba(49, 210, 130, 0.05);
  border: 1px solid rgba(49, 210, 130, 0.18);
}

.deletion-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.deletion-card.deleted .deletion-card-label { color: #e05555; }
.deletion-card.kept .deletion-card-label { color: var(--green-mid); }

.deletion-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deletion-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.5;
}

.deletion-card li:last-child { border-bottom: none; }

.action-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.action-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}

.action-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-bright);
  margin-top: 0.125rem;
}

.action-step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 0.25rem;
}

.action-step-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.info-box {
  background: rgba(49, 210, 130, 0.06);
  border: 1px solid rgba(49, 210, 130, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.info-box p {
  font-size: 0.875rem !important;
  color: var(--text-dark) !important;
  line-height: 1.65;
  margin: 0 !important;
}

.warn-box {
  background: rgba(230, 100, 50, 0.05);
  border: 1px solid rgba(230, 100, 50, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.warn-box p {
  font-size: 0.875rem !important;
  color: var(--text-dark) !important;
  line-height: 1.65;
  margin: 0 !important;
}

.action-email-block {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.action-email-block h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.action-email-block p {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0.75rem !important;
}

.action-email-block a {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 500;
}

.action-email-block a:hover { text-decoration: underline; }

.data-retention {
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
  margin-top: 2rem;
}

.data-retention h3 {
  font-family: var(--font-display);
  font-size: 0.875rem !important;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
}

.data-retention p {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
}

@media (max-width: 540px) {
  .deletion-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-dim);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 1.125rem;
  color: var(--text-dim);
  max-width: 240px;
}

.footer-logo-img { height: 30px; width: auto; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--green-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.55;
}

/* ── 404 ────────────────────────────────────────────────────── */
.not-found {
  padding: 8rem 0;
  text-align: center;
}

.not-found .code {
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 500;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.not-found p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { padding: 5rem 0 4rem; }

  .features,
  .how-it-works,
  .philosophy,
  .download-cta { padding: 4rem 0; }

  .page-wrapper { padding: 3rem 0 4rem; }

  .main-nav { gap: 1.25rem; }
  .main-nav a { font-size: 0.875rem; }
  .nav-cta { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 2.25rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .main-nav { gap: 1rem; }
}
