/* ── Redi Brand Identity CSS ── */
/* Colors: #3C00FF (electric blue), #00FFA0 (mint green), #F35FFF (pink), #00E1FF (cyan), #E1E100 (yellow), #9B00FA (purple) */

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

:root {
  --blue:   #3C00FF;
  --mint:   #00FFA0;
  --pink:   #F35FFF;
  --cyan:   #00E1FF;
  --yellow: #E1E100;
  --purple: #9B00FA;
  --white:  #ffffff;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--mint);
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow-x: hidden;
}

/* ── Bubble borders ── */
.bubble-border {
  width: 100%;
  line-height: 0;
  flex-shrink: 0;
}

.bubble-border svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
}

/* ── Main layout ── */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 5vw, 1.5rem) clamp(2rem, 6vw, 4rem);
  position: relative;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* ── Header / Logo ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 1.4rem);
  animation: fadeDown 0.7s cubic-bezier(0.22,1,0.36,1) both;
  width: 100%;
}

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: clamp(120px, 40vw, 200px);
  height: auto;
  display: block;
}

/* ── Status badge ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--blue);
  color: var(--mint);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 2.5vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem 0.55rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

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

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

/* ── Card ── */
.card {
  position: relative;
  background: var(--blue);
  color: var(--white);
  border-radius: clamp(20px, 5vw, 36px);
  padding: clamp(1.6rem, 5vw, 3rem) clamp(1.4rem, 5vw, 2.8rem);
  width: min(100%, 600px);
  overflow: hidden;
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both;
  box-shadow:
    0 0 0 3px var(--blue),
    0 6px 0 3px rgba(0,0,0,0.25),
    0 30px 80px rgba(60,0,255,0.25);
}

/* Inner blob decorations */
.card__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.card__blob--1 {
  width: 220px;
  height: 220px;
  background: var(--purple);
  opacity: 0.35;
  top: -60px;
  right: -60px;
  filter: blur(30px);
}

.card__blob--2 {
  width: 180px;
  height: 180px;
  background: var(--cyan);
  opacity: 0.2;
  bottom: -50px;
  left: -40px;
  filter: blur(25px);
}

.card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3.5vw, 1.6rem);
}

/* ── Typography ── */
.headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 10vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}

.headline em {
  font-style: normal;
  color: var(--mint);
}

.body-text {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}

/* ── CTA Button ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.2rem, 3vw, 1.6rem);
  background: var(--mint);
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,0.18), 0 12px 28px rgba(0,255,160,0.22);
}

.cta-button:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 36px rgba(225,225,0,0.28);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(0,0,0,0.18);
}

/* ── Contact links ── */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.contact-item:hover {
  border-color: var(--mint);
  background: rgba(0,255,160,0.1);
  transform: translateY(-2px);
}

.contact-item--wa:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.12);
}

.note {
  font-size: clamp(0.82rem, 2.2vw, 0.9rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ── Floating decorative chips ── */
.chip {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.chip--cyan {
  width: clamp(36px, 5vw, 64px);
  height: clamp(36px, 5vw, 64px);
  background: var(--cyan);
  top: 12%;
  right: 6%;
  animation-delay: 0s;
  opacity: 0.85;
}

.chip--pink {
  width: clamp(28px, 3.5vw, 44px);
  height: clamp(28px, 3.5vw, 44px);
  background: var(--pink);
  bottom: 18%;
  left: 5%;
  animation-delay: -2s;
  opacity: 0.8;
}

.chip--yellow {
  width: clamp(20px, 2.5vw, 32px);
  height: clamp(20px, 2.5vw, 32px);
  background: var(--yellow);
  top: 30%;
  left: 8%;
  animation-delay: -4s;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(8deg); }
  66% { transform: translateY(6px) rotate(-5deg); }
}

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

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

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  .chip--cyan {
    right: 3%;
    top: 8%;
  }
  .chip--pink {
    left: 3%;
    bottom: 12%;
  }
  .chip--yellow {
    left: 4%;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .card {
    border-radius: 24px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.6rem;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
  }

  .chip {
    display: none;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .headline {
    font-size: 2rem;
  }

  .status-badge {
    font-size: 0.65rem;
    padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  }
}