/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172035;
  background: #f6f1e7;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(238, 77, 118, .2), transparent 28rem),
    radial-gradient(circle at 85% 80%, rgba(30, 101, 214, .18), transparent 30rem),
    #f6f1e7;
}

.hello {
  width: min(720px, calc(100% - 2rem));
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(23, 32, 53, .15);
  border-radius: 2rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 2rem 6rem rgba(23, 32, 53, .12);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #c3275a;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .95;
}

.intro {
  max-width: 34rem;
  margin: 1.5rem 0 2.5rem;
  color: #566078;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

.versions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 0;
}

.versions div {
  padding: 1rem;
  border-radius: 1rem;
  background: #172035;
  color: white;
}

.versions dt { color: #f4bd39; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.versions dd { margin: .35rem 0 0; font-variant-numeric: tabular-nums; }

@media (max-width: 560px) {
  .versions { grid-template-columns: 1fr; }
}
