:root {
  color-scheme: light dark;
  --background: #f5f7fb;
  --background-deep: #edf2f9;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(74, 105, 151, 0.16);
  --border-strong: rgba(74, 105, 151, 0.24);
  --text: #172033;
  --muted: #526078;
  --subtle: #6f7c91;
  --accent: #2869d8;
  --accent-strong: #1855b8;
  --accent-soft: rgba(65, 132, 232, 0.12);
  --shadow: 0 24px 70px rgba(45, 76, 122, 0.12);
  --max-width: 1040px;
  --reading-width: 780px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(90, 151, 239, 0.2), transparent 31rem),
    radial-gradient(circle at 92% 17%, rgba(127, 192, 244, 0.16), transparent 27rem),
    linear-gradient(180deg, #fbfcfe 0, var(--background) 34rem, var(--background-deep) 100%);
  line-height: 1.72;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

a:focus-visible {
  outline: 3px solid rgba(40, 105, 216, 0.3);
  outline-offset: 4px;
  border-radius: 6px;
}

.shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(74, 105, 151, 0.12);
  background: rgba(248, 250, 253, 0.78);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  backdrop-filter: saturate(150%) blur(20px);
}

.site-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--text);
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, #8bc7ff, #397ae0 70%);
  box-shadow: 0 8px 20px rgba(57, 122, 224, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

main { padding: 64px 0 72px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)), var(--surface);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(79, 145, 235, 0.14);
  filter: blur(16px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 11px;
  border: 1px solid rgba(40, 105, 216, 0.12);
  border-radius: 999px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

h1, h2, h3, p { position: relative; z-index: 1; }

h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.meta span {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--subtle);
  background: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.principles, .entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.entry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.principle, .entry-card, .legal-section, .support-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(53, 83, 127, 0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.principle, .entry-card, .support-card {
  border-radius: 24px;
  padding: 24px;
}

.principle-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 700;
}

.principle h2, .entry-card h2, .support-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.principle p, .entry-card p, .support-card p { margin: 0; color: var(--muted); }

.entry-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.entry-card:hover {
  color: inherit;
  border-color: var(--border-strong);
  box-shadow: 0 18px 46px rgba(53, 83, 127, 0.12);
  transform: translateY(-2px);
}

.entry-label {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-strong);
}

.contact-strip p { margin: 0; color: var(--muted); }
.contact-strip a { flex: 0 0 auto; font-weight: 650; }

.legal-content {
  width: min(var(--reading-width), 100%);
  margin: 20px auto 0;
  display: grid;
  gap: 14px;
}

.legal-section {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.legal-section p { margin: 12px 0; color: var(--muted); font-size: 16px; }
.legal-section p:last-child { margin-bottom: 0; }

ul, ol { margin: 12px 0 0; padding-left: 1.35em; color: var(--muted); }
li + li { margin-top: 8px; }

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(40, 105, 216, 0.14);
  border-radius: 16px;
  color: #385276;
  background: var(--accent-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin-top: 20px;
  align-items: start;
}

.support-card ul { margin-bottom: 0; }

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 13px;
  color: #fff;
  background: var(--accent);
  font-weight: 650;
  text-decoration: none;
}

.email-button:hover { color: #fff; background: var(--accent-strong); }

.faq-list { display: grid; gap: 12px; margin: 0; }
.faq-list > div { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.faq-list > div:last-child { padding-bottom: 0; border-bottom: 0; }
.faq-list dt { color: var(--text); font-weight: 680; }
.faq-list dd { margin: 6px 0 0; color: var(--muted); }

.site-footer { padding: 0 0 44px; color: var(--subtle); font-size: 13px; }

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-title { color: var(--text); font-weight: 700; }
.footer-copy { margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
.footer-links a { color: var(--muted); }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, var(--max-width)); }
  .site-nav { min-height: auto; padding: 13px 0 12px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav-links { width: 100%; justify-content: flex-start; gap: 3px; }
  .nav-links a { padding: 7px 8px; }
  main { padding: 36px 0 52px; }
  .hero { padding: 30px 22px; border-radius: 26px; }
  h1 { font-size: clamp(38px, 13vw, 54px); }
  .principles, .entry-grid, .support-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 0; }
  .contact-strip, .footer-inner { align-items: flex-start; flex-direction: column; }
  .contact-strip a { flex: initial; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #101722;
    --background-deep: #0c121c;
    --surface: rgba(24, 34, 49, 0.78);
    --surface-strong: rgba(28, 39, 56, 0.9);
    --border: rgba(171, 201, 239, 0.14);
    --border-strong: rgba(171, 201, 239, 0.24);
    --text: #f0f5fc;
    --muted: #b7c4d7;
    --subtle: #94a4ba;
    --accent: #78adff;
    --accent-strong: #a3c7ff;
    --accent-soft: rgba(96, 157, 248, 0.15);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  }

  body {
    background:
      radial-gradient(circle at 8% 4%, rgba(70, 130, 218, 0.18), transparent 31rem),
      radial-gradient(circle at 92% 17%, rgba(71, 137, 194, 0.13), transparent 27rem),
      linear-gradient(180deg, #131c29 0, var(--background) 34rem, var(--background-deep) 100%);
  }

  .site-header { background: rgba(15, 22, 33, 0.8); }
  .nav-links a:hover, .nav-links a[aria-current="page"], .meta span { background: rgba(255, 255, 255, 0.07); }
  .hero { background: linear-gradient(135deg, rgba(42, 58, 82, 0.82), rgba(21, 31, 46, 0.68)), var(--surface); }
  .note { color: #c2d8f8; }
}

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

/* Product homepage */
.product-page {
  --product-ink: #e1e0cc;
  --product-muted: rgba(225, 224, 204, 0.62);
  --product-card: #171717;
  color: var(--product-ink);
  background: #000;
  font-family: "Almarai", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.product-page a {
  color: inherit;
  text-decoration: none;
}

.product-page a:hover { color: inherit; }

.product-page a:focus-visible {
  outline: 2px solid var(--product-ink);
  outline-offset: 5px;
  border-radius: 8px;
}

.product-main {
  width: 100%;
  padding: 16px;
}

.product-hero {
  position: relative;
  min-height: calc(100svh - 32px);
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 72% 30%, #33475e 0, #152230 24%, #080b0f 58%, #020202 100%);
  isolation: isolate;
}

.product-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000);
}

.product-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  display: flex;
  max-width: calc(100% - 16px);
  gap: clamp(20px, 3.5vw, 56px);
  padding: 12px 32px 14px;
  overflow-x: auto;
  border-radius: 0 0 24px 24px;
  background: #000;
  white-space: nowrap;
  transform: translateX(-50%);
  scrollbar-width: none;
}

.product-nav::-webkit-scrollbar { display: none; }

.product-nav a {
  color: rgba(225, 224, 204, 0.76);
  font-size: 14px;
  transition: color 180ms ease;
}

.product-nav a:hover,
.product-nav a[aria-current="page"] { color: var(--product-ink); }

.product-glow {
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(117, 177, 239, 0.18);
  filter: blur(60px);
}

.product-icon-backdrop {
  position: absolute;
  top: 15%;
  right: 10%;
  width: min(38vw, 560px);
  border-radius: 25%;
  opacity: 0.62;
  transform: rotate(7deg);
  box-shadow: 0 54px 130px rgba(0, 0, 0, 0.55);
}

.product-hero-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 60px);
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 5vh, 56px);
  color: var(--product-muted);
  font-size: 13px;
}

.product-kicker img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.product-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(76px, 15vw, 270px);
  font-weight: 520;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.product-intro {
  padding-bottom: clamp(0px, 1.2vw, 14px);
}

.product-intro p {
  max-width: 420px;
  margin: 0;
  color: var(--product-muted);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
}

.product-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 6px 7px 6px 20px;
  border-radius: 999px;
  color: #000 !important;
  background: var(--product-ink);
  font-size: 14px;
  font-weight: 650;
}

.product-button span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--product-ink);
  background: #000;
  transition: transform 180ms ease;
}

.product-button:hover span { transform: rotate(45deg); }

.product-statement {
  margin: 16px 0;
  padding: clamp(80px, 12vw, 180px) clamp(24px, 8vw, 120px);
  border-radius: 32px;
  background: #101010;
  text-align: center;
}

.section-label {
  margin: 0 0 34px;
  color: var(--product-muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-statement h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(42px, 7vw, 108px);
  font-weight: 450;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.product-statement h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.product-statement > p:last-child {
  max-width: 650px;
  margin: 48px auto 0;
  color: var(--product-muted);
  font-size: clamp(15px, 1.3vw, 18px);
}

.product-section {
  padding: clamp(72px, 10vw, 150px) clamp(0px, 2vw, 28px);
}

.product-section-heading {
  max-width: 1480px;
  margin: 0 auto 44px;
}

.product-section-heading .section-label { margin-bottom: 18px; }

.product-section-heading h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 450;
  letter-spacing: -0.05em;
}

.product-principles {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.product-principles article {
  display: flex;
  min-height: 370px;
  padding: 28px;
  flex-direction: column;
  background: var(--product-card);
  transition: background 180ms ease, transform 180ms ease;
}

.product-principles article:first-child { border-radius: 22px 0 0 22px; }
.product-principles article:last-child { border-radius: 0 22px 22px 0; }
.product-principles article:hover { background: #202020; transform: translateY(-4px); }

.product-principles span {
  color: rgba(225, 224, 204, 0.36);
  font-size: 12px;
}

.product-principles h3 {
  margin: auto 0 16px;
  color: var(--product-ink);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.product-principles p {
  margin: 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-links {
  display: grid;
  gap: 1px;
  margin: 0 -16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-links > a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 48px;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 6vw, 96px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease;
}

.product-links > a:hover { background: #111; }
.product-links > a > span { color: rgba(225, 224, 204, 0.4); font-size: 12px; }
.product-links h2 { margin: 0; color: var(--product-ink); font-size: clamp(25px, 3vw, 44px); font-weight: 450; letter-spacing: -0.04em; }
.product-links p { max-width: 620px; margin: 8px 0 0; color: var(--product-muted); font-size: 14px; }
.product-links b { color: var(--product-ink); font-size: 24px; font-weight: 400; transition: transform 180ms ease; }
.product-links > a:hover b { transform: rotate(45deg); }

.product-footer {
  display: flex;
  max-width: 1480px;
  margin: 0 auto;
  padding: 62px 0 28px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  color: var(--product-muted);
  font-size: 13px;
}

.product-footer strong { color: var(--product-ink); font-weight: 500; }
.product-footer p { margin: 8px 0 0; }
.product-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.product-footer a { transition: color 180ms ease; }
.product-footer a:hover { color: var(--product-ink); }

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-icon-backdrop { top: 18%; right: 5%; width: min(58vw, 440px); }
  .product-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .product-principles article { min-height: 300px; border-radius: 18px !important; }
}

@media (max-width: 620px) {
  .product-main { padding: 8px; }
  .product-hero { min-height: calc(100svh - 16px); border-radius: 20px; }
  .product-nav { width: auto; max-width: calc(100% - 12px); gap: 20px; padding: 10px 18px 12px; border-radius: 0 0 18px 18px; }
  .product-nav a { font-size: 11px; }
  .product-icon-backdrop { top: 20%; right: -10%; width: 78vw; opacity: 0.46; }
  .product-hero-content { padding: 22px; }
  .product-kicker { margin-bottom: 28px; }
  .product-hero h1 { font-size: clamp(68px, 25vw, 118px); }
  .product-intro p { max-width: 330px; font-size: 14px; }
  .product-statement { margin: 8px 0; padding: 88px 22px; border-radius: 20px; }
  .product-statement > p:last-child { margin-top: 34px; }
  .product-section { padding: 80px 8px; }
  .product-principles { grid-template-columns: 1fr; }
  .product-principles article { min-height: 240px; }
  .product-links { margin: 0 -8px; }
  .product-links > a { grid-template-columns: 32px minmax(0, 1fr) 28px; gap: 10px; padding: 28px 16px; }
  .product-links p { font-size: 13px; }
  .product-footer { padding: 52px 12px 24px; align-items: flex-start; flex-direction: column; }
}

/* Product legal and support pages */
.content-page {
  --background: #000;
  --background-deep: #000;
  --surface: #171717;
  --surface-strong: #101010;
  --border: rgba(225, 224, 204, 0.12);
  --border-strong: rgba(225, 224, 204, 0.22);
  --text: var(--product-ink);
  --muted: var(--product-muted);
  --subtle: rgba(225, 224, 204, 0.46);
  --accent: var(--product-ink);
  --accent-strong: #fffef0;
  --accent-soft: rgba(225, 224, 204, 0.08);
  --shadow: none;
  color-scheme: dark;
  background: #000;
  line-height: 1.7;
}

.content-page .site-header {
  position: sticky;
  top: 0;
  border: 0;
  background: #000;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.content-page .site-nav {
  width: fit-content;
  max-width: calc(100% - 16px);
  min-height: 0;
  padding: 11px 22px 13px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: clamp(18px, 2.8vw, 42px);
  border-radius: 0 0 22px 22px;
  background: #0a0a0a;
}

.content-page .brand {
  gap: 8px;
  color: var(--product-ink);
  font-size: 14px;
  font-weight: 500;
}

.content-page .brand-mark {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 7px;
  background: url("/assets/homepage/deletephoto-app-icon.png") center / cover no-repeat;
  box-shadow: none;
}

.content-page .nav-links {
  width: auto;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.content-page .nav-links::-webkit-scrollbar { display: none; }
.content-page .nav-links a[href="/deletephoto/"] { display: none; }

.content-page .nav-links a {
  padding: 3px 0;
  border-radius: 0;
  color: rgba(225, 224, 204, 0.62);
  background: transparent;
  font-size: 13px;
}

.content-page .nav-links a:hover,
.content-page .nav-links a[aria-current="page"] {
  color: var(--product-ink);
  background: transparent;
}

.content-page main.shell {
  width: min(1480px, calc(100% - 32px));
  padding: 16px 0 0;
}

.content-page .hero {
  display: flex;
  min-height: min(620px, calc(100svh - 96px));
  padding: clamp(38px, 6vw, 88px);
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  border: 0;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 74% 28%, #33475e 0, #152230 25%, #080b0f 60%, #020202 100%);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  isolation: isolate;
}

.content-page .hero::before {
  position: absolute;
  top: 50%;
  right: clamp(24px, 8vw, 120px);
  z-index: -1;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border-radius: 25%;
  background: url("/assets/homepage/deletephoto-app-icon.png") center / cover no-repeat;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.52);
  content: "";
  opacity: 0.2;
  transform: translateY(-52%) rotate(7deg);
}

.content-page .hero::after {
  right: 8%;
  bottom: auto;
  top: 18%;
  z-index: -2;
  width: min(44vw, 650px);
  height: auto;
  aspect-ratio: 1;
  background: rgba(117, 177, 239, 0.16);
  filter: blur(60px);
}

.content-page .eyebrow {
  padding: 6px 11px;
  border-color: rgba(225, 224, 204, 0.14);
  color: var(--product-ink);
  background: rgba(225, 224, 204, 0.07);
  font-weight: 500;
}

.content-page h1 {
  width: 100%;
  max-width: 900px;
  margin-top: 22px;
  color: var(--product-ink);
  font-size: clamp(64px, 10vw, 148px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.content-page .hero-copy {
  max-width: 680px;
  margin-top: 28px;
  color: var(--product-muted);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
}

.content-page .meta { margin-top: 30px; }

.content-page .meta span {
  padding: 7px 11px;
  border-color: rgba(225, 224, 204, 0.13);
  color: rgba(225, 224, 204, 0.54);
  background: rgba(225, 224, 204, 0.04);
}

.content-page .legal-content {
  width: min(960px, 100%);
  margin-top: 16px;
  gap: 4px;
}

.content-page .legal-section,
.content-page .support-card {
  border-color: transparent;
  color: var(--product-ink);
  background: var(--product-card);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.content-page .legal-section {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 22px;
}

.content-page .legal-section h2,
.content-page .support-card h2 {
  color: var(--product-ink);
  font-weight: 500;
}

.content-page .legal-section p,
.content-page .support-card p,
.content-page ul,
.content-page ol,
.content-page .faq-list dd {
  color: var(--product-muted);
}

.content-page .legal-section a,
.content-page .support-card a:not(.email-button),
.content-page .contact-strip a,
.content-page .site-footer a {
  color: var(--product-ink);
  text-decoration: underline;
  text-decoration-color: rgba(225, 224, 204, 0.3);
  text-underline-offset: 0.22em;
}

.content-page .support-grid,
.content-page .contact-strip {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.content-page .support-grid { gap: 4px; margin-top: 16px; }

.content-page .support-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 22px;
}

.content-page .note {
  border-color: rgba(225, 224, 204, 0.1);
  color: rgba(225, 224, 204, 0.72);
  background: rgba(225, 224, 204, 0.05);
}

.content-page .email-button {
  min-height: 46px;
  padding: 9px 10px 9px 18px;
  border-radius: 999px;
  color: #000 !important;
  background: var(--product-ink);
  font-weight: 650;
}

.content-page .email-button:hover { background: #fffef0; }

.content-page .faq-list > div { border-color: rgba(225, 224, 204, 0.12); }
.content-page .faq-list dt { color: var(--product-ink); font-weight: 500; }

.content-page .contact-strip {
  margin-top: 4px;
  padding: 28px 32px;
  border-color: rgba(225, 224, 204, 0.1);
  border-radius: 22px;
  background: #101010;
}

.content-page .contact-strip p { color: var(--product-muted); }

.content-page .site-footer {
  padding: 62px 16px 28px;
  color: rgba(225, 224, 204, 0.48);
  background: #000;
}

.content-page .footer-inner {
  width: min(1480px, 100%);
  padding-top: 0;
  border-top-color: rgba(225, 224, 204, 0.12);
}

.content-page .footer-title { color: var(--product-ink); font-weight: 500; }
.content-page .footer-links a { color: var(--product-muted); text-decoration: none; }

@media (max-width: 760px) {
  .content-page .site-nav {
    width: auto;
    max-width: calc(100% - 12px);
    padding: 10px 15px 12px;
    align-items: center;
    flex-direction: row;
    gap: 14px;
    border-radius: 0 0 18px 18px;
  }

  .content-page .brand { font-size: 12px; }
  html[lang="en"] .content-page .brand span:last-child { display: none; }
  .content-page .brand-mark { width: 22px; height: 22px; }
  .content-page .nav-links { width: auto; gap: 13px; }
  .content-page .nav-links a { padding: 3px 0; font-size: 11px; }

  .content-page main.shell {
    width: calc(100% - 16px);
    padding-top: 8px;
  }

  .content-page .hero {
    min-height: 520px;
    padding: 34px 24px;
    border-radius: 20px;
  }

  .content-page .hero::before {
    top: 25%;
    right: -7%;
    width: 62vw;
    opacity: 0.15;
  }

  .content-page .hero::after { top: 8%; right: -20%; width: 88vw; }
  .content-page h1 { font-size: clamp(54px, 19vw, 82px); }
  .content-page .hero-copy { max-width: 320px; margin-top: 22px; font-size: 14px; }
  .content-page .meta { gap: 6px; margin-top: 24px; }
  .content-page .meta span { padding: 6px 9px; font-size: 11px; }
  .content-page .legal-content { margin-top: 8px; gap: 4px; }
  .content-page .legal-section,
  .content-page .support-card { padding: 26px 22px; border-radius: 18px; }
  .content-page .support-grid { margin-top: 8px; }
  .content-page .contact-strip { margin-top: 4px; padding: 24px 22px; border-radius: 18px; }
  .content-page .site-footer { padding: 52px 20px 24px; }
}
