/* Saverly landing page. Kept apart from styles.css so the app never loads it. */

:root {
  color-scheme: only light;
  --bg: #f5ead8;          /* her brand cream */
  --surface: #fffdf9;
  --ink: #201e1d;
  --muted: #6f6353;
  --line: #e3d6c0;
  --orange: #ff6a1a;
  --orange-deep: #e85a0c;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(60, 40, 15, .05), 0 10px 30px rgba(60, 40, 15, .06);
}

[data-theme="dark"] {
  color-scheme: only dark;
  --bg: #0f0e0d;
  --surface: #1c1c1e;
  --ink: #f2ede4;
  --muted: #a2988a;
  --line: #322e29;
  --orange: #ff7a30;
  --orange-deep: #ff8f4d;
  --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 10px 30px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* One page, two languages. Only the chosen one is ever shown. */
[data-lang="en"] [data-l="pt"],
[data-lang="pt"] [data-l="en"] { display: none !important; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ───── Top bar ───── */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 0;
}
.brand-logo {
  display: block;
  width: 116px;
  height: 36px;
  background: url("logo-light.png") no-repeat center / contain;
}
[data-theme="dark"] .brand-logo { background-image: url("logo-dark.png"); }
.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 14px;
  cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--orange); color: #fff; }

/* ───── Hero ───── */
.hero { padding: 58px 0 12px; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}
h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 800;
}
.lead { margin: 0 0 30px; font-size: clamp(17px, 2.4vw, 20px); color: var(--muted); }
.lead strong { color: var(--ink); font-weight: 600; }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  padding: 15px 30px;
  border-radius: 12px;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.cta-note { font-size: 14px; color: var(--muted); }

/* ───── Sections ───── */
section { padding: 46px 0; }
h2 {
  margin: 0 0 8px;
  font-size: clamp(23px, 3.4vw, 29px);
  letter-spacing: -.02em;
  font-weight: 800;
}
.sub { margin: 0 0 26px; color: var(--muted); }

.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 22px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--orange);
  opacity: .9;
}
.checks strong { color: var(--ink); font-weight: 650; }

.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 750; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.panel h2 { margin-bottom: 12px; }
.panel p { margin: 0 0 14px; color: var(--muted); }
.panel p:last-child { margin-bottom: 0; }
.panel strong { color: var(--ink); font-weight: 650; }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: s; display: grid; gap: 18px; }
.steps li { counter-increment: s; position: relative; padding-left: 52px; color: var(--muted); }
.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.steps strong { color: var(--ink); font-weight: 650; display: block; }

.closing { text-align: center; padding: 54px 0 20px; }
.closing h2 { margin-bottom: 18px; }

/* ───── Footer ───── */
footer {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding: 30px 0 60px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
footer p { margin: 0 0 12px; }
footer strong { color: var(--ink); font-weight: 650; }
footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
footer a:hover { color: var(--orange); }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 18px; }
