/* Manrope, self-hosted (variable font, weights 400 & 600) — no external calls */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/manrope-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/manrope-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #f8f7f3;          /* cream */
  --surface: #ffffff;
  --border: #e5e2d9;
  --text: #1a1a1a;        /* near-black body */
  --text-muted: #55524c;
  --headline: #493bf2;    /* deep ocean */
  --headline-hover: #372cc9;
  --accent: #ed7741;      /* tangerine */
  --accent-soft: #fdece1; /* tangerine wash for callout background */
  --accent-border: #ecb193;
  --max-width: 720px;
  --radius: 12px;
  --font: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}

h1, h2, h3 {
  font-weight: 600;
  color: var(--headline);
  line-height: 1.25;
}

a { color: var(--headline); }
a:hover { color: var(--headline-hover); }

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

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--headline);
  text-decoration: none;
}
.brand span { color: var(--text-muted); font-weight: 400; }

/* Hero */
.hero { padding: 44px 0 8px; }
.hero h1 {
  font-size: 1.85rem;
  margin: 0 0 14px;
}
.hero .lede {
  color: var(--text);
  font-size: 1.1rem;
  margin: 0;
}

/* Primary call to action */
.cta-block {
  margin: 32px 0 8px;
}
.btn-primary {
  display: block;
  width: 100%;
  background: var(--headline);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 20px 24px;
  border-radius: var(--radius);
  min-height: 44px;
  transition: background 0.15s ease;
}
.btn-primary:hover {
  background: var(--headline-hover);
  color: #ffffff;
}

.teasers {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.teasers li { margin: 0; }
.teasers a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 4px;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.teasers li:first-child a { border-top: 1px solid var(--border); }
.teasers a:hover { text-decoration: underline; }
.teasers a::after {
  content: "\2192";
  margin-left: auto;
  padding-left: 12px;
  color: var(--accent);
}

/* Section rhythm */
section { margin-top: 8px; }
.section-title {
  font-size: 1.35rem;
  margin: 44px 0 12px;
}

/* Payment warning callout (tangerine accent) */
.callout {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 44px 0;
}
.callout p { margin: 0; color: var(--text); }
.callout .callout-label {
  color: var(--accent);
  font-weight: 600;
}

/* Trust block */
.trust p { margin: 0 0 14px; }
.trust .legal-links {
  margin: 4px 0 0;
  font-weight: 600;
}
.trust .legal-links a { margin-right: 18px; }

/* Contact section */
.contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 24px 24px;
  margin: 40px 0 8px;
}
.contact ol {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.contact li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact li:last-child { border-bottom: 0; }
.contact h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
}
.contact .meta { color: var(--text-muted); font-size: 0.98rem; margin: 4px 0 0; }
.contact a.line {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.contact a.line:hover { text-decoration: underline; }
.contact .btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  text-decoration: none;
}
.contact .merchant {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact .merchant a { word-break: break-word; }

/* Legal content pages */
.legal { padding: 40px 0; }
.legal h1 { font-size: 1.8rem; margin: 0 0 24px; }
.legal h2 { font-size: 1.2rem; margin: 32px 0 8px; }
.legal p, .legal li { color: var(--text); }
.legal .muted { color: var(--text-muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 28px 0 44px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--text-muted); }
.site-footer nav a {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  margin-left: 18px;
}
.site-footer nav a:first-child { margin-left: 0; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 32px 0 4px; }
  .hero h1 { font-size: 1.55rem; }
  .btn-primary { font-size: 1.1rem; padding: 18px 20px; }
  .site-footer .container { flex-direction: column; }
  .site-footer nav a { margin-left: 0; margin-right: 18px; }
}
