/* ==========================================================================
   Isoledil '90 — Coming Soon page
   Palette coerente con landing v1.0 (rosso #C41E1E)
   Layout: full-viewport centered, mobile-first, sfondo bianco
   ========================================================================== */

:root {
  --red-primary: #C41E1E;
  --red-dark: #9A1515;
  --red-light: #E8302F;
  --black: #111111;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #C4C4C4;
  --gray-100: #F2F2F2;
  --white: #FFFFFF;
  --success: #1B8C3A;
  --green-soft: #DEF5E5;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 720px;
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Page wrapper ===== */
.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(ellipse 600px 400px at 100% 0%, rgba(196,30,30,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 500px 350px at 0% 100%, rgba(196,30,30,0.05) 0%, transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}

/* Pattern decorativo molto sottile */
.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(196,30,30,0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.025) 1px, transparent 1.5px);
  background-size: 70px 70px, 100px 100px;
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
}

/* ===== Logo ===== */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 36px;
}

.logo-wrap img {
  width: auto;
  max-width: 340px;
  max-height: 170px;
  margin: 0 auto;
}

/* ===== Status badge ===== */
.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-soft);
  border: 1px solid rgba(27, 140, 58, 0.35);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 24px;
  max-width: 100%;
}

.status-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
}

.status .dot {
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}

/* ===== Headline ===== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}

h1 .highlight { color: var(--red-primary); }

.subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--gray-700);
  max-width: 540px;
  margin: 0 auto 16px;
}

.zona {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

/* ===== CTA buttons ===== */
.ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 56px;
  min-width: 220px;
}

.btn-call {
  background: var(--red-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 30, 30, 0.35);
}
.btn-call:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 30, 30, 0.5);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.phone-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: 0.01em;
}

.note {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  color: var(--gray-500);
  padding: 24px;
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid var(--gray-100);
}
.footer p { margin: 2px 0; }
.footer strong { color: var(--gray-900); font-weight: 600; }
.footer a {
  color: var(--red-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--red-dark); text-decoration: underline; }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .page { padding: 32px 16px; }
  .logo-wrap { margin-bottom: 28px; }
  .logo-wrap img { max-width: 260px; max-height: 130px; }
  .ctas { flex-direction: column; gap: 12px; }
  .btn { width: 100%; min-width: 0; }
  .phone-display { font-size: 1.25rem; }
  h1 { margin-bottom: 12px; }
  .zona { margin-bottom: 28px; }
  .status {
    font-size: 0.78rem;
    padding: 9px 18px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 380px) {
  .logo-wrap img { max-width: 220px; max-height: 110px; }
  .status {
    font-size: 0.72rem;
    padding: 8px 16px;
    letter-spacing: 0.03em;
  }
}
