/*
 * ── Self-hosted Quicksand Variable Font ──────────────────────────────────────
 *
 * Download the variable font file from:
 *   https://fonts.google.com/specimen/Quicksand
 *   → click "Download family" → unzip → find "Quicksand-VariableFont_wght.ttf"
 *
 * Place that file in the same folder as this CSS file, then rename it to:
 *   Quicksand-Variable.ttf   (or update the src path below to match)
 *
 * The font supports a continuous weight range of 300–700 (variable wght axis).
 * ─────────────────────────────────────────────────────────────────────────────
 */
@font-face {
  font-family: 'Quicksand';
  src: url('Quicksand-Variable.ttf') format('truetype');
  font-weight: 300 700;   /* full variable range */
  font-style: normal;
  font-display: swap;
}

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

/* ── Variables ── */
:root {
  --color:   #262626;
  --bg:      #ffffff;
}

/* ── Base ── */
html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  color: var(--color);
  font-family: 'Quicksand', sans-serif;
}

/* ── Main card ── */
.card {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* ── Logo ── */
.logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}

.logo-wrap img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-placeholder {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color);
}

/* ── Title ── */
.title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--color);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  margin-bottom: 0.6rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* ── Tagline ── */
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ── Description ── */
.description {
  max-width: 480px;
  text-align: center;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--color);
  margin-bottom: 2.6rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

/*
/* ── CTA Button ── */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: 1px solid var(--color);
  background: var(--color);
  color: var(--bg);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  animation: fadeUp 0.8s 0.55s ease both;
}

.cta:hover {
  background: var(--bg);
  color: var(--color);
  border-color: var(--color);
}

.cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.cta:hover svg {
  transform: translateX(4px);
}
*/

/* ── Animations ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0);     }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
