/* =========================================================
   Afterly.io — Coming Soon  |  Brand CI stylesheet
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500&display=swap');

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --color-primary:    #4BA6A4;
  --color-primary-dk: #3b8e8c;
  --color-sand:       #F2E9E2;
  --color-anthracite: #2F3437;
  --color-white:      #ffffff;

  --font-brand: 'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius-card: 16px;
  --shadow-card: 0 4px 24px rgba(47, 52, 55, 0.08);
  --shadow-btn:  0 2px 12px rgba(75, 166, 164, 0.30);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-anthracite);
  background-color: var(--color-sand);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Subtle background decoration ─────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(75,166,164,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(245,183,177,.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout wrapper ────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 48px 24px 64px;
  gap: 48px;
  text-align: center;
}

/* ── Logo / brand mark ─────────────────────────────────── */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
}

.brand__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-anthracite);
}

.brand__name span {
  color: var(--color-primary);
}

/* ── Hero card ─────────────────────────────────────────── */
.hero-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px 40px;
  max-width: 580px;
  width: 100%;
}

.hero-card__tag {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(75, 166, 164, 0.10);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.hero-card__headline {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-anthracite);
  margin-bottom: 16px;
}

.hero-card__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-card__sub {
  font-size: 1.05rem;
  color: #5a6265;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px 32px;
  font-size: 0.82rem;
  color: #8fa2a3;
}

.footer a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 520px) {
  .hero-card {
    padding: 36px 24px;
  }

  .hero-card__headline {
    font-size: 1.75rem;
  }
}
