/* Inter — same typeface the app ships. Self-hosted; nothing loads off-site. */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600; font-display: swap;
}

:root {
  --green: #0D9488;        /* app accent */
  --green-deep: #0B7C72;
  --cream: #F5F1E8;
  --ink: #1E293B;          /* app titleText */
  --ink-soft: #334155;     /* app valueText */
  --label: #64748B;        /* app labelText */
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}

.inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 136px 0 120px;
  background:
    linear-gradient(152deg, var(--green) 0%, var(--green-deep) 62%, #096B63 100%);
}

.hero .inner { position: relative; }

/* Regular against the tagline's light — the title should carry more weight
   than the line beneath it. */
.hero h1 {
  font-size: clamp(42px, 9vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.hero .rule {
  width: 96px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  margin: 0 0 22px;
}

.hero .tagline {
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 300;
  margin: 0;
  opacity: 0.9;
  max-width: 34ch;
}

/* Entrance: slight, staggered, and skipped entirely for anyone who has asked
   for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .hero .rule,
  .hero .tagline {
    animation: rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hero .rule    { animation-delay: 0.1s; }
  .hero .tagline { animation-delay: 0.19s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── About ────────────────────────────────────────────────────────────────── */

.about {
  background: var(--cream);
  color: var(--ink);
  padding: 88px 0;
}

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 60ch;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 32px;
}

/* Stubs until the listings exist. Not links yet, so they must not look
   clickable — no href, and the cursor stays default. */
.store-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 210px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  border: none;
  opacity: 0.45;
  cursor: default;
}

.store-kicker {
  font-size: 11px;
  letter-spacing: 0.4px;
  opacity: 0.85;
}

.store-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.fineprint {
  font-size: 14px;
  color: var(--label);
  margin: 0;
  max-width: 60ch;
}

/* ── Contact ──────────────────────────────────────────────────────────────── */

.contact {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
}

.contact h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 24px;
}

.contact dl {
  margin: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  row-gap: 10px;
  align-items: baseline;
}

.contact dt {
  font-size: 14px;
  opacity: 0.6;
}

.contact dd {
  margin: 0;
  font-size: 16px;
}

.copyright {
  margin: 36px 0 0;
  font-size: 13px;
  opacity: 0.5;
}

/* ── Links ────────────────────────────────────────────────────────────────── */

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.contact a { border-bottom-color: rgba(255, 255, 255, 0.35); }
.contact a:hover { border-bottom-color: var(--white); }

.about a { color: var(--green-deep); border-bottom-color: rgba(13, 148, 136, 0.4); }
.about a:hover { border-bottom-color: var(--green-deep); }

.store-btn { border-bottom: none; }

/* ── Privacy page ─────────────────────────────────────────────────────────── */

.doc {
  background: var(--cream);
  color: var(--ink);
  padding: 64px 0 96px;
}

.doc .inner { max-width: 720px; }

.doc-back {
  display: inline-block;
  font-size: 14px;
  color: var(--label);
  margin-bottom: 32px;
  border-bottom-color: rgba(100, 116, 139, 0.35);
}

.doc h1 {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 300;
  letter-spacing: -0.8px;
  margin: 0 0 8px;
}

.doc .meta {
  font-size: 14px;
  color: var(--label);
  margin: 0 0 36px;
}

.doc h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 44px 0 12px;
  letter-spacing: -0.2px;
}

.doc h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
}

.doc p, .doc li {
  font-size: 16px;
  color: var(--ink-soft);
}

.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 14px; padding-left: 22px; }
.doc li { margin-bottom: 7px; }

.doc strong { color: var(--ink); font-weight: 600; }

.notice {
  background: rgba(13, 148, 136, 0.08);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 0 36px;
}

.notice p { margin: 0; font-size: 15px; }

.table-wrap { overflow-x: auto; margin: 0 0 20px; }

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 460px;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.12);
  color: var(--ink-soft);
}

th {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .hero { padding: 88px 0 76px; }
  .about, .contact { padding: 60px 0; }
  .store-btn { min-width: 100%; }
  .contact dl { grid-template-columns: 1fr; row-gap: 2px; }
  .contact dt { margin-top: 12px; }
}
