:root {
  --purple: #2f0e7a;
  --purple-2: #3d1b9e;
  --purple-dark: #1d0750;
  --pink: #e4adca;
  --pink-2: #f0c8dc;
  --pink-soft: #faeaf2;
  --white: #ffffff;
  --cream: #fbf7f5;
  --ink: #1a0d3a;
  --muted: #6b5d8a;
  --line: rgba(47, 14, 122, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

/* ────── STAGE: split layout ────── */
.stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 100vh;
  width: 100%;
}

/* ────── LEFT: visual ────── */
.visual {
  position: relative;
  overflow: hidden;
  background: var(--pink-soft);
}

.visual-img {
  position: absolute;
  inset: 0;
  background-image: url('images/mobile.jpg');
  background-size: cover;
  background-position: center;
}

/* ────── RIGHT: panel ────── */
.panel {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
  position: relative;
}

.panel::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: 0.55;
  filter: blur(12px);
}

.panel::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  opacity: 0.10;
  filter: blur(18px);
}

.panel-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.9s 0.15s both ease-out;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(47, 14, 122, 0.25);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  display: block;
}

.brand-meta { display: flex; flex-direction: column; }

.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 6px;
  line-height: 1;
}

.kicker {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}

/* ── Status pill ── */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  position: relative;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 14, 122, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(47, 14, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 14, 122, 0); }
}

/* ── Title ── */
.title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.title em {
  color: var(--purple);
  font-style: italic;
  font-weight: 700;
  position: relative;
}

.title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--pink);
  opacity: 0.45;
  z-index: -1;
  border-radius: 4px;
}

.lede {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ── Countdown ── */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-2) 100%);
  position: relative;
  overflow: hidden;
}

.countdown::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.18;
  filter: blur(20px);
}

.cd-cell {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cd-cell strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-cell em {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--pink-2);
  font-style: normal;
  font-weight: 500;
}

/* ── Notify form ── */
.notify { margin-bottom: 28px; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.input-wrap {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 4px 4px 4px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap:focus-within {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 14, 122, 0.1);
}

.input-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
}

.input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.input-wrap input::placeholder { color: var(--muted); opacity: 0.7; }

.input-wrap button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border: none;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.input-wrap button:hover { background: var(--purple-dark); }
.input-wrap button:active { transform: scale(0.97); }
.input-wrap button svg { width: 14px; height: 14px; transition: transform 0.2s; }
.input-wrap button:hover svg { transform: translateX(3px); }

.notify-msg {
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 18px;
  color: var(--purple);
  font-weight: 500;
  padding-left: 4px;
}

/* ── Reach (contacts) ── */
.reach {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 32px;
}

.reach-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.reach-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ic-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  background: var(--purple);
  transition: transform 0.18s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 6px 14px rgba(47, 14, 122, 0.18);
}

.ic-btn svg { width: 18px; height: 18px; }
.ic-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 22px rgba(47, 14, 122, 0.28); filter: brightness(1.05); }

.ic-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 6px 14px rgba(18, 140, 126, 0.25); }
.ic-btn.instagram { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); box-shadow: 0 6px 14px rgba(220, 39, 67, 0.25); }
.ic-btn.phone { background: linear-gradient(135deg, var(--purple), var(--purple-2)); }

.phone-num {
  margin-left: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.phone-num:hover { color: var(--purple); }

/* ── Foot ── */
.foot {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.foot .heart {
  color: var(--pink);
  display: inline-block;
  animation: heartbeat 1.4s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.2); }
  40% { transform: scale(1); }
}

/* ────── RESPONSIVE ────── */
@media (max-width: 960px) {
  .stage { grid-template-columns: 1fr; }

  .visual {
    height: 38vh;
    min-height: 280px;
    max-height: 380px;
  }

  .visual-img { background-image: url('images/mobile.jpg'); }

  .panel {
    padding: 36px 24px 32px;
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
    z-index: 2;
  }
}

@media (max-width: 480px) {
  .visual { height: 32vh; min-height: 240px; }
  .panel { padding: 32px 20px 24px; }
  .brand { gap: 12px; margin-bottom: 24px; }
  .logo-circle { width: 56px; height: 56px; }
  .wordmark { font-size: 1.7rem; letter-spacing: 5px; }
  .countdown { padding: 14px 10px; gap: 6px; }
  .cd-cell strong { font-size: 1.5rem; }
  .input-wrap { padding-left: 12px; }
  .input-wrap button { padding: 10px 14px; font-size: 0.82rem; }
  .input-wrap button span { display: none; }
  .input-wrap button svg { width: 16px; height: 16px; }
  .reach-row { gap: 8px; }
  .ic-btn { width: 40px; height: 40px; }
  .phone-num { margin-left: 0; width: 100%; margin-top: 4px; font-size: 0.88rem; }
}
