:root {
  --andy-bg: #f7f4ed;
  --andy-bg-soft: #fbfaf7;
  --andy-surface: rgba(255, 255, 255, 0.86);
  --andy-surface-strong: #ffffff;
  --andy-text: #16201d;
  --andy-muted: #66736c;
  --andy-line: rgba(22, 32, 29, 0.12);
  --andy-glow: rgba(20, 132, 99, 0.18);
  --andy-radius: 24px;
  --andy-shadow: 0 18px 48px rgba(20, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body.andyai-polished-dashboard {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(20, 132, 99, 0.16), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(218, 168, 83, 0.20), transparent 28rem),
    var(--andy-bg);
  color: var(--andy-text);
}

.andyai-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 18px 56px;
}

.andyai-hero {
  border: 1px solid var(--andy-line);
  background: var(--andy-surface);
  box-shadow: var(--andy-shadow);
  border-radius: var(--andy-radius);
  padding: clamp(24px, 4vw, 46px);
  margin-bottom: 22px;
  backdrop-filter: blur(14px);
}

.andyai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--andy-line);
  background: var(--andy-bg-soft);
  color: var(--andy-muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.andyai-hero h1 {
  font-size: clamp(2rem, 5vw, 4.7rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 18px 0 14px;
}

.andyai-hero p {
  max-width: 780px;
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  line-height: 1.68;
  color: var(--andy-muted);
}

.andyai-status-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.andyai-status-pill {
  border: 1px solid var(--andy-line);
  background: var(--andy-surface);
  border-radius: 18px;
  padding: 14px;
  min-height: 90px;
}

.andyai-status-pill strong {
  display: block;
  margin-bottom: 7px;
}

.andyai-card-polish,
.card,
.button-card,
.journey-card {
  border: 1px solid var(--andy-line) !important;
  border-radius: var(--andy-radius) !important;
  box-shadow: 0 14px 34px rgba(20, 34, 29, 0.08);
  background: var(--andy-surface-strong);
}

.andyai-victory-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--andy-line);
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--andy-text);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(20, 34, 29, 0.18);
}

.andyai-proof-note {
  border-left: 4px solid rgba(20, 132, 99, 0.52);
  background: rgba(20, 132, 99, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 18px 0;
}

@media (max-width: 760px) {
  .andyai-shell {
    padding: 18px 12px 36px;
  }

  .andyai-status-rail {
    grid-template-columns: 1fr;
  }

  .andyai-hero {
    padding: 22px;
  }
}
