/* redwolfmedia.com — one stylesheet, no JS, no external requests */
:root {
  --bg: #3d3d3d;
  --surface: #343437;
  --border: #4a4a4e;
  --text: #ececec;
  --muted: #b0b0b6;
  --red: #fd0200;
  --red-deep: #c40200;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.wrap { max-width: 42rem; margin: 0 auto; padding: 0 1.25rem 3rem; }

/* Landing hero */
.site-header { text-align: center; padding-top: 2.5rem; }
.logo { width: 100%; max-width: 34rem; height: auto; display: block; margin: 0 auto; }
.tagline { color: var(--muted); font-size: 1.05rem; }
/* Tapered streak echoing the logo's baseline swoosh: solid left, fading right */
.rule {
  border: 0; height: 3px; width: 10rem;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 45%, transparent 100%);
  margin: 1.5rem auto 2.25rem;
}

/* Inner-page header: white wordmark, red underline (red is never text) */
.mini-header { padding-top: 1.75rem; }
.mini-header a {
  color: var(--text); font-weight: 800; font-size: 1.1rem; text-decoration: none;
  border-bottom: 2px solid var(--red); padding-bottom: 2px;
}
.mini-header a:hover { color: #fff; }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
h1 { font-size: 2rem; margin: 1.5rem 0 0.5rem; }
h2 { font-size: 1.35rem; margin: 2.25rem 0 0.6rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
p { margin-bottom: 1rem; }
.lede { font-size: 1.2rem; font-weight: 600; }
.muted { color: var(--muted); }

a { color: var(--text); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: #fff; }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.btn:focus-visible { outline-color: #fff; }

ul { padding-left: 1.3rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* App cards (landing) */
.card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.15rem 1.4rem; margin-bottom: 1rem; text-decoration: none;
}
.card:hover { border-color: var(--red); }
.card p { color: var(--muted); margin: 0; }
/* Tap affordance: cards are links, phones have no hover */
.card h3::after { content: " \2192"; color: var(--red); }

/* Buttons: white bold text on red — min 44px tap target */
.btn {
  display: inline-block; background: var(--red); color: #fff; font-weight: 700;
  font-size: 1.05rem; padding: 0.85rem 1.5rem; border-radius: 10px;
  text-decoration: none; min-height: 44px;
}
.btn:hover { background: var(--red-deep); color: #fff; }

/* Privacy highlight box */
.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--red); border-radius: 8px;
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.callout p:last-child { margin-bottom: 0; }

.soon { color: var(--muted); font-style: italic; }

footer {
  margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.95rem;
}
footer p { margin-bottom: 0.35rem; }
