/* Mariah Glam — Coming Soon
   Theme: Light blue & white
-------------------------------------------------------------- */
:root {
  --mg-bg: #f5f9ff;
  --mg-bg-soft: #ffffff;
  --mg-primary: #64b5ff;
  --mg-primary-soft: rgba(100, 181, 255, 0.15);
  --mg-primary-deep: #2f80ff;
  --mg-text-main: #0f172a;
  --mg-text-muted: #6b7280;
  --mg-border: rgba(148, 163, 184, 0.35);
  --mg-radius-lg: 28px;
  --mg-radius-md: 20px;
  --mg-radius-pill: 999px;
  --mg-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --mg-shadow-subtle: 0 8px 25px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(100, 181, 255, 0.16), transparent 55%),
              radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.9), #e5f0ff);
  color: var(--mg-text-main);
}

/* Layout wrapper */
.mg-page {
  max-width: 1120px;
  margin: 32px auto;
  padding: 20px 20px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,249,255,0.98));
  box-shadow: var(--mg-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header */
.mg-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mg-logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.mg-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mg-logo-name {
  font-weight: 600;
  font-size: 20px;
}

.mg-logo-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mg-text-muted);
}

/* Main layout */
.mg-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Hero section */
.mg-hero {
  padding-right: 8px;
}

.mg-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--mg-radius-pill);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  background: var(--mg-primary-soft);
  color: var(--mg-primary-deep);
  border: 1px solid rgba(100, 181, 255, 0.26);
}

.mg-hero h1 {
  margin: 14px 0 6px;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
}

.mg-highlight {
  background: linear-gradient(120deg, var(--mg-primary), var(--mg-primary-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mg-lead {
  margin: 0 0 20px;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mg-text-muted);
}

/* Countdown */
.mg-countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding: 10px 12px;
  border-radius: var(--mg-radius-md);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--mg-border);
  backdrop-filter: blur(12px);
}

.mg-countdown-item {
  flex: 1 1 0;
  text-align: center;
}

.mg-count-number {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.mg-count-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mg-text-muted);
}

/* Form */
.mg-form {
  margin-bottom: 16px;
}

.mg-form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--mg-text-main);
}

.mg-form-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mg-form-row input {
  flex: 1 1 auto;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--mg-border);
  font-size: 13px;
  outline: none;
  background: rgba(255,255,255,0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mg-form-row input:focus {
  border-color: var(--mg-primary);
  box-shadow: 0 0 0 1px rgba(100, 181, 255, 0.35);
  background: #fff;
}

.mg-form-row button {
  border-radius: 999px;
  padding: 10px 18px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-deep));
  color: #fff;
  box-shadow: var(--mg-shadow-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.mg-form-row button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
}

.mg-form-row button:active {
  transform: translateY(0);
  box-shadow: var(--mg-shadow-subtle);
}

.mg-form-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--mg-text-muted);
}

.mg-form-success {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #0f766e;
}

/* Trust row */
.mg-trust-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mg-trust-chip {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(255,255,255,0.9);
  color: var(--mg-text-muted);
}

/* Chips */
.mg-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.mg-chip {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255,255,255,0.86);
  color: var(--mg-text-muted);
}

/* Side cards */
.mg-side-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mg-card {
  border-radius: var(--mg-radius-lg);
  padding: 16px 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--mg-shadow-subtle);
  backdrop-filter: blur(18px);
}

.mg-card h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.mg-card p {
  margin: 0;
  font-size: 13px;
  color: var(--mg-text-muted);
}

.mg-card-waist {
  background: linear-gradient(130deg, rgba(100, 181, 255, 0.15), rgba(255,255,255,0.96));
}

.mg-card-lounge {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(100, 181, 255, 0.20));
}

.mg-card-promise {
  background: rgba(255,255,255,0.96);
}

.mg-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--mg-text-muted);
}

.mg-list li + li {
  margin-top: 4px;
}

/* Footer */
.mg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  padding-top: 14px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--mg-text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.mg-footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mg-footer-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/*mg-social {
  display: flex;
  gap: 6px;
}

.mg-social a {
  text-decoration: none;
}

.mg-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--mg-text-main);
  background: rgba(255,255,255,0.9);
  transition: background 0.2s ease, transform 0.16s ease, box-shadow 0.2s ease;
}

.mg-social-icon:hover {
  background: var(--mg-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}*/

/* Social Icons */
.mg-social {
  display: flex;
  gap: 8px;
}

.mg-social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Font Awesome Icon Style */
.mg-social a i {
  font-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255,255,255,0.9);
  color: var(--mg-text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

/* Hover effects */
.mg-social a:hover i {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  border-color: transparent;
}

/* Brand-specific hover colors */
.mg-social a:hover i.fa-instagram {
  color: #E1306C; /* Instagram hot pink */
}

.mg-social a:hover i.fa-tiktok {
  color: #000; /* TikTok core color */
}

.mg-social a:hover i.fa-x-twitter {
  color: #000; /* X/Twitter */
}

.mg-social a:hover i.fa-facebook-f {
  color: #1877F2; /* Facebook blue */
}

.mg-social a:hover i.fa-youtube {
  color: #FF0000; /* YouTube red */
}

.mg-social a:hover i.fa-pinterest-p {
  color: #E60023; /* Pinterest */
}

/* Responsive */
@media (max-width: 900px) {
  .mg-page {
    margin: 0;
    min-height: 100vh;
    border-radius: 0;
  }
  .mg-main {
    grid-template-columns: minmax(0, 1fr);
  }
  .mg-side-panel {
    order: -1;
  }
}

@media (max-width: 640px) {
  .mg-page {
    padding: 16px 14px 18px;
  }

  .mg-hero {
    padding-right: 0;
  }

  .mg-countdown {
    gap: 10px;
  }

  .mg-count-number {
    font-size: 16px;
  }

  .mg-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mg-form-row button {
    width: 100%;
  }

  .mg-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
