
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;700&family=Source+Sans+3:wght@400;500;600&family=IBM+Plex+Mono&display=swap');

:root {
  --surface: #F3E6D4;
  --surface-elevated: rgba(255,248,243,0.92);
  --surface-inset: #E2CDAD;
  --navy: #241910;
  --navy-soft: #1F7A6E;
  --accent: #E76F51;
  --accent-soft: #E9C46A;
  --text: #241910;
  --text-muted: #6B5846;
  --border: rgba(36,25,16,0.12);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(ellipse 90% 70% at 0% 0%, rgba(36, 25, 16, 0.2), transparent 55%), radial-gradient(ellipse 70% 60% at 100% 20%, rgba(231, 111, 81, 0.16), transparent 50%), radial-gradient(ellipse 50% 40% at 50% 100%, rgba(36, 25, 16, 0.08), transparent), linear-gradient(165deg, #F3E6D4, #E2CDAD);
  min-height: 100dvh;
}

.shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
}


.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(36, 25, 16, 0.06);
  background: rgba(243, 230, 212, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}


.brand-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.nav-pill:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}


.hero-band {
  margin: 16px 20px 0;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #241910 0%, #1F7A6E 100%);
  color: #fff;
  
  
  box-shadow: 0 12px 40px rgba(36, 25, 16, 0.22);
  position: relative;
  overflow: hidden;
}


.hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.02) 3px,
    rgba(255, 255, 255, 0.02) 4px
  );
  pointer-events: none;
}

.hero-band > * { position: relative; z-index: 1; }

.hero-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.hero-band h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.hero-updated { font-size: 13px; opacity: 0.75; }


.content { padding: 20px 20px 40px; }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 24px 0 10px;
}

.section-label:first-child { margin-top: 8px; }


.card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(36, 25, 16, 0.06);
  backdrop-filter: blur(8px);
}


.card h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  white-space: pre-line;
}

.legal-footer {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-inset);
  text-align: center;
}

.legal-footer-app {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.legal-footer-contact { font-size: 13px; color: var(--text-muted); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

