/* ===========================================================
   Inacts — Coming Soon
   Mobile-first, responsive landing page (HTML + CSS only)
   =========================================================== */

/* --- Design tokens --- */
:root {
  --bg:            #f5f2eb;   /* soft warm beige */
  --card-bg:       #ffffff;   /* white card      */
  --text:          #1f2422;   /* near-black body */
  --muted:         #6b716c;   /* secondary text  */
  --heading:       #8a8f88;   /* muted uppercase */
  --green:         #2f9e6f;   /* button          */
  --green-dark:    #268a60;   /* button hover    */
  --radius-card:   24px;
  --radius-button: 999px;
  --shadow:        0 30px 60px -20px rgba(40, 50, 45, 0.25),
                   0 12px 24px -12px rgba(40, 50, 45, 0.15);
}

/* --- Reset / base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Layout: full viewport, centered --- */
.page {
  min-height: 100vh;
  min-height: 100svh; /* better on mobile with dynamic toolbars */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* --- Card --- */
.card {
  width: 100%;
  max-width: 520px;
  background-color: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.card__logo {
  width: auto;
  height: 72px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.card__heading {
  font-size: 0.8125rem;        /* ~13px */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading);
}

.card__body {
  font-size: 1.0625rem;        /* ~17px */
  font-weight: 400;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto;
}

/* --- Button --- */
.card__button {
  display: inline-block;
  margin-top: 16px;
  padding: 16px 36px;
  background-color: var(--green);
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-button);
  box-shadow: 0 10px 20px -8px rgba(47, 158, 111, 0.6);
  transition: transform 0.18s ease,
              background-color 0.18s ease,
              box-shadow 0.18s ease;
  will-change: transform;
}

.card__button:hover {
  background-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -8px rgba(47, 158, 111, 0.7);
}

.card__button:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px -8px rgba(47, 158, 111, 0.6);
}

.card__button:focus-visible {
  outline: 3px solid rgba(47, 158, 111, 0.4);
  outline-offset: 3px;
}

/* --- Larger screens: a touch more breathing room --- */
@media (min-width: 480px) {
  .card {
    padding: 56px 48px;
  }
}

/* --- Respect reduced-motion preferences --- */
@media (prefers-reduced-motion: reduce) {
  .card__button {
    transition: background-color 0.18s ease;
  }
  .card__button:hover {
    transform: none;
  }
}
