/* Coach Assistant front page. Deliberately tiny: one question, one card. */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #DC2626;
  --ink: #161616;
  --paper: #FAF7F3;
  --muted: #6B6B6B;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink) 55%, var(--red) 55.2%, #9A0B22 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  padding: 24px;
}

.wrap { width: min(560px, 100%); display: grid; gap: 40px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 56px; height: 56px; border-radius: 14px; }
.brand__name { font-size: 15px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.85; }

.ask__q {
  font-size: clamp(34px, 8vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.ask__card {
  display: grid;
  justify-items: center;
  gap: 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 26px 22px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.ask__card:hover, .ask__card:focus-visible {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.55);
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.ask__shield { width: min(260px, 70vw); height: auto; border-radius: 16px; }
.ask__go { font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.ask__arrow { font-size: 22px; color: var(--red); }

.foot { display: flex; justify-content: center; }
.foot__signin {
  color: #fff; opacity: 0.55; font-size: 13px; text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5); padding: 10px 4px;
}
.foot__signin:hover, .foot__signin:focus-visible { opacity: 1; }
